From a9894f2a226217795fae594f42116a278485347c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20K=C5=99epinsk=C3=BD?= Date: Thu, 22 Dec 2022 00:45:25 +0100 Subject: [PATCH] KEP-3017: make API definition of UnhealthyPodEvictionPolicy unversioned --- keps/sig-apps/3017-pod-healthy-policy-for-pdb/README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/keps/sig-apps/3017-pod-healthy-policy-for-pdb/README.md b/keps/sig-apps/3017-pod-healthy-policy-for-pdb/README.md index b8d3a676641..37364d9c214 100644 --- a/keps/sig-apps/3017-pod-healthy-policy-for-pdb/README.md +++ b/keps/sig-apps/3017-pod-healthy-policy-for-pdb/README.md @@ -128,7 +128,7 @@ and thus should be evicted without being potentially constrained by a Pod Disrup Currently, we only allow evicting Running pods in case there are enough pods healthy (`.status.currentHealthy` is at least equal to `.status.DesiredHealthy`). -This is to give the application best change to achieve availability and prevent data loss +This is to give the application best chance to achieve availability and prevent data loss by disallowing disruption of starting pods that have not become Healthy (Ready yet). We also want to allow unconditional eviction of Running pods for applications that do not have @@ -165,10 +165,6 @@ type PodDisruptionBudgetSpec struct { // Additional policies may be added in the future. // Clients making eviction decisions should disallow eviction of unhealthy pods // if they encounter an unrecognized policy in this field. - // - // This field is alpha-level. The eviction API uses this field when - // the feature gate PDBUnhealthyPodEvictionPolicy is enabled (disabled by default). - // +optional UnhealthyPodEvictionPolicy *UnhealthyPodEvictionPolicyType `json:"unhealthyPodEvictionPolicy,omitempty" protobuf:"bytes,4,opt,name=unhealthyPodEvictionPolicy"` }