From 2f0c9bae57351a102b414c70dcee751a6e1f8667 Mon Sep 17 00:00:00 2001 From: Charlie McBride Date: Mon, 2 Dec 2024 11:23:58 -0800 Subject: [PATCH] add optional commented options to examples --- 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..9fddba724 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 ---