Skip to content

Commit 35525d1

Browse files
committed
Add extra details for clarity
1 parent fc25753 commit 35525d1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,14 @@ config. Save it as `my-scheduler.yaml`:
7373

7474
In the above manifest, we have used a [Scheduler Configuration](/docs/reference/scheduling/config/)
7575
to customize the behavior of your scheduler implementation. This configuration has been passed to
76-
the `kube-scheduler` during its initialization via `--config` command line argument.
76+
the `kube-scheduler` during its initialization via `--config` command line argument. The configuration
77+
file has been embedded within the ConfigMap `my-scheduler-config` which has been injected to the scheduler
78+
Deployment via a volume.
7779

7880
In the aforementioned Scheduler Configuration, your scheduler implementation has been represented via
7981
a [KubeSchedulerProfile](/docs/reference/config-api/kube-scheduler-config.v1beta2/#kubescheduler-config-k8s-io-v1beta2-KubeSchedulerProfile).
8082
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. This is the name that is matched against the value of the optional `spec.schedulerName` on pods, to determine whether
83+
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
8284
this scheduler is responsible for scheduling a particular pod.
8385

8486
Also, note that we created a dedicated service account `my-scheduler` and bound the cluster role

0 commit comments

Comments
 (0)