Skip to content

Commit

Permalink
Merge pull request #1210 from hhoover/pr/hhoover/eks-versions
Browse files Browse the repository at this point in the history
coreos-overlay: Add support for new EKS versions
  • Loading branch information
jepio authored Oct 5, 2023
2 parents f685e29 + 1117a1d commit 6b18048
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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))
Original file line number Diff line number Diff line change
Expand Up @@ -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"
;;
Expand Down

0 comments on commit 6b18048

Please sign in to comment.