From 77a88f7e8b99ed97a76821c9a19ccb87c06b73e6 Mon Sep 17 00:00:00 2001 From: Vishnu kannan Date: Thu, 2 Feb 2017 10:27:52 -0800 Subject: [PATCH] update critical pod annotation flag gate to mention that BestEffort pods are not supported Signed-off-by: Vishnu kannan --- pkg/features/kube_features.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index 61b4d26ece0..18856478b3d 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -64,6 +64,7 @@ const ( // // Ensures guaranteed scheduling of pods marked with a special pod annotation `scheduler.alpha.kubernetes.io/critical-pod` // and also prevents them from being evicted from a node. + // Note: This feature is not supported for `BestEffort` pods. ExperimentalCriticalPodAnnotation utilfeature.Feature = "ExperimentalCriticalPodAnnotation" )