Skip to content

Commit e206598

Browse files
jmdealedibble21
authored andcommitted
docs: fix version order and remaining 1.32 bumps (aws#7693)
1 parent 23c7fd0 commit e206598

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

website/content/en/docs/concepts/nodeclasses.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -740,19 +740,19 @@ The following commands can be used to determine the versions availble for an ali
740740
{{< tabpane text=true right=false >}}
741741
{{% tab "AL2023" %}}
742742
```bash
743-
export K8S_VERSION="1.31"
743+
export K8S_VERSION="1.32"
744744
aws ssm get-parameters-by-path --path "/aws/service/eks/optimized-ami/$K8S_VERSION/amazon-linux-2023/" --recursive | jq -cr '.Parameters[].Name' | grep -v "recommended" | awk -F '/' '{print $10}' | sed -r 's/.*(v[[:digit:]]+)$/\1/' | sort | uniq
745745
```
746746
{{% /tab %}}
747747
{{% tab "AL2" %}}
748748
```bash
749-
export K8S_VERSION="1.31"
749+
export K8S_VERSION="1.32"
750750
aws ssm get-parameters-by-path --path "/aws/service/eks/optimized-ami/$K8S_VERSION/amazon-linux-2/" --recursive | jq -cr '.Parameters[].Name' | grep -v "recommended" | awk -F '/' '{print $8}' | sed -r 's/.*(v[[:digit:]]+)$/\1/' | sort | uniq
751751
```
752752
{{% /tab %}}
753753
{{% tab "Bottlerocket" %}}
754754
```bash
755-
export K8S_VERSION="1.31"
755+
export K8S_VERSION="1.32"
756756
aws ssm get-parameters-by-path --path "/aws/service/bottlerocket/aws-k8s-$K8S_VERSION" --recursive | jq -cr '.Parameters[].Name' | grep -v "latest" | awk -F '/' '{print $7}' | sort | uniq
757757
```
758758
{{% /tab %}}

website/content/en/docs/faq.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,10 @@ Yes, see the [KubeletConfiguration Section in the NodePool docs]({{<ref "./conce
199199
The difference between the Core and Full variants is that Core is a minimal OS with less components and no graphic user interface (GUI) or desktop experience.
200200
`Windows2019` and `Windows2022` AMI families use the Windows Server Core option for simplicity, but if required, you can specify a custom AMI to run Windows Server Full.
201201

202-
You can specify the [Amazon EKS optimized AMI](https://docs.aws.amazon.com/eks/latest/userguide/eks-optimized-windows-ami.html) with Windows Server 2022 Full for Kubernetes 1.31 by configuring an `amiSelector` that references the AMI name.
202+
You can specify the [Amazon EKS optimized AMI](https://docs.aws.amazon.com/eks/latest/userguide/eks-optimized-windows-ami.html) with Windows Server 2022 Full for Kubernetes 1.32 by configuring an `amiSelector` that references the AMI name.
203203
```yaml
204204
amiSelectorTerms:
205-
- name: Windows_Server-2022-English-Full-EKS_Optimized-1.31*
205+
- name: Windows_Server-2022-English-Full-EKS_Optimized-1.32*
206206
```
207207
208208
### Can I use Karpenter to scale my workload's pods?

website/content/en/docs/getting-started/getting-started-with-karpenter/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Install these tools before proceeding:
3535

3636
1. [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2-linux.html)
3737
2. `kubectl` - [the Kubernetes CLI](https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/)
38-
3. `eksctl` (>= v0.191.0) - [the CLI for AWS EKS](https://eksctl.io/installation)
38+
3. `eksctl` (>= v0.202.0) - [the CLI for AWS EKS](https://eksctl.io/installation)
3939
4. `helm` - [the package manager for Kubernetes](https://helm.sh/docs/intro/install/)
4040

4141
[Configure the AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-quickstart.html)
@@ -49,7 +49,7 @@ After setting up the tools, set the Karpenter and Kubernetes version:
4949
```bash
5050
export KARPENTER_NAMESPACE="kube-system"
5151
export KARPENTER_VERSION="1.2.1"
52-
export K8S_VERSION="1.31"
52+
export K8S_VERSION="1.32"
5353
```
5454

5555
Then set the following environment variable:

website/content/en/v1.2/concepts/nodeclasses.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -740,19 +740,19 @@ The following commands can be used to determine the versions availble for an ali
740740
{{< tabpane text=true right=false >}}
741741
{{% tab "AL2023" %}}
742742
```bash
743-
export K8S_VERSION="1.31"
743+
export K8S_VERSION="1.32"
744744
aws ssm get-parameters-by-path --path "/aws/service/eks/optimized-ami/$K8S_VERSION/amazon-linux-2023/" --recursive | jq -cr '.Parameters[].Name' | grep -v "recommended" | awk -F '/' '{print $10}' | sed -r 's/.*(v[[:digit:]]+)$/\1/' | sort | uniq
745745
```
746746
{{% /tab %}}
747747
{{% tab "AL2" %}}
748748
```bash
749-
export K8S_VERSION="1.31"
749+
export K8S_VERSION="1.32"
750750
aws ssm get-parameters-by-path --path "/aws/service/eks/optimized-ami/$K8S_VERSION/amazon-linux-2/" --recursive | jq -cr '.Parameters[].Name' | grep -v "recommended" | awk -F '/' '{print $8}' | sed -r 's/.*(v[[:digit:]]+)$/\1/' | sort | uniq
751751
```
752752
{{% /tab %}}
753753
{{% tab "Bottlerocket" %}}
754754
```bash
755-
export K8S_VERSION="1.31"
755+
export K8S_VERSION="1.32"
756756
aws ssm get-parameters-by-path --path "/aws/service/bottlerocket/aws-k8s-$K8S_VERSION" --recursive | jq -cr '.Parameters[].Name' | grep -v "latest" | awk -F '/' '{print $7}' | sort | uniq
757757
```
758758
{{% /tab %}}

website/content/en/v1.2/faq.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,10 @@ Yes, see the [KubeletConfiguration Section in the NodePool docs]({{<ref "./conce
199199
The difference between the Core and Full variants is that Core is a minimal OS with less components and no graphic user interface (GUI) or desktop experience.
200200
`Windows2019` and `Windows2022` AMI families use the Windows Server Core option for simplicity, but if required, you can specify a custom AMI to run Windows Server Full.
201201

202-
You can specify the [Amazon EKS optimized AMI](https://docs.aws.amazon.com/eks/latest/userguide/eks-optimized-windows-ami.html) with Windows Server 2022 Full for Kubernetes 1.31 by configuring an `amiSelector` that references the AMI name.
202+
You can specify the [Amazon EKS optimized AMI](https://docs.aws.amazon.com/eks/latest/userguide/eks-optimized-windows-ami.html) with Windows Server 2022 Full for Kubernetes 1.32 by configuring an `amiSelector` that references the AMI name.
203203
```yaml
204204
amiSelectorTerms:
205-
- name: Windows_Server-2022-English-Full-EKS_Optimized-1.31*
205+
- name: Windows_Server-2022-English-Full-EKS_Optimized-1.32*
206206
```
207207
208208
### Can I use Karpenter to scale my workload's pods?

website/content/en/v1.2/getting-started/getting-started-with-karpenter/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Install these tools before proceeding:
3535

3636
1. [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2-linux.html)
3737
2. `kubectl` - [the Kubernetes CLI](https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/)
38-
3. `eksctl` (>= v0.191.0) - [the CLI for AWS EKS](https://eksctl.io/installation)
38+
3. `eksctl` (>= v0.202.0) - [the CLI for AWS EKS](https://eksctl.io/installation)
3939
4. `helm` - [the package manager for Kubernetes](https://helm.sh/docs/intro/install/)
4040

4141
[Configure the AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-quickstart.html)
@@ -49,7 +49,7 @@ After setting up the tools, set the Karpenter and Kubernetes version:
4949
```bash
5050
export KARPENTER_NAMESPACE="kube-system"
5151
export KARPENTER_VERSION="1.2.1"
52-
export K8S_VERSION="1.31"
52+
export K8S_VERSION="1.32"
5353
```
5454

5555
Then set the following environment variable:

website/hugo.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ params:
7777
icon: fab fa-slack
7878
desc: "Chat with us on Slack in the #aws-provider channel"
7979
latest_release_version: "1.2.1"
80-
latest_k8s_version: "1.31"
80+
latest_k8s_version: "1.32"
8181
versions:
82-
- v0.32
83-
- v1.0
84-
- v1.1
8582
- v1.2
83+
- v1.1
84+
- v1.0
85+
- v0.32
8686
- preview
8787
menu:
8888
main:

0 commit comments

Comments
 (0)