You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/tasks/extend-kubernetes/configure-multiple-schedulers.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,12 +73,14 @@ config. Save it as `my-scheduler.yaml`:
73
73
74
74
In the above manifest, we have used a [Scheduler Configuration](/docs/reference/scheduling/config/)
75
75
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.
77
79
78
80
In the aforementioned Scheduler Configuration, your scheduler implementation has been represented via
79
81
a [KubeSchedulerProfile](/docs/reference/config-api/kube-scheduler-config.v1beta2/#kubescheduler-config-k8s-io-v1beta2-KubeSchedulerProfile).
80
82
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
82
84
this scheduler is responsible for scheduling a particular pod.
83
85
84
86
Also, note that we created a dedicated service account `my-scheduler` and bound the cluster role
0 commit comments