You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardexpand all lines: website/content/en/docs/faq.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ See [Configuring NodePools]({{< ref "./concepts/#configuring-nodepools" >}}) for
17
17
AWS is the first cloud provider supported by Karpenter, although it is designed to be used with other cloud providers as well.
18
18
19
19
### 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-core/tree/v1.3.1/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-core/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.
21
21
22
22
### What operating system nodes does Karpenter deploy?
23
23
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
29
29
Karpenter is flexible to multi-architecture configurations using [well known labels]({{< ref "./concepts/scheduling/#supported-labels">}}).
30
30
31
31
### 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.1/charts/karpenter/templates/clusterrole-core.yaml), [clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.1/charts/karpenter/templates/clusterrole.yaml), [rolebinding.yaml](https://github.com/aws/karpenter/blob/v1.3.1/charts/karpenter/templates/rolebinding.yaml), and [role.yaml](https://github.com/aws/karpenter/blob/v1.3.1/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.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.
33
33
34
34
### Can I run Karpenter outside of a Kubernetes cluster?
35
35
Yes, as long as the controller has network and IAM/RBAC access to the Kubernetes API and your provider API.
Copy file name to clipboardexpand all lines: website/content/en/docs/getting-started/getting-started-with-karpenter/_index.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ After setting up the tools, set the Karpenter and Kubernetes version:
48
48
49
49
```bash
50
50
export KARPENTER_NAMESPACE="kube-system"
51
-
export KARPENTER_VERSION="1.3.1"
51
+
export KARPENTER_VERSION="1.3.2"
52
52
export K8S_VERSION="1.32"
53
53
```
54
54
@@ -115,13 +115,13 @@ See [Enabling Windows support](https://docs.aws.amazon.com/eks/latest/userguide/
115
115
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.
Copy file name to clipboardexpand all lines: website/content/en/docs/getting-started/migrating-from-cas/_index.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ One for your Karpenter node role and one for your existing node group.
92
92
First set the Karpenter release you want to deploy.
93
93
94
94
```bash
95
-
export KARPENTER_VERSION="1.3.1"
95
+
export KARPENTER_VERSION="1.3.2"
96
96
```
97
97
98
98
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
132
132
133
133
## Create default NodePool
134
134
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.1/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.2/examples/v1) for specific needs.
Copy file name to clipboardexpand all lines: website/content/en/docs/reference/threat-model.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -31,11 +31,11 @@ A Cluster Developer has the ability to create pods via `Deployments`, `ReplicaSe
31
31
32
32
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.
Copy file name to clipboardexpand all lines: website/content/en/v1.3/faq.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ See [Configuring NodePools]({{< ref "./concepts/#configuring-nodepools" >}}) for
17
17
AWS is the first cloud provider supported by Karpenter, although it is designed to be used with other cloud providers as well.
18
18
19
19
### 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-core/tree/v1.3.1/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-core/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.
21
21
22
22
### What operating system nodes does Karpenter deploy?
23
23
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
29
29
Karpenter is flexible to multi-architecture configurations using [well known labels]({{< ref "./concepts/scheduling/#supported-labels">}}).
30
30
31
31
### 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.1/charts/karpenter/templates/clusterrole-core.yaml), [clusterrole.yaml](https://github.com/aws/karpenter/blob/v1.3.1/charts/karpenter/templates/clusterrole.yaml), [rolebinding.yaml](https://github.com/aws/karpenter/blob/v1.3.1/charts/karpenter/templates/rolebinding.yaml), and [role.yaml](https://github.com/aws/karpenter/blob/v1.3.1/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.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.
33
33
34
34
### Can I run Karpenter outside of a Kubernetes cluster?
35
35
Yes, as long as the controller has network and IAM/RBAC access to the Kubernetes API and your provider API.
Copy file name to clipboardexpand all lines: website/content/en/v1.3/getting-started/getting-started-with-karpenter/_index.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ After setting up the tools, set the Karpenter and Kubernetes version:
48
48
49
49
```bash
50
50
export KARPENTER_NAMESPACE="kube-system"
51
-
export KARPENTER_VERSION="1.3.1"
51
+
export KARPENTER_VERSION="1.3.2"
52
52
export K8S_VERSION="1.32"
53
53
```
54
54
@@ -115,13 +115,13 @@ See [Enabling Windows support](https://docs.aws.amazon.com/eks/latest/userguide/
115
115
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.
Copy file name to clipboardexpand all lines: website/content/en/v1.3/getting-started/migrating-from-cas/_index.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ One for your Karpenter node role and one for your existing node group.
92
92
First set the Karpenter release you want to deploy.
93
93
94
94
```bash
95
-
export KARPENTER_VERSION="1.3.1"
95
+
export KARPENTER_VERSION="1.3.2"
96
96
```
97
97
98
98
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
132
132
133
133
## Create default NodePool
134
134
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.1/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.2/examples/v1) for specific needs.
Copy file name to clipboardexpand all lines: website/content/en/v1.3/reference/threat-model.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -31,11 +31,11 @@ A Cluster Developer has the ability to create pods via `Deployments`, `ReplicaSe
31
31
32
32
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.
0 commit comments