Skip to content

Commit

Permalink
chore(eks): deprecate older versions of EKS
Browse files Browse the repository at this point in the history
  • Loading branch information
robertd committed Feb 6, 2022
1 parent 28647f7 commit 76eadca
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
*/
public static readonly V1_14 = KubernetesVersion.of('1.14');

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

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

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

Expand Down

0 comments on commit 76eadca

Please sign in to comment.