From 3bad9d7994c3c7ff96f0af713946bb6642b8a524 Mon Sep 17 00:00:00 2001 From: Melvin Zottola <37779145+mzottola@users.noreply.github.com> Date: Fri, 17 Jan 2025 15:17:46 +0100 Subject: [PATCH] feat: Add enabled field for karpenter node pool limits (#749) --- openapi.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index ce027b22..0e7dab75 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -20070,9 +20070,14 @@ components: title: KarpenterNodePoolLimits type: object required: + - enabled - max_cpu_in_vcpu - max_memory_in_gibibytes properties: + enabled: + type: boolean + default: false + nullable: false max_cpu_in_vcpu: type: integer description: "CPU limit that will be applied for the node pool (in vCPU unit: 1 vCPU = 1000 millicores)"