Skip to content

Commit 74975b5

Browse files
authored
docs(eks): refer to the latest version of supported kubernetes (#23178)
closes #23072 -implemented change proposed in the issue ---- ### All Submissions: * [ ] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Construct Runtime Dependencies: * [ ] This PR adds new construct runtime dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-construct-runtime-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent f2855dc commit 74975b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/@aws-cdk/aws-eks/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ This example defines an Amazon EKS cluster with the following configuration:
5050
```ts
5151
// provisiong a cluster
5252
const cluster = new eks.Cluster(this, 'hello-eks', {
53-
version: eks.KubernetesVersion.V1_21,
53+
version: eks.KubernetesVersion.V1_24,
54+
kubectlLayer: new KubectlV24Layer(this, 'kubectl'),
5455
});
5556

5657
// apply a kubernetes manifest to the cluster

0 commit comments

Comments
 (0)