-
Notifications
You must be signed in to change notification settings - Fork 484
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add 1.24 to hardcoded EKS versions #4908
add 1.24 to hardcoded EKS versions #4908
Conversation
LGTM, but I think it should not be merged to master because it's in the 2.7.1 milestone. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR needs to wait
@@ -683,7 +683,7 @@ export const EKS_REGIONS = [ | |||
]; | |||
|
|||
// from https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html | |||
export const EKS_VERSIONS = ['1.23']; // sort newest->oldest so we dont have to run any logic to sort like other provider versions | |||
export const EKS_VERSIONS = ['1.24', '1.23']; // sort newest->oldest so we dont have to run any logic to sort like other provider versions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Until they, Amazon didn't released EKS in version 1.24
, probably this change needs to wait. Please check https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It can be merged now, EKS v1.24 was released https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Fixes #7219
edit: because we keep having to do this, tech debt issue to look for a better way is here: rancher/dashboard#7295