Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More docs updates for v1alpha5 #767

Merged
merged 1 commit into from
Oct 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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