Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eks: fix list clusters, update CHANGELOG #202

Merged
merged 2 commits into from
Feb 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG/CHANGELOG-1.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<hr>


## [v1.5.8](https://github.com/aws/aws-k8s-tester/releases/tag/v1.5.8) (2021-01)
## [v1.5.8](https://github.com/aws/aws-k8s-tester/releases/tag/v1.5.8) (2021-02-02)

See [code changes](https://github.com/aws/aws-k8s-tester/compare/v1.5.7...v1.5.8).
### `eks`
Expand Down
5 changes: 3 additions & 2 deletions eks/eks.go
Original file line number Diff line number Diff line change
Expand Up @@ -456,8 +456,9 @@ func New(cfg *eksconfig.Config) (ts *Tester, err error) {
)
rsFn := aws_eks_v2.EndpointResolverFunc(func(region string, option aws_eks_v2.EndpointResolverOptions) (aws_v2.Endpoint, error) {
return aws_v2.Endpoint{
URL: ts.cfg.Parameters.ResolverURL,
SigningName: ts.cfg.Parameters.SigningName,
URL: ts.cfg.Parameters.ResolverURL,
SigningName: ts.cfg.Parameters.SigningName,
SigningRegion: ts.cfg.Region,
}, nil
})
optFns = append(optFns, func(o *aws_eks_v2.Options) {
Expand Down