Skip to content

Commit

Permalink
add deprecation text
Browse files Browse the repository at this point in the history
  • Loading branch information
robertd committed Feb 6, 2022
1 parent 76eadca commit 72b5f64
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/@aws-cdk/aws-eks/lib/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -772,25 +772,25 @@ export interface ClusterProps extends ClusterOptions {
export class KubernetesVersion {
/**
* Kubernetes version 1.14
* @deprecated
* @deprecated Use newer version of EKS
*/
public static readonly V1_14 = KubernetesVersion.of('1.14');

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

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

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

Expand Down

0 comments on commit 72b5f64

Please sign in to comment.