2015-12-11 10:52:20 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Pod
|
|
|
|
metadata:
|
|
|
|
name: kube-controller-manager
|
|
|
|
namespace: kube-system
|
|
|
|
spec:
|
|
|
|
hostNetwork: true
|
|
|
|
containers:
|
|
|
|
- name: kube-controller-manager
|
2015-12-14 08:54:58 +00:00
|
|
|
image: {{ hyperkube_image_repo }}:{{ hyperkube_image_tag }}
|
2015-12-11 10:52:20 +00:00
|
|
|
command:
|
|
|
|
- /hyperkube
|
|
|
|
- controller-manager
|
2015-12-16 16:43:26 +00:00
|
|
|
- --master=http://127.0.0.1:{{kube_apiserver_insecure_port}}
|
2015-12-11 10:52:20 +00:00
|
|
|
- --service-account-private-key-file={{ kube_cert_dir }}/apiserver-key.pem
|
|
|
|
- --root-ca-file={{ kube_cert_dir }}/ca.pem
|
|
|
|
- --v={{ kube_log_level | default('2') }}
|
|
|
|
livenessProbe:
|
|
|
|
httpGet:
|
|
|
|
host: 127.0.0.1
|
|
|
|
path: /healthz
|
|
|
|
port: 10252
|
|
|
|
initialDelaySeconds: 15
|
|
|
|
timeoutSeconds: 1
|
|
|
|
volumeMounts:
|
|
|
|
- mountPath: {{ kube_cert_dir }}
|
|
|
|
name: ssl-certs-kubernetes
|
|
|
|
readOnly: true
|
|
|
|
- mountPath: /etc/ssl/certs
|
|
|
|
name: ssl-certs-host
|
|
|
|
readOnly: true
|
|
|
|
volumes:
|
|
|
|
- hostPath:
|
|
|
|
path: {{ kube_cert_dir }}
|
|
|
|
name: ssl-certs-kubernetes
|
|
|
|
- hostPath:
|
|
|
|
path: /usr/share/ca-certificates
|
|
|
|
name: ssl-certs-host
|