Skip to content

Commit

Permalink
feat(cor-1061) Add karpenter node pools limits (#732)
Browse files Browse the repository at this point in the history
  • Loading branch information
mzottola authored Dec 23, 2024
1 parent 89e2dcd commit 11813af
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19840,7 +19840,9 @@ components:
items:
$ref: '#/components/schemas/KarpenterNodePoolRequirement'
stable_override:
$ref: '#/components/schemas/KarpenterNodePoolOverride'
$ref: '#/components/schemas/KarpenterStableNodePoolOverride'
default_override:
$ref: '#/components/schemas/KarpenterDefaultNodePoolOverride'
description: ''
KarpenterNodePoolRequirementKey:
title: KarpenterNodePoolRequirementKey
Expand Down Expand Up @@ -19878,12 +19880,20 @@ components:
x-stoplight:
id: 02kz5mierypik
type: string
KarpenterNodePoolOverride:
title: KarpenterNodePoolOverride
KarpenterStableNodePoolOverride:
title: KarpenterStableNodePoolOverride
type: object
properties:
consolidation:
$ref: '#/components/schemas/KarpenterNodePoolConsolidation'
limits:
$ref: '#/components/schemas/KarpenterNodePoolLimits'
KarpenterDefaultNodePoolOverride:
title: KarpenterDefaultNodePoolOverride
type: object
properties:
limits:
$ref: '#/components/schemas/KarpenterNodePoolLimits'
KarpenterNodePoolConsolidation:
title: KarpenterNodePoolConsolidation
type: object
Expand Down Expand Up @@ -19925,6 +19935,19 @@ components:
- NEVER_DEPLOYED
- UP_TO_DATE
- OUT_OF_DATE
KarpenterNodePoolLimits:
title: KarpenterNodePoolLimits
type: object
required:
- max_cpu_in_vcpu
- max_memory_in_gibibytes
properties:
max_cpu_in_vcpu:
type: number
description: "CPU limit that will be applied for the node pool (in vCPU unit: 1 vCPU = 1000 millicores)"
max_memory_in_gibibytes:
type: number
description: "Memory limit that will be applied for the node pool (in Gibibytes unit: 1Gi = 1024 mebibytes)"
responses:
'204':
description: no content
Expand Down

0 comments on commit 11813af

Please sign in to comment.