From 2e7ac95c3ac455018e48e9c41b260d302372b062 Mon Sep 17 00:00:00 2001 From: Michal Jura Date: Thu, 17 Oct 2024 09:50:36 +0200 Subject: [PATCH] Bump eks version list and add v1.31 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 --- lib/shared/addon/utils/amazon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/shared/addon/utils/amazon.js b/lib/shared/addon/utils/amazon.js index f40788c5e5..0c3d2ff0c5 100644 --- a/lib/shared/addon/utils/amazon.js +++ b/lib/shared/addon/utils/amazon.js @@ -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];