File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
content/en/docs/tasks/extend-kubernetes Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ 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 initialization via its ` --config ` command line argument.
76
+ the ` kube-scheduler ` during its initialization via ` --config ` command line argument.
77
77
78
78
In the aforementioned Scheduler Configuration, your scheduler implementation has been represented via
79
79
a [ KubeSchedulerProfile] ( /docs/reference/config-api/kube-scheduler-config.v1beta2/#kubescheduler-config-k8s-io-v1beta2-KubeSchedulerProfile ) .
@@ -177,8 +177,8 @@ scheduler in that pod spec. Let's look at three examples.
177
177
{{< codenew file="admin/sched/pod3.yaml" >}}
178
178
179
179
In this case, we specify that this pod should be scheduled using the scheduler that we
180
- deployed - ` my-scheduler ` . Note that the value of ` spec.schedulerName ` should match the name supplied to the scheduler
181
- command as an argument in the deployment config for the scheduler.
180
+ deployed - ` my-scheduler ` . Note that the value of ` spec.schedulerName ` should match the name supplied for the scheduler
181
+ in the ` schedulerName ` field of the mapping ` KubeSchedulerProfile ` of the scheduler.
182
182
183
183
Save this file as ` pod3.yaml ` and submit it to the Kubernetes cluster.
184
184
You can’t perform that action at this time.
0 commit comments