File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed
Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 11
22
3+ <hr >
4+
5+
6+ ## [ v1.5.7] ( https://github.com/aws/aws-k8s-tester/releases/tag/v1.5.7 ) (2021-01-25)
7+
8+ See [ code changes] ( https://github.com/aws/aws-k8s-tester/compare/v1.5.6...v1.5.7 ) .
9+ ### ` eksconfig `
10+
11+ - Fix [ "AddOnAmiSoftLockupIssue454" parsing] ( https://github.com/aws/aws-k8s-tester/pull/199 ) .
12+ ### Go
13+
14+ - Compile with [ * Go 1.16beta1* ] ( https://golang.org/doc/devel/release.html#go1.16 ) .
15+
316
417<hr >
518
19+
620## [ v1.5.6] ( https://github.com/aws/aws-k8s-tester/releases/tag/v1.5.6 ) (2021-01-25)
721
822See [ code changes] ( https://github.com/aws/aws-k8s-tester/compare/v1.5.5...v1.5.6 ) .
Original file line number Diff line number Diff line change @@ -266,6 +266,9 @@ AWS_K8S_TESTER_EKS_ADD_ON_CLUSTER_VERSION_UPGRADE_ENABLE=true \
266266| AWS_K8S_TESTER_EKS_ADD_ON_CONFORMANCE_NAMESPACE | read-only "false" | *eksconfig.AddOnConformance.Namespace | string |
267267| AWS_K8S_TESTER_EKS_ADD_ON_CONFORMANCE_SONOBUOY_PATH | read-only "false" | *eksconfig.AddOnConformance.SonobuoyPath | string |
268268| AWS_K8S_TESTER_EKS_ADD_ON_CONFORMANCE_SONOBUOY_DOWNLOAD_URL | read-only "false" | *eksconfig.AddOnConformance.SonobuoyDownloadURL | string |
269+ | AWS_K8S_TESTER_EKS_ADD_ON_CONFORMANCE_SONOBUOY_E2E_REPO_CONFIG | read-only "false" | *eksconfig.AddOnConformance.SonobuoyE2eRepoConfig | string |
270+ | AWS_K8S_TESTER_EKS_ADD_ON_CONFORMANCE_SONOBUOY_IMAGE | read-only "false" | *eksconfig.AddOnConformance.SonobuoyImage | string |
271+ | AWS_K8S_TESTER_EKS_ADD_ON_CONFORMANCE_SYSTEMD_LOGS_IMAGE | read-only "false" | *eksconfig.AddOnConformance.SystemdLogsImage | string |
269272| AWS_K8S_TESTER_EKS_ADD_ON_CONFORMANCE_SONOBUOY_DELETE_TIMEOUT | read-only "false" | *eksconfig.AddOnConformance.SonobuoyDeleteTimeout | time.Duration |
270273| AWS_K8S_TESTER_EKS_ADD_ON_CONFORMANCE_SONOBUOY_DELETE_TIMEOUT_STRING | read-only "true" | *eksconfig.AddOnConformance.SonobuoyDeleteTimeoutString | string |
271274| AWS_K8S_TESTER_EKS_ADD_ON_CONFORMANCE_SONOBUOY_RUN_TIMEOUT | read-only "false" | *eksconfig.AddOnConformance.SonobuoyRunTimeout | time.Duration |
Original file line number Diff line number Diff line change @@ -563,9 +563,6 @@ func (cfg *Config) UpdateFromEnvs() (err error) {
563563 }
564564 if av , ok := vv .(* AddOnAmiSoftLockupIssue454 ); ok {
565565 cfg .AddOnAmiSoftLockupIssue454 = av
566- if ! cfg .AddOnAmiSoftLockupIssue454 .Enable {
567- return fmt .Errorf ("WTF %T" , cfg )
568- }
569566 } else {
570567 return fmt .Errorf ("expected *AddOnAmiSoftLockupIssue454, got %T" , vv )
571568 }
You can’t perform that action at this time.
0 commit comments