Skip to content

Commit

Permalink
chore(eks): add KubernetesVersion 1.17 support (aws#9048)
Browse files Browse the repository at this point in the history
chore(eks): KubernetesVersion 1.17 support

- Add a new KubernetesVersion enum option for `1.17`
See https://aws.amazon.com/tw/about-aws/whats-new/2020/07/amazon-eks-supports-kubernetes-version-1-17/

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
pahud authored Jul 14, 2020
1 parent 4470e89 commit fe6a746
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/@aws-cdk/aws-eks/lib/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,11 @@ export class KubernetesVersion {
*/
public static readonly V1_16 = KubernetesVersion.of('1.16');

/**
* Kubernetes version 1.17
*/
public static readonly V1_17 = KubernetesVersion.of('1.17');

/**
* Custom cluster version
* @param version custom version number
Expand Down

0 comments on commit fe6a746

Please sign in to comment.