From 025fb78baaf8f95c79c72176ce0c1de701e3f38d Mon Sep 17 00:00:00 2001 From: Charlie McBride <33269602+charliedmcb@users.noreply.github.com> Date: Mon, 2 Dec 2024 11:44:13 -0800 Subject: [PATCH] test(examples): QoL, add optional commented options to examples (#594) * add optional commented options to examples * minor update --------- Co-authored-by: Charlie McBride --- examples/v1beta1/general-purpose.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/examples/v1beta1/general-purpose.yaml b/examples/v1beta1/general-purpose.yaml index e0140ee7f..3c8dac424 100644 --- a/examples/v1beta1/general-purpose.yaml +++ b/examples/v1beta1/general-purpose.yaml @@ -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: @@ -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 ---