Skip to content

Commit

Permalink
Bump eks version list and add v1.31
Browse files Browse the repository at this point in the history
According to EKS available version list,
we have to add v1.31 and remove v1.27
https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html
  • Loading branch information
mjura committed Oct 17, 2024
1 parent a583252 commit 2e7ac95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/shared/addon/utils/amazon.js
Original file line number Diff line number Diff line change
Expand Up @@ -1443,7 +1443,7 @@ export const EKS_REGIONS = [
];

// from https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html
export const EKS_VERSIONS = ['1.30', '1.29', '1.28', '1.27']; // sort newest->oldest so we dont have to run any logic to sort like other provider versions
export const EKS_VERSIONS = ['1.31', '1.30', '1.29', '1.28']; // sort newest->oldest so we dont have to run any logic to sort like other provider versions

export const nameFromResource = function(r, idField) {
let id = r[idField];
Expand Down

0 comments on commit 2e7ac95

Please sign in to comment.