Skip to content

Commit ed7846a

Browse files
docs: update to latest patch releases (#8429)
1 parent 9cf7e6c commit ed7846a

File tree

17 files changed

+29
-29
lines changed

17 files changed

+29
-29
lines changed

charts/karpenter-crd/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: karpenter-crd
33
description: A Helm chart for Karpenter Custom Resource Definitions (CRDs).
44
type: application
5-
version: 1.6.2
6-
appVersion: 1.6.2
5+
version: 1.6.3
6+
appVersion: 1.6.3
77
keywords:
88
- cluster
99
- node

charts/karpenter/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: karpenter
33
description: A Helm chart for Karpenter, an open-source node provisioning project built for Kubernetes.
44
type: application
5-
version: 1.6.2
6-
appVersion: 1.6.2
5+
version: 1.6.3
6+
appVersion: 1.6.3
77
keywords:
88
- cluster
99
- node

charts/karpenter/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A Helm chart for Karpenter, an open-source node provisioning project built for Kubernetes.
44

5-
![Version: 1.6.2](https://img.shields.io/badge/Version-1.6.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.6.2](https://img.shields.io/badge/AppVersion-1.6.2-informational?style=flat-square)
5+
![Version: 1.6.3](https://img.shields.io/badge/Version-1.6.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.6.3](https://img.shields.io/badge/AppVersion-1.6.3-informational?style=flat-square)
66

77
## Documentation
88

@@ -15,7 +15,7 @@ You can follow the detailed installation instruction in the [documentation](http
1515
```bash
1616
helm upgrade --install --namespace karpenter --create-namespace \
1717
karpenter oci://public.ecr.aws/karpenter/karpenter \
18-
--version 1.6.2 \
18+
--version 1.6.3 \
1919
--set "serviceAccount.annotations.eks\.amazonaws\.com/role-arn=${KARPENTER_IAM_ROLE_ARN}" \
2020
--set settings.clusterName=${CLUSTER_NAME} \
2121
--set settings.interruptionQueue=${CLUSTER_NAME} \
@@ -27,13 +27,13 @@ helm upgrade --install --namespace karpenter --create-namespace \
2727
As the OCI Helm chart is signed by [Cosign](https://github.com/sigstore/cosign) as part of the release process you can verify the chart before installing it by running the following command.
2828

2929
```shell
30-
cosign verify public.ecr.aws/karpenter/karpenter:1.6.2 \
30+
cosign verify public.ecr.aws/karpenter/karpenter:1.6.3 \
3131
--certificate-oidc-issuer=https://token.actions.githubusercontent.com \
3232
--certificate-identity-regexp='https://github\.com/aws/karpenter-provider-aws/\.github/workflows/release\.yaml@.+' \
3333
--certificate-github-workflow-repository=aws/karpenter-provider-aws \
3434
--certificate-github-workflow-name=Release \
3535
--certificate-github-workflow-ref=refs/tags/v1.6.2 \
36-
--annotations version=1.6.2
36+
--annotations version=1.6.3
3737
```
3838

3939
## Values
@@ -51,7 +51,7 @@ cosign verify public.ecr.aws/karpenter/karpenter:1.6.2 \
5151
| controller.healthProbe.port | int | `8081` | The container port to use for http health probe. |
5252
| controller.image.digest | string | `"sha256:37c761a3a0b485fd34db1390317ef6149141f532c5a699c528b98fb8f9cc722a"` | SHA256 digest of the controller image. |
5353
| controller.image.repository | string | `"public.ecr.aws/karpenter/controller"` | Repository path to the controller image. |
54-
| controller.image.tag | string | `"1.6.2"` | Tag of the controller image. |
54+
| controller.image.tag | string | `"1.6.3"` | Tag of the controller image. |
5555
| controller.metrics.port | int | `8080` | The container port to use for metrics. |
5656
| controller.resources | object | `{}` | Resources for the controller container. |
5757
| controller.securityContext.appArmorProfile | object | `{}` | AppArmor profile for the controller container. |

charts/karpenter/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ controller:
121121
# -- Repository path to the controller image.
122122
repository: public.ecr.aws/karpenter/controller
123123
# -- Tag of the controller image.
124-
tag: 1.6.2
124+
tag: 1.6.3
125125
# -- SHA256 digest of the controller image.
126126
digest: sha256:80248a5b6141d31d4a2a435df598120a9f274536807d49aea122f5fc3e164b53
127127
# -- Additional environment variables for the controller pod.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ After setting up the tools, set the Karpenter and Kubernetes version:
4848

4949
```bash
5050
export KARPENTER_NAMESPACE="kube-system"
51-
export KARPENTER_VERSION="1.6.2"
51+
export KARPENTER_VERSION="1.6.3"
5252
export K8S_VERSION="1.32"
5353
```
5454

@@ -115,13 +115,13 @@ See [Enabling Windows support](https://docs.aws.amazon.com/eks/latest/userguide/
115115
As the OCI Helm chart is signed by [Cosign](https://github.com/sigstore/cosign) as part of the release process you can verify the chart before installing it by running the following command.
116116

117117
```bash
118-
cosign verify public.ecr.aws/karpenter/karpenter:1.6.2 \
118+
cosign verify public.ecr.aws/karpenter/karpenter:1.6.3 \
119119
--certificate-oidc-issuer=https://token.actions.githubusercontent.com \
120120
--certificate-identity-regexp='https://github\.com/aws/karpenter-provider-aws/\.github/workflows/release\.yaml@.+' \
121121
--certificate-github-workflow-repository=aws/karpenter-provider-aws \
122122
--certificate-github-workflow-name=Release \
123123
--certificate-github-workflow-ref=refs/tags/v1.6.2 \
124-
--annotations version=1.6.2
124+
--annotations version=1.6.3
125125
```
126126

127127
{{% alert title="DNS Policy Notice" color="warning" %}}

website/content/en/docs/getting-started/migrating-from-cas/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ One for your Karpenter node role and one for your existing node group.
9292
First set the Karpenter release you want to deploy.
9393
9494
```bash
95-
export KARPENTER_VERSION="1.6.2"
95+
export KARPENTER_VERSION="1.6.3"
9696
```
9797

9898
We can now generate a full Karpenter deployment yaml from the Helm chart.

website/content/en/docs/reference/cloudformation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ These descriptions should allow you to understand:
1717
To download a particular version of `cloudformation.yaml`, set the version and use `curl` to pull the file to your local system:
1818

1919
```bash
20-
export KARPENTER_VERSION="1.6.2"
20+
export KARPENTER_VERSION="1.6.3"
2121
curl https://raw.githubusercontent.com/aws/karpenter-provider-aws/v"${KARPENTER_VERSION}"/website/content/en/preview/getting-started/getting-started-with-karpenter/cloudformation.yaml > cloudformation.yaml
2222
```
2323

website/content/en/docs/upgrading/upgrade-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ If you get the error `invalid ownership metadata; label validation error:` while
8686
WHEN CREATING A NEW SECTION OF THE UPGRADE GUIDANCE FOR NEWER VERSIONS, ENSURE THAT YOU COPY THE BETA API ALERT SECTION FROM THE LAST RELEASE TO PROPERLY WARN USERS OF THE RISK OF UPGRADING WITHOUT GOING TO 0.32.x FIRST
8787
-->
8888

89-
### Upgrading to `1.6.2`+
89+
### Upgrading to `1.6.3`+
9090

9191
{{% alert title="Warning" color="warning" %}}
9292
Karpenter `1.1.0` drops the support for `v1beta1` APIs.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ After setting up the tools, set the Karpenter and Kubernetes version:
4848

4949
```bash
5050
export KARPENTER_NAMESPACE="kube-system"
51-
export KARPENTER_VERSION="1.5.3"
51+
export KARPENTER_VERSION="1.5.4"
5252
export K8S_VERSION="1.32"
5353
```
5454

@@ -115,13 +115,13 @@ See [Enabling Windows support](https://docs.aws.amazon.com/eks/latest/userguide/
115115
As the OCI Helm chart is signed by [Cosign](https://github.com/sigstore/cosign) as part of the release process you can verify the chart before installing it by running the following command.
116116

117117
```bash
118-
cosign verify public.ecr.aws/karpenter/karpenter:1.5.3 \
118+
cosign verify public.ecr.aws/karpenter/karpenter:1.5.4 \
119119
--certificate-oidc-issuer=https://token.actions.githubusercontent.com \
120120
--certificate-identity-regexp='https://github\.com/aws/karpenter-provider-aws/\.github/workflows/release\.yaml@.+' \
121121
--certificate-github-workflow-repository=aws/karpenter-provider-aws \
122122
--certificate-github-workflow-name=Release \
123123
--certificate-github-workflow-ref=refs/tags/v1.5.3 \
124-
--annotations version=1.5.3
124+
--annotations version=1.5.4
125125
```
126126

127127
{{% alert title="DNS Policy Notice" color="warning" %}}

website/content/en/v1.5/getting-started/migrating-from-cas/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ One for your Karpenter node role and one for your existing node group.
9292
First set the Karpenter release you want to deploy.
9393
9494
```bash
95-
export KARPENTER_VERSION="1.5.3"
95+
export KARPENTER_VERSION="1.5.4"
9696
```
9797

9898
We can now generate a full Karpenter deployment yaml from the Helm chart.

0 commit comments

Comments
 (0)