Skip to content

Commit 7b6d84e

Browse files
Use note short code to highlight the content
Co-authored-by: Rey Lejano <[email protected]>
1 parent 514db9e commit 7b6d84e

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

content/en/docs/tasks/extend-kubernetes/configure-multiple-schedulers.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,15 @@ In the above manifest, you use a [Scheduler Configuration](/docs/reference/sched
7575
to customize the behavior of your scheduler implementation. This configuration has been passed to
7676
the `kube-scheduler` during initialization with the `--config` option. The `my-scheduler-config` ConfigMap stores the configuration file. The Pod of the`my-scheduler` Deployment mounts the `my-scheduler-config` ConfigMap as a volume.
7777

78-
In the aforementioned Scheduler Configuration, your scheduler implementation has been represented via
78+
In the aforementioned Scheduler Configuration, your scheduler implementation is represented via
7979
a [KubeSchedulerProfile](/docs/reference/config-api/kube-scheduler-config.v1beta2/#kubescheduler-config-k8s-io-v1beta2-KubeSchedulerProfile).
80-
An important thing to note here is that the name of the scheduler specified via `schedulerName` field of the defined `KubeSchedulerProfile`,
81-
should be unique among all schedulers running in the cluster. This is the name that is matched against the value of the optional `spec.schedulerName` on pods, to determine whether
82-
this scheduler is responsible for scheduling a particular pod.
80+
{{< note >}}
81+
To determine if a scheduler is responsible for scheduling a specific Pod, the `spec.schedulerName` field in a
82+
PodTemplate or Pod manifest must match the `schedulerName` field of the `KubeSchedulerProfile`.
83+
All schedulers running in the cluster must have unique names.
84+
{{< /note >}}
8385

84-
Also, note that we created a dedicated service account `my-scheduler` and bound the cluster role
86+
Also, note that you create a dedicated service account `my-scheduler` and bind the ClusterRole
8587
`system:kube-scheduler` to it so that it can acquire the same privileges as `kube-scheduler`.
8688

8789
Please see the

0 commit comments

Comments
 (0)