Skip to content

Commit

Permalink
chore(eks): deprecate older versions of EKS (aws#18842)
Browse files Browse the repository at this point in the history
EKS version support: https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html

Kubernetes versions: https://endoflife.date/kubernetes


----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
robertd authored and TikiTDO committed Feb 21, 2022
1 parent 2b0d0b7 commit 9332fc6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/@aws-cdk/aws-eks/lib/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -772,21 +772,25 @@ export interface ClusterProps extends ClusterOptions {
export class KubernetesVersion {
/**
* Kubernetes version 1.14
* @deprecated Use newer version of EKS
*/
public static readonly V1_14 = KubernetesVersion.of('1.14');

/**
* Kubernetes version 1.15
* @deprecated Use newer version of EKS
*/
public static readonly V1_15 = KubernetesVersion.of('1.15');

/**
* Kubernetes version 1.16
* @deprecated Use newer version of EKS
*/
public static readonly V1_16 = KubernetesVersion.of('1.16');

/**
* Kubernetes version 1.17
* @deprecated Use newer version of EKS
*/
public static readonly V1_17 = KubernetesVersion.of('1.17');

Expand Down

0 comments on commit 9332fc6

Please sign in to comment.