Renamed variable from disable_volume_zone_conflict to volume_cross_zone_attachment and removed cloud provider condition; fix identation
parent
3125f93b3f
commit
a4d142368b
|
@ -183,4 +183,4 @@ local_volumes_enabled: false
|
||||||
## Running on top of openstack vms with cinder enabled may lead to unschedulable pods due to NoVolumeZoneConflict restriction in kube-scheduler.
|
## Running on top of openstack vms with cinder enabled may lead to unschedulable pods due to NoVolumeZoneConflict restriction in kube-scheduler.
|
||||||
## See https://github.com/kubernetes-incubator/kubespray/issues/2141
|
## See https://github.com/kubernetes-incubator/kubespray/issues/2141
|
||||||
## Set this variable to true to get rid of this issue
|
## Set this variable to true to get rid of this issue
|
||||||
disable_volume_zone_conflict: false
|
volume_cross_zone_attachment: false
|
||||||
|
|
|
@ -82,4 +82,4 @@ scheduler_custom_flags: []
|
||||||
kubeadm_token_ttl: 0
|
kubeadm_token_ttl: 0
|
||||||
|
|
||||||
## Variable for influencing kube-scheduler behaviour
|
## Variable for influencing kube-scheduler behaviour
|
||||||
disable_volume_zone_conflict: false
|
volume_cross_zone_attachment: false
|
||||||
|
|
|
@ -28,7 +28,7 @@ spec:
|
||||||
- scheduler
|
- scheduler
|
||||||
- --leader-elect=true
|
- --leader-elect=true
|
||||||
- --kubeconfig={{ kube_config_dir }}/kube-scheduler-kubeconfig.yaml
|
- --kubeconfig={{ kube_config_dir }}/kube-scheduler-kubeconfig.yaml
|
||||||
{% if cloud_provider == 'openstack' and disable_volume_zone_conflict %}
|
{% if volume_cross_zone_attachment %}
|
||||||
- --policy-config-file={{ kube_config_dir }}/kube-scheduler-policy.yaml
|
- --policy-config-file={{ kube_config_dir }}/kube-scheduler-policy.yaml
|
||||||
{% endif %}
|
{% endif %}
|
||||||
- --profiling=false
|
- --profiling=false
|
||||||
|
@ -65,7 +65,7 @@ spec:
|
||||||
- mountPath: "{{ kube_config_dir }}/kube-scheduler-kubeconfig.yaml"
|
- mountPath: "{{ kube_config_dir }}/kube-scheduler-kubeconfig.yaml"
|
||||||
name: kubeconfig
|
name: kubeconfig
|
||||||
readOnly: true
|
readOnly: true
|
||||||
{% if cloud_provider == 'openstack' and disable_volume_zone_conflict %}
|
{% if volume_cross_zone_attachment %}
|
||||||
- mountPath: "{{ kube_config_dir }}/kube-scheduler-policy.yaml"
|
- mountPath: "{{ kube_config_dir }}/kube-scheduler-policy.yaml"
|
||||||
name: kube-scheduler-policy
|
name: kube-scheduler-policy
|
||||||
readOnly: true
|
readOnly: true
|
||||||
|
@ -85,7 +85,7 @@ spec:
|
||||||
- name: kubeconfig
|
- name: kubeconfig
|
||||||
hostPath:
|
hostPath:
|
||||||
path: "{{ kube_config_dir }}/kube-scheduler-kubeconfig.yaml"
|
path: "{{ kube_config_dir }}/kube-scheduler-kubeconfig.yaml"
|
||||||
{% if cloud_provider == 'openstack' and disable_volume_zone_conflict %}
|
{% if volume_cross_zone_attachment %}
|
||||||
- name: kube-scheduler-policy
|
- name: kube-scheduler-policy
|
||||||
hostPath:
|
hostPath:
|
||||||
path: "{{ kube_config_dir }}/kube-scheduler-policy.yaml"
|
path: "{{ kube_config_dir }}/kube-scheduler-policy.yaml"
|
||||||
|
|
Loading…
Reference in New Issue