Skip to content

Commit

Permalink
eks: fix list clusters, update CHANGELOG (#202)
Browse files Browse the repository at this point in the history
* eks: fix signing region for EKS API

Signed-off-by: Gyuho Lee <[email protected]>

* CHANGELOG: update

Signed-off-by: Gyuho Lee <[email protected]>
  • Loading branch information
gyuho authored Feb 3, 2021
1 parent 6b84b2f commit 6b98f16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
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

0 comments on commit 6b98f16

Please sign in to comment.