Skip to content

Commit

Permalink
More docs updates for v1alpha5 (#767)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellistarn authored Oct 22, 2021
1 parent 01e53a4 commit 1f2bf2c
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions website/content/en/docs/cloud-providers/AWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ View the full list of instance types with `aws ec2 describe-instance-types`.

```yaml
spec:
instanceTypes:
- m5.large
requirements:
- key: node.kubernetes.io/instance-type
operator: In
values: ["m5.large", "m5.2xlarge"]
```
*Override with workload manifest (e.g., pod)*
Expand Down Expand Up @@ -80,8 +82,10 @@ be used for critical workloads.

```yaml
spec:
labels:
node.k8s.aws/capacity-type: spot
requirements:
- key: node.k8s.aws/capacity-type
operator: In
values: ["spot", "on-demand"]
```

*Override with workload manifest (e.g., pod)*
Expand Down Expand Up @@ -109,8 +113,10 @@ Karpenter supports `amd64` nodes, and `arm64` nodes.

```yaml
spec:
labels:
kubernetes.io/arch: arm64
requirements:
- key: kubernetes.io/arch
operator: In
values: ["arm64", "amd64"]
```

*Override with workload manifest (e.g., pod)*
Expand Down

0 comments on commit 1f2bf2c

Please sign in to comment.