mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-16 07:13:53 +00:00
Add FeatureGate PodHostIPs
This commit is contained in:
parent
5c72df7281
commit
c2c001a243
@ -611,6 +611,13 @@ const (
|
|||||||
// sandbox creation and network configuration completes successfully
|
// sandbox creation and network configuration completes successfully
|
||||||
PodReadyToStartContainersCondition featuregate.Feature = "PodReadyToStartContainersCondition"
|
PodReadyToStartContainersCondition featuregate.Feature = "PodReadyToStartContainersCondition"
|
||||||
|
|
||||||
|
// owner: @wzshiming
|
||||||
|
// kep: http://kep.k8s.io/2681
|
||||||
|
// alpha: v1.28
|
||||||
|
//
|
||||||
|
// Adds pod.status.hostIPs and downward API
|
||||||
|
PodHostIPs featuregate.Feature = "PodHostIPs"
|
||||||
|
|
||||||
// owner: @Huang-Wei
|
// owner: @Huang-Wei
|
||||||
// kep: https://kep.k8s.io/3521
|
// kep: https://kep.k8s.io/3521
|
||||||
// alpha: v1.26
|
// alpha: v1.26
|
||||||
@ -1022,6 +1029,8 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
|
|||||||
|
|
||||||
PodReadyToStartContainersCondition: {Default: false, PreRelease: featuregate.Alpha},
|
PodReadyToStartContainersCondition: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
|
||||||
|
PodHostIPs: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
|
||||||
PodSchedulingReadiness: {Default: true, PreRelease: featuregate.Beta},
|
PodSchedulingReadiness: {Default: true, PreRelease: featuregate.Beta},
|
||||||
|
|
||||||
ProbeTerminationGracePeriod: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.29
|
ProbeTerminationGracePeriod: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.29
|
||||||
|
Loading…
Reference in New Issue
Block a user