Skip to content

Commit

Permalink
Drop support for Kubernetes v1.25 and v1.26 (#5148)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjura authored Jun 26, 2024
1 parent 236316c commit 691aca3
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 @@ -702,7 +702,7 @@ export const EKS_REGIONS = [
];

// from https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html
export const EKS_VERSIONS = ['1.29', '1.28', '1.27', '1.26', '1.25']; // sort newest->oldest so we dont have to run any logic to sort like other provider versions
export const EKS_VERSIONS = ['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 nameFromResource = function(r, idField) {
let id = r[idField];
Expand Down

0 comments on commit 691aca3

Please sign in to comment.