2019-01-28 19:03:49 +00:00
|
|
|
apiVersion: apps/v1
|
2017-11-28 12:01:30 +00:00
|
|
|
kind: Deployment
|
2016-10-10 14:09:50 +00:00
|
|
|
metadata:
|
2017-11-28 12:01:30 +00:00
|
|
|
name: calico-kube-controllers
|
2018-03-30 11:29:13 +00:00
|
|
|
namespace: kube-system
|
2016-10-10 14:09:50 +00:00
|
|
|
labels:
|
2017-11-28 12:01:30 +00:00
|
|
|
k8s-app: calico-kube-controllers
|
2016-10-10 14:09:50 +00:00
|
|
|
spec:
|
|
|
|
replicas: 1
|
2018-08-23 14:17:18 +00:00
|
|
|
strategy:
|
2019-01-28 19:03:49 +00:00
|
|
|
type: Recreate
|
2016-10-10 14:09:50 +00:00
|
|
|
selector:
|
|
|
|
matchLabels:
|
2017-11-28 12:01:30 +00:00
|
|
|
k8s-app: calico-kube-controllers
|
2016-10-10 14:09:50 +00:00
|
|
|
template:
|
|
|
|
metadata:
|
2017-11-28 12:01:30 +00:00
|
|
|
name: calico-kube-controllers
|
2018-03-30 11:29:13 +00:00
|
|
|
namespace: kube-system
|
2016-10-10 14:09:50 +00:00
|
|
|
labels:
|
2017-11-28 12:01:30 +00:00
|
|
|
k8s-app: calico-kube-controllers
|
2016-10-10 14:09:50 +00:00
|
|
|
spec:
|
2019-01-28 19:03:49 +00:00
|
|
|
nodeSelector:
|
2021-05-25 20:40:43 +00:00
|
|
|
{{ calico_policy_controller_deployment_nodeselector }}
|
2016-10-10 14:09:50 +00:00
|
|
|
hostNetwork: true
|
2017-11-28 12:01:30 +00:00
|
|
|
serviceAccountName: calico-kube-controllers
|
2017-08-24 09:04:25 +00:00
|
|
|
tolerations:
|
2019-04-17 14:58:06 +00:00
|
|
|
- key: node-role.kubernetes.io/master
|
2019-01-28 19:03:49 +00:00
|
|
|
effect: NoSchedule
|
2021-01-21 16:13:03 +00:00
|
|
|
- key: node-role.kubernetes.io/control-plane
|
|
|
|
effect: NoSchedule
|
2018-09-25 14:50:22 +00:00
|
|
|
priorityClassName: system-cluster-critical
|
2016-10-10 14:09:50 +00:00
|
|
|
containers:
|
2017-11-28 12:01:30 +00:00
|
|
|
- name: calico-kube-controllers
|
2016-11-21 10:20:44 +00:00
|
|
|
image: {{ calico_policy_image_repo }}:{{ calico_policy_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: {{ calico_policy_controller_cpu_limit }}
|
|
|
|
memory: {{ calico_policy_controller_memory_limit }}
|
|
|
|
requests:
|
|
|
|
cpu: {{ calico_policy_controller_cpu_requests }}
|
|
|
|
memory: {{ calico_policy_controller_memory_requests }}
|
2021-05-25 20:40:50 +00:00
|
|
|
{% if calico_version is version('v3.19.0', '>=') %}
|
|
|
|
livenessProbe:
|
|
|
|
exec:
|
|
|
|
command:
|
|
|
|
- /usr/bin/check-status
|
|
|
|
- -l
|
|
|
|
periodSeconds: 10
|
|
|
|
initialDelaySeconds: 10
|
|
|
|
failureThreshold: 6
|
|
|
|
{% endif %}
|
2019-07-09 19:42:28 +00:00
|
|
|
readinessProbe:
|
|
|
|
exec:
|
|
|
|
command:
|
|
|
|
- /usr/bin/check-status
|
|
|
|
- -r
|
2021-05-25 20:40:50 +00:00
|
|
|
periodSeconds: 10
|
2016-10-10 14:09:50 +00:00
|
|
|
env:
|
2020-09-24 16:04:06 +00:00
|
|
|
{% if calico_datastore == "kdd" %}
|
2019-07-09 19:42:28 +00:00
|
|
|
- name: ENABLED_CONTROLLERS
|
|
|
|
value: node
|
|
|
|
- name: DATASTORE_TYPE
|
|
|
|
value: kubernetes
|
|
|
|
{% else %}
|
2016-10-10 14:09:50 +00:00
|
|
|
- name: ETCD_ENDPOINTS
|
2017-10-04 12:27:55 +00:00
|
|
|
value: "{{ etcd_access_addresses }}"
|
2016-11-09 10:44:41 +00:00
|
|
|
- name: ETCD_CA_CERT_FILE
|
2016-12-30 12:47:12 +00:00
|
|
|
value: "{{ calico_cert_dir }}/ca_cert.crt"
|
2016-11-09 10:44:41 +00:00
|
|
|
- name: ETCD_CERT_FILE
|
2016-12-30 12:47:12 +00:00
|
|
|
value: "{{ calico_cert_dir }}/cert.crt"
|
2016-11-09 10:44:41 +00:00
|
|
|
- name: ETCD_KEY_FILE
|
2016-12-30 12:47:12 +00:00
|
|
|
value: "{{ calico_cert_dir }}/key.pem"
|
2016-11-10 12:13:03 +00:00
|
|
|
volumeMounts:
|
2016-12-30 12:47:12 +00:00
|
|
|
- mountPath: {{ calico_cert_dir }}
|
2016-11-10 12:13:03 +00:00
|
|
|
name: etcd-certs
|
|
|
|
readOnly: true
|
|
|
|
volumes:
|
|
|
|
- hostPath:
|
2016-12-30 12:47:12 +00:00
|
|
|
path: {{ calico_cert_dir }}
|
2016-11-10 12:13:03 +00:00
|
|
|
name: etcd-certs
|
2019-07-09 19:42:28 +00:00
|
|
|
{% endif %}
|