2015-12-11 10:52:20 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Pod
|
|
|
|
metadata:
|
|
|
|
name: kube-controller-manager
|
2016-12-13 10:43:06 +00:00
|
|
|
namespace: {{system_namespace}}
|
2016-11-09 13:15:27 +00:00
|
|
|
labels:
|
|
|
|
k8s-app: kube-controller
|
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-03-28 14:33:07 +00:00
|
|
|
dnsPolicy: ClusterFirstWithHostNet
|
2017-03-28 14:33:07 +00:00
|
|
|
{% endif %}
|
2015-12-11 10:52:20 +00:00
|
|
|
containers:
|
|
|
|
- name: kube-controller-manager
|
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_controller_cpu_limit }}
|
|
|
|
memory: {{ kube_controller_memory_limit }}
|
|
|
|
requests:
|
|
|
|
cpu: {{ kube_controller_cpu_requests }}
|
|
|
|
memory: {{ kube_controller_memory_requests }}
|
2015-12-11 10:52:20 +00:00
|
|
|
command:
|
|
|
|
- /hyperkube
|
|
|
|
- controller-manager
|
2016-07-13 15:13:47 +00:00
|
|
|
- --master={{ kube_apiserver_endpoint }}
|
2016-03-21 21:25:09 +00:00
|
|
|
- --leader-elect=true
|
2017-01-13 11:03:20 +00:00
|
|
|
- --service-account-private-key-file={{ kube_cert_dir }}/apiserver-key.pem
|
2015-12-11 10:52:20 +00:00
|
|
|
- --root-ca-file={{ kube_cert_dir }}/ca.pem
|
2016-12-07 09:09:04 +00:00
|
|
|
- --cluster-signing-cert-file={{ kube_cert_dir }}/ca.pem
|
|
|
|
- --cluster-signing-key-file={{ kube_cert_dir }}/ca-key.pem
|
2016-07-08 14:45:34 +00:00
|
|
|
- --enable-hostpath-provisioner={{ kube_hostpath_dynamic_provisioner }}
|
2017-02-07 14:01:02 +00:00
|
|
|
- --node-monitor-grace-period={{ kube_controller_node_monitor_grace_period }}
|
|
|
|
- --node-monitor-period={{ kube_controller_node_monitor_period }}
|
|
|
|
- --pod-eviction-timeout={{ kube_controller_pod_eviction_timeout }}
|
2016-11-25 10:33:39 +00:00
|
|
|
- --v={{ kube_log_level }}
|
2017-02-17 03:59:40 +00:00
|
|
|
{% if cloud_provider is defined and cloud_provider in ["openstack", "azure", "vsphere"] %}
|
2016-08-23 16:42:22 +00:00
|
|
|
- --cloud-provider={{cloud_provider}}
|
2016-03-31 12:38:08 +00:00
|
|
|
- --cloud-config={{ kube_config_dir }}/cloud_config
|
2016-08-24 13:48:32 +00:00
|
|
|
{% elif cloud_provider is defined and cloud_provider == "aws" %}
|
2016-08-23 16:42:22 +00:00
|
|
|
- --cloud-provider={{cloud_provider}}
|
2016-12-07 16:41:53 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if kube_network_plugin is defined and kube_network_plugin == 'cloud' %}
|
|
|
|
- --allocate-node-cidrs=true
|
|
|
|
- --configure-cloud-routes=true
|
|
|
|
- --cluster-cidr={{ kube_pods_subnet }}
|
2016-03-31 12:38:08 +00:00
|
|
|
{% endif %}
|
2017-04-17 15:09:34 +00:00
|
|
|
{% if controller_mgr_custom_flags is string %}
|
|
|
|
- {{ controller_mgr_custom_flags }}
|
2017-04-17 16:13:39 +00:00
|
|
|
{% else %}
|
2017-04-17 15:09:34 +00:00
|
|
|
{% for flag in controller_mgr_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: 10252
|
2016-02-01 12:41:49 +00:00
|
|
|
initialDelaySeconds: 30
|
|
|
|
timeoutSeconds: 10
|
2015-12-11 10:52:20 +00:00
|
|
|
volumeMounts:
|
|
|
|
- mountPath: {{ kube_cert_dir }}
|
|
|
|
name: ssl-certs-kubernetes
|
|
|
|
readOnly: true
|
2017-02-17 03:59:40 +00:00
|
|
|
{% if cloud_provider is defined and cloud_provider in ["openstack", "azure", "vsphere" ] %}
|
2016-03-31 12:38:08 +00:00
|
|
|
- mountPath: {{ kube_config_dir }}/cloud_config
|
|
|
|
name: cloudconfig
|
|
|
|
readOnly: true
|
|
|
|
{% endif %}
|
2015-12-11 10:52:20 +00:00
|
|
|
volumes:
|
|
|
|
- hostPath:
|
|
|
|
path: {{ kube_cert_dir }}
|
|
|
|
name: ssl-certs-kubernetes
|
2017-02-17 03:59:40 +00:00
|
|
|
{% if cloud_provider is defined and cloud_provider in ["openstack", "azure", "vsphere"] %}
|
2016-03-31 12:38:08 +00:00
|
|
|
- hostPath:
|
|
|
|
path: {{ kube_config_dir }}/cloud_config
|
|
|
|
name: cloudconfig
|
|
|
|
{% endif %}
|