Merge pull request #4216 from paynejacob/update-eks-versions

added 1.18 and 1.14 eks versions
This commit is contained in:
Westly Wright 2020-10-14 14:05:06 -07:00 committed by GitHub
commit 205fa75fe6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -617,7 +617,7 @@ export const EKS_REGIONS = [
];
// from https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html
export const EKS_VERSIONS = ['1.17', '1.16', '1.15']; // sort newest->oldest so we dont have to run any logic to sort like other provider versions
export const EKS_VERSIONS = ['1.18', '1.17', '1.16', '1.15', '1.14']; // 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];