From 3847493bfd5b0534f21979e711e2be66c1b0ef1b Mon Sep 17 00:00:00 2001 From: Kensei Nakada Date: Tue, 12 Nov 2024 11:26:39 -0700 Subject: [PATCH] fix: modify the note on the concept page --- .../concepts/scheduling-eviction/scheduling-framework.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/content/en/docs/concepts/scheduling-eviction/scheduling-framework.md b/content/en/docs/concepts/scheduling-eviction/scheduling-framework.md index 63a8c7d3e6..d76ad3e1d0 100644 --- a/content/en/docs/concepts/scheduling-eviction/scheduling-framework.md +++ b/content/en/docs/concepts/scheduling-eviction/scheduling-framework.md @@ -74,7 +74,7 @@ Plugins that implement PreEnqueue, PreFilter, Filter, Reserve or Permit should i ### QueueingHint -{{< feature-state for_k8s_version="v1.28" state="beta" >}} +{{< feature-state for_k8s_version="v1.32" state="beta" >}} QueueingHint is a callback function for deciding whether a Pod can be requeued to the active queue or backoff queue. It's executed every time a certain kind of event or change happens in the cluster. @@ -84,11 +84,8 @@ so that the scheduler will retry the scheduling of the Pod. {{< note >}} QueueingHint evaluation during scheduling is a beta-level feature. -The v1.28 release series initially enabled the associated feature gate; however, after the -discovery of an excessive memory footprint, the Kubernetes project set that feature gate -to be disabled by default. In Kubernetes {{< skew currentVersion >}}, this feature gate is -disabled and you need to enable it manually. -You can enable it via the +In Kubernetes {{< skew currentVersion >}}, this feature gate is enabled by default, +and you can disable it via the `SchedulerQueueingHints` [feature gate](/docs/reference/command-line-tools-reference/feature-gates/). {{< /note >}}