Merge pull request #1210 from hhoover/pr/hhoover/eks-versions

coreos-overlay: Add support for new EKS versions
This commit is contained in:
Jeremi Piotrowski 2023-10-05 16:07:30 +02:00 committed by GitHub
commit 6b18048005
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1 @@
- Added AWS EKS support for versions 1.24-1.28. Fixed `/usr/share/amazon/eks/download-kubelet.sh` to include download paths for these versions. ([scripts#1210](https://github.com/flatcar/scripts/pull/1210))

View File

@ -22,6 +22,21 @@ fi
# Select the right path depending on the Kubernetes version.
# https://github.com/awslabs/amazon-eks-ami/blob/master/Makefile
case $CLUSTER_VERSION in
1.28)
S3_PATH="1.28.1/2023-09-14"
;;
1.27)
S3_PATH="1.27.5/2023-09-14"
;;
1.26)
S3_PATH="1.26.8/2023-09-14"
;;
1.25)
S3_PATH="1.25.13/2023-09-14"
;;
1.24)
S3_PATH="1.24.17/2023-09-14"
;;
1.23)
S3_PATH="1.23.9/2022-07-27"
;;