From b07d2427f145e7225169f3bd8b1c40d2090e76b3 Mon Sep 17 00:00:00 2001 From: Melvin Zottola Date: Wed, 15 Jan 2025 17:31:07 +0100 Subject: [PATCH] feat: Add enabled field for karpenter node pool limits --- 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)"