diff --git a/cmd/main.go b/cmd/main.go index 95723e4ad..44e765deb 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -275,7 +275,7 @@ func setupControllers(mgr manager.Manager, flags flagVars, linodeClientConfig, d useGzip, err := strconv.ParseBool(os.Getenv("GZIP_COMPRESSION_ENABLED")) if err != nil { - setupLog.Error(err, "proceeding without gzip compression for cloud-init data") + setupLog.Error(err, "proceeding without gzip compression for user-data") } // LinodeMachine Controller diff --git a/e2e/capl-cluster-flavors/kubeadm-flatcar-vpcless-capl-cluster/chainsaw-test.yaml b/e2e/capl-cluster-flavors/kubeadm-flatcar-vpcless-capl-cluster/chainsaw-test.yaml index 8bffd5a72..cc0c57b48 100755 --- a/e2e/capl-cluster-flavors/kubeadm-flatcar-vpcless-capl-cluster/chainsaw-test.yaml +++ b/e2e/capl-cluster-flavors/kubeadm-flatcar-vpcless-capl-cluster/chainsaw-test.yaml @@ -37,14 +37,13 @@ spec: value: (env('LINODE_REGION')) content: | set -e - # Get the latest version on Beta channel. - # NOTE: This can be changed to Stable when Akamai support will come on these channels. + # Get the latest version on Stable channel. curl -fsSL --remote-name \ - https://beta.release.flatcar-linux.net/amd64-usr/current/flatcar_production_akamai_image.bin.gz + https://stable.release.flatcar-linux.net/amd64-usr/current/flatcar_production_akamai_image.bin.gz res=$(curl -s --request POST \ --url "https://${TARGET_API}/${TARGET_API_VERSION}/${URI}" \ - --data '{"region":"'${LINODE_REGION}'","cloud_init":true,"label":"flatcar-beta"}' \ + --data '{"region":"'${LINODE_REGION}'","cloud_init":true,"label":"flatcar-stable"}' \ --header "Authorization: Bearer ${LINODE_TOKEN}" \ --header "accept: application/json" \ --header "content-type: application/json")