Merge pull request #27900 from wangyysde/fix-27816

fix example for customizing the control plane with scheduler flags
This commit is contained in:
Kubernetes Prow Robot
2021-05-11 15:57:38 -07:00
committed by GitHub
@@ -78,9 +78,13 @@ kind: ClusterConfiguration
kubernetesVersion: v1.16.0
scheduler:
extraArgs:
bind-address: 0.0.0.0
config: /home/johndoe/schedconfig.yaml
kubeconfig: /home/johndoe/kubeconfig.yaml
config: /etc/kubernetes/scheduler-config.yaml
extraVolumes:
- name: schedulerconfig
hostPath: /home/johndoe/schedconfig.yaml
mountPath: /etc/kubernetes/scheduler-config.yaml
readOnly: true
pathType: "File"
```