60 lines
1.7 KiB
Text
60 lines
1.7 KiB
Text
|
---
|
||
|
# Source: calico/templates/calico-kube-controllers.yaml
|
||
|
# See https://github.com/projectcalico/kube-controllers
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: calico-kube-controllers
|
||
|
namespace: kube-system
|
||
|
labels:
|
||
|
k8s-app: calico-kube-controllers
|
||
|
spec:
|
||
|
# The controllers can only have a single active instance.
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
k8s-app: calico-kube-controllers
|
||
|
strategy:
|
||
|
type: Recreate
|
||
|
template:
|
||
|
metadata:
|
||
|
name: calico-kube-controllers
|
||
|
namespace: kube-system
|
||
|
labels:
|
||
|
k8s-app: calico-kube-controllers
|
||
|
spec:
|
||
|
nodeSelector:
|
||
|
kubernetes.io/os: linux
|
||
|
tolerations:
|
||
|
# Mark the pod as a critical add-on for rescheduling.
|
||
|
- key: CriticalAddonsOnly
|
||
|
operator: Exists
|
||
|
- key: node-role.kubernetes.io/master
|
||
|
effect: NoSchedule
|
||
|
serviceAccountName: calico-kube-controllers
|
||
|
priorityClassName: system-cluster-critical
|
||
|
containers:
|
||
|
- name: calico-kube-controllers
|
||
|
image: {{ calico_cni_image_repo }}:{{ calico_cni_image_tag }}
|
||
|
env:
|
||
|
# Choose which controllers to run.
|
||
|
- name: ENABLED_CONTROLLERS
|
||
|
value: node
|
||
|
- name: DATASTORE_TYPE
|
||
|
value: kubernetes
|
||
|
livenessProbe:
|
||
|
exec:
|
||
|
command:
|
||
|
- /usr/bin/check-status
|
||
|
- -l
|
||
|
periodSeconds: 10
|
||
|
initialDelaySeconds: 10
|
||
|
failureThreshold: 6
|
||
|
timeoutSeconds: 10
|
||
|
readinessProbe:
|
||
|
exec:
|
||
|
command:
|
||
|
- /usr/bin/check-status
|
||
|
- -r
|
||
|
periodSeconds: 10
|