We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2855dc commit 74975b5Copy full SHA for 74975b5
packages/@aws-cdk/aws-eks/README.md
@@ -50,7 +50,8 @@ This example defines an Amazon EKS cluster with the following configuration:
50
```ts
51
// provisiong a cluster
52
const cluster = new eks.Cluster(this, 'hello-eks', {
53
- version: eks.KubernetesVersion.V1_21,
+ version: eks.KubernetesVersion.V1_24,
54
+ kubectlLayer: new KubectlV24Layer(this, 'kubectl'),
55
});
56
57
// apply a kubernetes manifest to the cluster
0 commit comments