Skip to content

Commit 99e72c3

Browse files
authored
*: release v1.5.1 (#169)
Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
1 parent 39df533 commit 99e72c3

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG/CHANGELOG-1.5.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<hr>
44

55

6-
## [v1.5.1](https://github.com/aws/aws-k8s-tester/releases/tag/v1.5.1) (2020-09)
6+
## [v1.5.1](https://github.com/aws/aws-k8s-tester/releases/tag/v1.5.1) (2020-09-10)
77

88
See [code changes](https://github.com/aws/aws-k8s-tester/compare/v1.5.0...v1.5.1).
99

@@ -15,6 +15,10 @@ See [code changes](https://github.com/aws/aws-k8s-tester/compare/v1.5.0...v1.5.1
1515

1616
- Upgrade [`github.com/aws/aws-sdk-go`](https://github.com/aws/aws-sdk-go/releases) from [`v1.34.20`](https://github.com/aws/aws-sdk-go/releases/tag/v1.34.20) to [`v1.34.20`](https://github.com/aws/aws-sdk-go/releases/tag/v1.34.20).
1717

18+
### Go
19+
20+
- Compile with [*Go 1.15.2*](https://golang.org/doc/devel/release.html#go1.15).
21+
1822

1923

2024
<hr>

eks/eks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ func New(cfg *eksconfig.Config) (ts *Tester, err error) {
214214
vo, err = exec.New().CommandContext(ctx, cfg.AWSCLIPath, "--version").CombinedOutput()
215215
cancel()
216216
if err != nil {
217-
return nil, fmt.Errorf("'aws --version' failed (output %q, error %v)", string(vo), err)
217+
return nil, fmt.Errorf("'aws --version' failed (output %q, error %v); required for 'aws eks update-kubeconfig'", string(vo), err)
218218
}
219219
lg.Info(
220220
"aws version",

eksconfig/add-on-cluster-loader-local.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ func getDefaultAddOnClusterLoaderLocal() *AddOnClusterLoaderLocal {
125125
Enable: false,
126126

127127
ClusterLoaderPath: "/tmp/clusterloader2",
128-
ClusterLoaderDownloadURL: "https://github.com/aws/aws-k8s-tester/releases/download/v1.5.0/clusterloader2-linux-amd64",
128+
ClusterLoaderDownloadURL: "https://github.com/aws/aws-k8s-tester/releases/download/v1.5.1/clusterloader2-linux-amd64",
129129

130130
Runs: 2,
131131
Timeout: 30 * time.Minute,

eksconfig/add-on-cluster-loader-remote.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func getDefaultAddOnClusterLoaderRemote() *AddOnClusterLoaderRemote {
134134
Enable: false,
135135

136136
ClusterLoaderPath: "/tmp/clusterloader2",
137-
ClusterLoaderDownloadURL: "https://github.com/aws/aws-k8s-tester/releases/download/v1.5.0/clusterloader2-linux-amd64",
137+
ClusterLoaderDownloadURL: "https://github.com/aws/aws-k8s-tester/releases/download/v1.5.1/clusterloader2-linux-amd64",
138138

139139
Runs: 2,
140140
Timeout: 30 * time.Minute,

eksconfig/config.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ type Config struct {
7777
LogOutputs []string `json:"log-outputs,omitempty"`
7878

7979
// AWSCLIPath is the path for AWS CLI path.
80+
// Required for 'aws eks update-kubeconfig'.
8081
AWSCLIPath string `json:"aws-cli-path,omitempty"`
8182

8283
// KubectlPath is the path to download the "kubectl".
@@ -861,7 +862,7 @@ func NewDefault() *Config {
861862
var err error
862863
cfg.AWSCLIPath, err = exec.LookPath("aws")
863864
if err != nil {
864-
panic(fmt.Errorf("aws CLI is not installed (%v)", err))
865+
panic(fmt.Errorf("aws CLI is not installed (%v); required for 'aws eks update-kubeconfig'", err))
865866
}
866867

867868
if runtime.GOOS == "darwin" {

0 commit comments

Comments
 (0)