2015-12-11 10:52:20 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Pod
|
|
|
|
metadata:
|
|
|
|
name: kube-scheduler
|
2017-06-27 04:27:25 +00:00
|
|
|
namespace: {{ system_namespace }}
|
2016-11-09 13:15:27 +00:00
|
|
|
labels:
|
|
|
|
k8s-app: kube-scheduler
|
2017-09-01 06:02:23 +00:00
|
|
|
annotations:
|
|
|
|
kubespray.scheduler-cert/serial: "{{ scheduler_cert_serial }}"
|
2015-12-11 10:52:20 +00:00
|
|
|
spec:
|
|
|
|
hostNetwork: true
|
2017-03-28 14:33:07 +00:00
|
|
|
{% if kube_version | version_compare('v1.6', '>=') %}
|
2017-04-20 09:07:34 +00:00
|
|
|
dnsPolicy: ClusterFirst
|
2017-03-28 14:33:07 +00:00
|
|
|
{% endif %}
|
2015-12-11 10:52:20 +00:00
|
|
|
containers:
|
|
|
|
- name: kube-scheduler
|
2015-12-14 08:54:58 +00:00
|
|
|
image: {{ hyperkube_image_repo }}:{{ hyperkube_image_tag }}
|
2016-11-22 15:16:04 +00:00
|
|
|
imagePullPolicy: {{ k8s_image_pull_policy }}
|
2016-12-23 14:44:44 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: {{ kube_scheduler_cpu_limit }}
|
|
|
|
memory: {{ kube_scheduler_memory_limit }}
|
|
|
|
requests:
|
|
|
|
cpu: {{ kube_scheduler_cpu_requests }}
|
|
|
|
memory: {{ kube_scheduler_memory_requests }}
|
2015-12-11 10:52:20 +00:00
|
|
|
command:
|
|
|
|
- /hyperkube
|
|
|
|
- scheduler
|
2016-03-21 21:25:09 +00:00
|
|
|
- --leader-elect=true
|
2017-06-27 04:27:25 +00:00
|
|
|
- --kubeconfig={{ kube_config_dir }}/kube-scheduler-kubeconfig.yaml
|
2018-01-23 13:14:00 +00:00
|
|
|
{% if volume_cross_zone_attachment %}
|
2018-01-12 07:07:02 +00:00
|
|
|
- --policy-config-file={{ kube_config_dir }}/kube-scheduler-policy.yaml
|
|
|
|
{% endif %}
|
2017-10-15 19:41:17 +00:00
|
|
|
- --profiling=false
|
2016-11-25 10:33:39 +00:00
|
|
|
- --v={{ kube_log_level }}
|
2017-08-24 20:18:38 +00:00
|
|
|
{% if kube_feature_gates %}
|
|
|
|
- --feature-gates={{ kube_feature_gates|join(',') }}
|
|
|
|
{% endif %}
|
2017-04-17 15:09:34 +00:00
|
|
|
{% if scheduler_custom_flags is string %}
|
|
|
|
- {{ scheduler_custom_flags }}
|
2017-04-17 16:24:24 +00:00
|
|
|
{% else %}
|
2017-04-17 15:09:34 +00:00
|
|
|
{% for flag in scheduler_custom_flags %}
|
2017-04-14 21:33:04 +00:00
|
|
|
- {{ flag }}
|
2017-04-17 15:09:34 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2015-12-11 10:52:20 +00:00
|
|
|
livenessProbe:
|
|
|
|
httpGet:
|
|
|
|
host: 127.0.0.1
|
|
|
|
path: /healthz
|
|
|
|
port: 10251
|
2016-02-01 12:41:49 +00:00
|
|
|
initialDelaySeconds: 30
|
|
|
|
timeoutSeconds: 10
|
2017-06-27 04:27:25 +00:00
|
|
|
volumeMounts:
|
2017-08-30 19:41:09 +00:00
|
|
|
- mountPath: /etc/ssl
|
2017-06-27 04:27:25 +00:00
|
|
|
name: ssl-certs-host
|
|
|
|
readOnly: true
|
2017-08-30 19:41:09 +00:00
|
|
|
{% for dir in ssl_ca_dirs %}
|
|
|
|
- mountPath: {{ dir }}
|
|
|
|
name: {{ dir | regex_replace('^/(.*)$', '\\1' ) | regex_replace('/', '-') }}
|
|
|
|
readOnly: true
|
|
|
|
{% endfor %}
|
2017-06-27 04:27:25 +00:00
|
|
|
- mountPath: "{{ kube_config_dir }}/ssl"
|
|
|
|
name: etc-kube-ssl
|
|
|
|
readOnly: true
|
|
|
|
- mountPath: "{{ kube_config_dir }}/kube-scheduler-kubeconfig.yaml"
|
|
|
|
name: kubeconfig
|
|
|
|
readOnly: true
|
2018-01-23 13:14:00 +00:00
|
|
|
{% if volume_cross_zone_attachment %}
|
2018-01-12 07:07:02 +00:00
|
|
|
- mountPath: "{{ kube_config_dir }}/kube-scheduler-policy.yaml"
|
|
|
|
name: kube-scheduler-policy
|
|
|
|
readOnly: true
|
|
|
|
{% endif %}
|
2017-06-27 04:27:25 +00:00
|
|
|
volumes:
|
|
|
|
- name: ssl-certs-host
|
|
|
|
hostPath:
|
2017-08-30 19:41:09 +00:00
|
|
|
path: /etc/ssl
|
|
|
|
{% for dir in ssl_ca_dirs %}
|
|
|
|
- name: {{ dir | regex_replace('^/(.*)$', '\\1' ) | regex_replace('/', '-') }}
|
|
|
|
hostPath:
|
|
|
|
path: {{ dir }}
|
|
|
|
{% endfor %}
|
2017-06-27 04:27:25 +00:00
|
|
|
- name: etc-kube-ssl
|
|
|
|
hostPath:
|
|
|
|
path: "{{ kube_config_dir }}/ssl"
|
|
|
|
- name: kubeconfig
|
|
|
|
hostPath:
|
|
|
|
path: "{{ kube_config_dir }}/kube-scheduler-kubeconfig.yaml"
|
2018-01-23 13:14:00 +00:00
|
|
|
{% if volume_cross_zone_attachment %}
|
2018-01-12 07:07:02 +00:00
|
|
|
- name: kube-scheduler-policy
|
|
|
|
hostPath:
|
|
|
|
path: "{{ kube_config_dir }}/kube-scheduler-policy.yaml"
|
|
|
|
{% endif %}
|