Skip to content

Commit 80ef69f

Browse files
authored
chore(eks): deprecate older versions of EKS (#18842)
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*
1 parent 28647f7 commit 80ef69f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/@aws-cdk/aws-eks/lib/cluster.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -772,21 +772,25 @@ export interface ClusterProps extends ClusterOptions {
772772
export class KubernetesVersion {
773773
/**
774774
* Kubernetes version 1.14
775+
* @deprecated Use newer version of EKS
775776
*/
776777
public static readonly V1_14 = KubernetesVersion.of('1.14');
777778

778779
/**
779780
* Kubernetes version 1.15
781+
* @deprecated Use newer version of EKS
780782
*/
781783
public static readonly V1_15 = KubernetesVersion.of('1.15');
782784

783785
/**
784786
* Kubernetes version 1.16
787+
* @deprecated Use newer version of EKS
785788
*/
786789
public static readonly V1_16 = KubernetesVersion.of('1.16');
787790

788791
/**
789792
* Kubernetes version 1.17
793+
* @deprecated Use newer version of EKS
790794
*/
791795
public static readonly V1_17 = KubernetesVersion.of('1.17');
792796

0 commit comments

Comments
 (0)