From c8d18da43774d1dc026c571a69860ed1900b025d Mon Sep 17 00:00:00 2001 From: Yuki Iwai Date: Thu, 8 Feb 2024 08:13:00 +0900 Subject: [PATCH] Scheduler: Fix the feature stage of preemptionPolicy in the API comment Signed-off-by: Yuki Iwai --- pkg/apis/scheduling/types.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/apis/scheduling/types.go b/pkg/apis/scheduling/types.go index 0f86126dc85..68daf016811 100644 --- a/pkg/apis/scheduling/types.go +++ b/pkg/apis/scheduling/types.go @@ -69,7 +69,8 @@ type PriorityClass struct { Description string // preemptionPolicy it the Policy for preempting pods with lower priority. - // This field is beta-level. + // One of Never, PreemptLowerPriority. + // Defaults to PreemptLowerPriority if unset. // +optional PreemptionPolicy *core.PreemptionPolicy }