Skip to content

Commit 64df6c4

Browse files
committed
Update KEP.yaml
1 parent 5b27492 commit 64df6c4

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

keps/sig-node/3953-node-resource-hot-plug/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,18 @@ To ensure the Cluster Autoscaler acknowledges resource hotplug, the following ap
340340
Given that this KEP and autoscaler are inter-related, the above approaches were discussed in the community with relevant stakeholders, and have decided approaching this problem through the approach 1.
341341
The same will be targeted around the beta graduation of this KEP
342342

343+
##### API Changes
344+
345+
```go
346+
type NodeStatus struct {
347+
// ... existing fields
348+
// InitialCapacity represents the total resources of a node at the time of creation.
349+
// +featureGate=NodeResourceHotPlug
350+
// +optional
351+
InitialCapacity ResourceList `json:"initialCapacity,omitempty"`
352+
}
353+
```
354+
343355
### Handling HotUnplug Events
344356

345357
Though this KEP focuses only on resource hotplug, It will enable the kubelet to capture the current available capacity of the node (Regardless of whether it was a hotplug or hotunplug of resources.)

keps/sig-node/3953-node-resource-hot-plug/kep.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors:
88
owning-sig: sig-node
99
participating-sigs:
1010
- sig-node
11-
status: provisional
11+
status: implementable
1212
creation-date: 2023-10-04
1313
reviewers:
1414
- "@smarterclayton"

0 commit comments

Comments
 (0)