Skip to content

Commit d07ede8

Browse files
authored
docs: bump latest release to v1.3.3 (#7922)
1 parent 01bf46a commit d07ede8

File tree

10 files changed

+28
-28
lines changed

10 files changed

+28
-28
lines changed

website/content/en/docs/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ See [Configuring NodePools]({{< ref "./concepts/#configuring-nodepools" >}}) for
1717
AWS is the first cloud provider supported by Karpenter, although it is designed to be used with other cloud providers as well.
1818

1919
### Can I write my own cloud provider for Karpenter?
20-
Yes, but there is no documentation yet for it. Start with Karpenter's GitHub [cloudprovider](https://github.com/aws/karpenter-provider-aws/tree/v1.3.2/pkg/cloudprovider) documentation to see how the AWS provider is built, but there are other sections of the code that will require changes too.
20+
Yes, but there is no documentation yet for it. Start with Karpenter's GitHub [cloudprovider](https://github.com/aws/karpenter-provider-aws/tree/v1.3.3/pkg/cloudprovider) documentation to see how the AWS provider is built, but there are other sections of the code that will require changes too.
2121

2222
### What operating system nodes does Karpenter deploy?
2323
Karpenter uses the OS defined by the [AMI Family in your EC2NodeClass]({{< ref "./concepts/nodeclasses#specamifamily" >}}).
@@ -29,7 +29,7 @@ Karpenter has multiple mechanisms for configuring the [operating system]({{< ref
2929
Karpenter is flexible to multi-architecture configurations using [well known labels]({{< ref "./concepts/scheduling/#supported-labels">}}).
3030

3131
### What RBAC access is required?
32-
All the required RBAC rules can be found in the Helm chart template. See [clusterrole-core.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/clusterrole-core.yaml), [clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/clusterrole.yaml), [rolebinding.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/rolebinding.yaml), and [role.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/role.yaml) files for details.
32+
All the required RBAC rules can be found in the Helm chart template. See [clusterrole-core.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/clusterrole-core.yaml), [clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/clusterrole.yaml), [rolebinding.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/rolebinding.yaml), and [role.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/role.yaml) files for details.
3333

3434
### Can I run Karpenter outside of a Kubernetes cluster?
3535
Yes, as long as the controller has network and IAM/RBAC access to the Kubernetes API and your provider API.

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

Lines changed: 4 additions & 4 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.3.2"
51+
export KARPENTER_VERSION="1.3.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.3.2 \
118+
cosign verify public.ecr.aws/karpenter/karpenter:1.3.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 \
123-
--certificate-github-workflow-ref=refs/tags/v1.3.2 \
124-
--annotations version=1.3.2
123+
--certificate-github-workflow-ref=refs/tags/v1.3.3 \
124+
--annotations version=1.3.3
125125
```
126126

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

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

Lines changed: 2 additions & 2 deletions
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.3.2"
95+
export KARPENTER_VERSION="1.3.3"
9696
```
9797

9898
We can now generate a full Karpenter deployment yaml from the Helm chart.
@@ -132,7 +132,7 @@ Now that our deployment is ready we can create the karpenter namespace, create t
132132
133133
## Create default NodePool
134134
135-
We need to create a default NodePool so Karpenter knows what types of nodes we want for unscheduled workloads. You can refer to some of the [example NodePool](https://github.com/aws/karpenter/tree/v1.3.2/examples/v1) for specific needs.
135+
We need to create a default NodePool so Karpenter knows what types of nodes we want for unscheduled workloads. You can refer to some of the [example NodePool](https://github.com/aws/karpenter/tree/v1.3.3/examples/v1) for specific needs.
136136
137137
{{% script file="./content/en/{VERSION}/getting-started/migrating-from-cas/scripts/step10-create-nodepool.sh" language="bash" %}}
138138

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.3.2"
20+
export KARPENTER_VERSION="1.3.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/reference/threat-model.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ A Cluster Developer has the ability to create pods via `Deployments`, `ReplicaSe
3131

3232
Karpenter has permissions to create and manage cloud instances. Karpenter has Kubernetes API permissions to create, update, and remove nodes, as well as evict pods. For a full list of the permissions, see the RBAC rules in the helm chart template. Karpenter also has AWS IAM permissions to create instances with IAM roles.
3333

34-
* [aggregate-clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/aggregate-clusterrole.yaml)
35-
* [clusterrole-core.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/clusterrole-core.yaml)
36-
* [clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/clusterrole.yaml)
37-
* [rolebinding.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/rolebinding.yaml)
38-
* [role.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/role.yaml)
34+
* [aggregate-clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/aggregate-clusterrole.yaml)
35+
* [clusterrole-core.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/clusterrole-core.yaml)
36+
* [clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/clusterrole.yaml)
37+
* [rolebinding.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/rolebinding.yaml)
38+
* [role.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/role.yaml)
3939

4040
## Assumptions
4141

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ See [Configuring NodePools]({{< ref "./concepts/#configuring-nodepools" >}}) for
1717
AWS is the first cloud provider supported by Karpenter, although it is designed to be used with other cloud providers as well.
1818

1919
### Can I write my own cloud provider for Karpenter?
20-
Yes, but there is no documentation yet for it. Start with Karpenter's GitHub [cloudprovider](https://github.com/aws/karpenter-provider-aws/tree/v1.3.2/pkg/cloudprovider) documentation to see how the AWS provider is built, but there are other sections of the code that will require changes too.
20+
Yes, but there is no documentation yet for it. Start with Karpenter's GitHub [cloudprovider](https://github.com/aws/karpenter-provider-aws/tree/v1.3.3/pkg/cloudprovider) documentation to see how the AWS provider is built, but there are other sections of the code that will require changes too.
2121

2222
### What operating system nodes does Karpenter deploy?
2323
Karpenter uses the OS defined by the [AMI Family in your EC2NodeClass]({{< ref "./concepts/nodeclasses#specamifamily" >}}).
@@ -29,7 +29,7 @@ Karpenter has multiple mechanisms for configuring the [operating system]({{< ref
2929
Karpenter is flexible to multi-architecture configurations using [well known labels]({{< ref "./concepts/scheduling/#supported-labels">}}).
3030

3131
### What RBAC access is required?
32-
All the required RBAC rules can be found in the Helm chart template. See [clusterrole-core.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/clusterrole-core.yaml), [clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/clusterrole.yaml), [rolebinding.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/rolebinding.yaml), and [role.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/role.yaml) files for details.
32+
All the required RBAC rules can be found in the Helm chart template. See [clusterrole-core.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/clusterrole-core.yaml), [clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/clusterrole.yaml), [rolebinding.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/rolebinding.yaml), and [role.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/role.yaml) files for details.
3333

3434
### Can I run Karpenter outside of a Kubernetes cluster?
3535
Yes, as long as the controller has network and IAM/RBAC access to the Kubernetes API and your provider API.

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

Lines changed: 4 additions & 4 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.3.2"
51+
export KARPENTER_VERSION="1.3.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.3.2 \
118+
cosign verify public.ecr.aws/karpenter/karpenter:1.3.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 \
123-
--certificate-github-workflow-ref=refs/tags/v1.3.2 \
124-
--annotations version=1.3.2
123+
--certificate-github-workflow-ref=refs/tags/v1.3.3 \
124+
--annotations version=1.3.3
125125
```
126126

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

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

Lines changed: 2 additions & 2 deletions
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.3.2"
95+
export KARPENTER_VERSION="1.3.3"
9696
```
9797

9898
We can now generate a full Karpenter deployment yaml from the Helm chart.
@@ -132,7 +132,7 @@ Now that our deployment is ready we can create the karpenter namespace, create t
132132
133133
## Create default NodePool
134134
135-
We need to create a default NodePool so Karpenter knows what types of nodes we want for unscheduled workloads. You can refer to some of the [example NodePool](https://github.com/aws/karpenter/tree/v1.3.2/examples/v1) for specific needs.
135+
We need to create a default NodePool so Karpenter knows what types of nodes we want for unscheduled workloads. You can refer to some of the [example NodePool](https://github.com/aws/karpenter/tree/v1.3.3/examples/v1) for specific needs.
136136
137137
{{% script file="./content/en/{VERSION}/getting-started/migrating-from-cas/scripts/step10-create-nodepool.sh" language="bash" %}}
138138

website/content/en/v1.3/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.3.2"
20+
export KARPENTER_VERSION="1.3.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/v1.3/reference/threat-model.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ A Cluster Developer has the ability to create pods via `Deployments`, `ReplicaSe
3131

3232
Karpenter has permissions to create and manage cloud instances. Karpenter has Kubernetes API permissions to create, update, and remove nodes, as well as evict pods. For a full list of the permissions, see the RBAC rules in the helm chart template. Karpenter also has AWS IAM permissions to create instances with IAM roles.
3333

34-
* [aggregate-clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/aggregate-clusterrole.yaml)
35-
* [clusterrole-core.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/clusterrole-core.yaml)
36-
* [clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/clusterrole.yaml)
37-
* [rolebinding.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/rolebinding.yaml)
38-
* [role.yaml](https://github.com/aws/karpenter/blob/v1.3.2/charts/karpenter/templates/role.yaml)
34+
* [aggregate-clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/aggregate-clusterrole.yaml)
35+
* [clusterrole-core.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/clusterrole-core.yaml)
36+
* [clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/clusterrole.yaml)
37+
* [rolebinding.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/rolebinding.yaml)
38+
* [role.yaml](https://github.com/aws/karpenter/blob/v1.3.3/charts/karpenter/templates/role.yaml)
3939

4040
## Assumptions
4141

0 commit comments

Comments
 (0)