AWS eks documentation change
Summary
Updated Kubernetes version references from 1.35 to 1.36 in add-on creation commands and examples
Security assessment
Routine version update without security context. No evidence of security fixes or vulnerabilities addressed.
Diff
diff --git a/eks/latest/userguide/creating-an-add-on.md b/eks/latest/userguide/creating-an-add-on.md index 5522435e7..c1acac160 100644 --- a//eks/latest/userguide/creating-an-add-on.md +++ b//eks/latest/userguide/creating-an-add-on.md @@ -49 +49 @@ You can create an Amazon EKS add-on using `eksctl`, the AWS Management Console, - 1. View the names of add-ons available for a cluster version. Replace `1.35` with the version of your cluster. + 1. View the names of add-ons available for a cluster version. Replace `1.36` with the version of your cluster. @@ -51 +51 @@ You can create an Amazon EKS add-on using `eksctl`, the AWS Management Console, - eksctl utils describe-addon-versions --kubernetes-version 1.35 | grep AddonName + eksctl utils describe-addon-versions --kubernetes-version 1.36 | grep AddonName @@ -66 +66 @@ An example output is as follows. - 2. View the versions available for the add-on that you would like to create. Replace `1.35` with the version of your cluster. Replace `name-of-addon` with the name of the add-on you want to view the versions for. The name must be one of the names returned in the previous step. + 2. View the versions available for the add-on that you would like to create. Replace `1.36` with the version of your cluster. Replace `name-of-addon` with the name of the add-on you want to view the versions for. The name must be one of the names returned in the previous step. @@ -68 +68 @@ An example output is as follows. - eksctl utils describe-addon-versions --kubernetes-version 1.35 --name name-of-addon | grep AddonVersion + eksctl utils describe-addon-versions --kubernetes-version 1.36 --name name-of-addon | grep AddonVersion @@ -80 +80 @@ The following output is an example of what is returned for the add-on named `vpc - eksctl utils describe-addon-versions --kubernetes-version 1.35 --name name-of-addon | grep ProductUrl + eksctl utils describe-addon-versions --kubernetes-version 1.36 --name name-of-addon | grep ProductUrl @@ -183 +183 @@ NOTE: Retaining the default role name enables EKS to pre-select the role for add - 2. Determine which add-ons are available. You can see all available add-ons, their type, and their publisher. You can also see the URL for add-ons that are available through the AWS Marketplace. Replace `1.35` with the version of your cluster. + 2. Determine which add-ons are available. You can see all available add-ons, their type, and their publisher. You can also see the URL for add-ons that are available through the AWS Marketplace. Replace `1.36` with the version of your cluster. @@ -185 +185 @@ NOTE: Retaining the default role name enables EKS to pre-select the role for add - aws eks describe-addon-versions --kubernetes-version 1.35 \ + aws eks describe-addon-versions --kubernetes-version 1.36 \ @@ -209 +209 @@ Your output might be different. In this example output, there are three differen - 3. You can see which versions are available for each add-on. Replace `1.35` with the version of your cluster and replace `vpc-cni` with the name of an add-on returned in the previous step. + 3. You can see which versions are available for each add-on. Replace `1.36` with the version of your cluster and replace `vpc-cni` with the name of an add-on returned in the previous step. @@ -211 +211 @@ Your output might be different. In this example output, there are three differen - aws eks describe-addon-versions --kubernetes-version 1.35 --addon-name vpc-cni \ + aws eks describe-addon-versions --kubernetes-version 1.36 --addon-name vpc-cni \