Commit 15d04b3f authored by Stan Hu's avatar Stan Hu

Merge branch '337654-update-available-k8s-version-on-eks-creation-with-1-20' into 'master'

Resolve "Update available K8s version on EKS creation with 1.20"

See merge request gitlab-org/gitlab!69094
parents 7dc2df6d 051061a0
export const DEFAULT_REGION = 'us-east-2';
export const KUBERNETES_VERSIONS = [
{ name: '1.15', value: '1.15' },
{ name: '1.16', value: '1.16' },
{ name: '1.17', value: '1.17' },
{ name: '1.18', value: '1.18' },
{ name: '1.19', value: '1.19', default: true },
{ name: '1.19', value: '1.19' },
{ name: '1.20', value: '1.20', default: true },
];
......@@ -7,13 +7,13 @@ Parameters:
KubernetesVersion:
Description: The Kubernetes version to install
Type: String
Default: 1.19
Default: "1.20"
AllowedValues:
- 1.15
- 1.16
- 1.17
- 1.18
- 1.19
- "1.16"
- "1.17"
- "1.18"
- "1.19"
- "1.20"
KeyName:
Description: The EC2 Key Pair to allow SSH access to the node instances
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment