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

test(examples): QoL, add optional commented options to examples #594

Merged
merged 2 commits into from
Dec 2, 2024
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
8 changes: 8 additions & 0 deletions examples/v1beta1/general-purpose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ metadata:
spec:
disruption:
expireAfter: Never
# Optional: Uncomment if you want to put a cap on the max resources available for provisioning
# limits:
# cpu: "30"
template:
metadata:
labels:
Expand All @@ -33,6 +36,11 @@ spec:
- key: karpenter.azure.com/sku-family
operator: In
values: [D]
# Optional: Uncomment if you want to add a restriction on max sku cpus.
# Useful for ensuring karpneter provisions multiple nodes for feature testing.
# - key: karpenter.azure.com/sku-cpu
# operator: Lt
# values: ["3"]
nodeClassRef:
name: default
---
Expand Down
Loading