Merge pull request #109616 from wzshiming/feat/pod-host-ips

Field `status.hostIPs` added for Pod
This commit is contained in:
Kubernetes Prow Robot
2023-07-15 00:31:04 -07:00
committed by GitHub
33 changed files with 2448 additions and 1112 deletions

View File

@@ -620,6 +620,13 @@ const (
// sandbox creation and network configuration completes successfully
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
// kep: https://kep.k8s.io/3521
// alpha: v1.26
@@ -1039,6 +1046,8 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
PodReadyToStartContainersCondition: {Default: false, PreRelease: featuregate.Alpha},
PodHostIPs: {Default: false, PreRelease: featuregate.Alpha},
PodSchedulingReadiness: {Default: true, PreRelease: featuregate.Beta},
ProbeTerminationGracePeriod: {Default: true, PreRelease: featuregate.GA, LockToDefault: true}, // remove in 1.29