Commit 051061a0 authored by João Cunha's avatar João Cunha

Adds k8s 1.20 to EKS list

It also fixes the Cloud Formation template.
The template versions need to be wrapped around quotes,
since Yaml.safe_load will convert 1.20 to 1.2 otherwise.

Changelog: added
parent c83d6e65
export const DEFAULT_REGION = 'us-east-2'; export const DEFAULT_REGION = 'us-east-2';
export const KUBERNETES_VERSIONS = [ export const KUBERNETES_VERSIONS = [
{ name: '1.15', value: '1.15' },
{ name: '1.16', value: '1.16' }, { name: '1.16', value: '1.16' },
{ name: '1.17', value: '1.17' }, { name: '1.17', value: '1.17' },
{ name: '1.18', value: '1.18' }, { 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: ...@@ -7,13 +7,13 @@ Parameters:
KubernetesVersion: KubernetesVersion:
Description: The Kubernetes version to install Description: The Kubernetes version to install
Type: String Type: String
Default: 1.19 Default: "1.20"
AllowedValues: AllowedValues:
- 1.15 - "1.16"
- 1.16 - "1.17"
- 1.17 - "1.18"
- 1.18 - "1.19"
- 1.19 - "1.20"
KeyName: KeyName:
Description: The EC2 Key Pair to allow SSH access to the node instances 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