File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
keps/sig-node/2712-pod-priority-based-graceful-node-shutdown Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -188,16 +188,16 @@ Same as the graceful shutdown KEP.
188
188
## Design Details
189
189
190
190
The configuration will be controlled by a new Kubelet Config setting,
191
- ` kubeletConfig.PodPriorityShutdownGracePeriods ` :
191
+ ` kubeletConfig.ShutdownGracePeriodByPodPriority ` :
192
192
193
193
```
194
- type PodPriorityShutdownGracePeriod struct {
194
+ type ShutdownGracePeriodByPodPriority struct {
195
195
Priority int32
196
196
ShutdownGracePeriodSeconds int64
197
197
}
198
198
199
199
type KubeletConfiguration struct {
200
- PodPriorityShutdownGracePeriods []PodPriorityShutdownGracePeriod
200
+ ShutdownGracePeriodByPodPriority []ShutdownGracePeriodByPodPriority
201
201
}
202
202
```
203
203
@@ -292,7 +292,7 @@ _This section must be completed when targeting alpha to a release._
292
292
293
293
* ** How can this feature be enabled / disabled in a live cluster?**
294
294
- [X] Feature gate (also fill in values in ` kep.yaml ` )
295
- - Feature gate name: ` PodPriorityBasedGracefulNodeShutdown `
295
+ - Feature gate name: ` GracefulNodeShutdownBasedOnPodPriority `
296
296
- Components depending on the feature gate:
297
297
- ` kubelet `
298
298
- [ ] Other
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ milestone:
29
29
# The following PRR answers are required at alpha release
30
30
# List the feature gate name and the components for which it must be enabled
31
31
feature-gates :
32
- - name : PodPriorityBasedGracefulNodeShutdown
32
+ - name : GracefulNodeShutdownBasedOnPodPriority
33
33
components :
34
34
- kubelet
35
35
disable-supported : true
You can’t perform that action at this time.
0 commit comments