Skip to content

Commit

Permalink
docs: fix version order and remaining 1.32 bumps (#7693)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdeal authored Feb 4, 2025
1 parent c5fada2 commit 1b2fb34
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions website/content/en/docs/concepts/nodeclasses.md
Original file line number Diff line number Diff line change
Expand Up @@ -740,19 +740,19 @@ The following commands can be used to determine the versions availble for an ali
{{< tabpane text=true right=false >}}
{{% tab "AL2023" %}}
```bash
export K8S_VERSION="1.31"
export K8S_VERSION="1.32"
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
```
{{% /tab %}}
{{% tab "AL2" %}}
```bash
export K8S_VERSION="1.31"
export K8S_VERSION="1.32"
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
```
{{% /tab %}}
{{% tab "Bottlerocket" %}}
```bash
export K8S_VERSION="1.31"
export K8S_VERSION="1.32"
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
```
{{% /tab %}}
Expand Down
4 changes: 2 additions & 2 deletions website/content/en/docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,10 @@ Yes, see the [KubeletConfiguration Section in the NodePool docs]({{<ref "./conce
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.
`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.

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.
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.
```yaml
amiSelectorTerms:
- name: Windows_Server-2022-English-Full-EKS_Optimized-1.31*
- name: Windows_Server-2022-English-Full-EKS_Optimized-1.32*
```
### Can I use Karpenter to scale my workload's pods?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Install these tools before proceeding:

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

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

Then set the following environment variable:
Expand Down
6 changes: 3 additions & 3 deletions website/content/en/v1.2/concepts/nodeclasses.md
Original file line number Diff line number Diff line change
Expand Up @@ -740,19 +740,19 @@ The following commands can be used to determine the versions availble for an ali
{{< tabpane text=true right=false >}}
{{% tab "AL2023" %}}
```bash
export K8S_VERSION="1.31"
export K8S_VERSION="1.32"
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
```
{{% /tab %}}
{{% tab "AL2" %}}
```bash
export K8S_VERSION="1.31"
export K8S_VERSION="1.32"
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
```
{{% /tab %}}
{{% tab "Bottlerocket" %}}
```bash
export K8S_VERSION="1.31"
export K8S_VERSION="1.32"
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
```
{{% /tab %}}
Expand Down
4 changes: 2 additions & 2 deletions website/content/en/v1.2/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,10 @@ Yes, see the [KubeletConfiguration Section in the NodePool docs]({{<ref "./conce
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.
`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.

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.
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.
```yaml
amiSelectorTerms:
- name: Windows_Server-2022-English-Full-EKS_Optimized-1.31*
- name: Windows_Server-2022-English-Full-EKS_Optimized-1.32*
```
### Can I use Karpenter to scale my workload's pods?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Install these tools before proceeding:

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

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

Then set the following environment variable:
Expand Down
8 changes: 4 additions & 4 deletions website/hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ params:
icon: fab fa-slack
desc: "Chat with us on Slack in the #aws-provider channel"
latest_release_version: "1.2.1"
latest_k8s_version: "1.31"
latest_k8s_version: "1.32"
versions:
- v0.32
- v1.0
- v1.1
- v1.2
- v1.1
- v1.0
- v0.32
- preview
menu:
main:
Expand Down

0 comments on commit 1b2fb34

Please sign in to comment.