2016-10-10 14:09:50 +00:00
|
|
|
apiVersion: extensions/v1beta1
|
|
|
|
kind: ReplicaSet
|
|
|
|
metadata:
|
|
|
|
name: calico-policy-controller
|
2016-12-13 10:43:06 +00:00
|
|
|
namespace: {{ system_namespace }}
|
2016-10-10 14:09:50 +00:00
|
|
|
labels:
|
|
|
|
k8s-app: calico-policy
|
|
|
|
kubernetes.io/cluster-service: "true"
|
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
kubernetes.io/cluster-service: "true"
|
|
|
|
k8s-app: calico-policy
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
name: calico-policy-controller
|
2016-12-13 10:43:06 +00:00
|
|
|
namespace: {{system_namespace}}
|
2016-10-10 14:09:50 +00:00
|
|
|
labels:
|
|
|
|
kubernetes.io/cluster-service: "true"
|
|
|
|
k8s-app: calico-policy
|
|
|
|
spec:
|
|
|
|
hostNetwork: true
|
2017-08-24 09:04:25 +00:00
|
|
|
tolerations:
|
|
|
|
- effect: NoSchedule
|
|
|
|
operator: Exists
|
2016-10-10 14:09:50 +00:00
|
|
|
containers:
|
|
|
|
- name: calico-policy-controller
|
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 }}
|
2016-10-10 14:09:50 +00:00
|
|
|
env:
|
|
|
|
- name: ETCD_ENDPOINTS
|
2016-11-09 10:31:12 +00:00
|
|
|
value: "{{ etcd_access_endpoint }}"
|
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-10-10 14:09:50 +00:00
|
|
|
# Location of the Kubernetes API - this shouldn't need to be
|
|
|
|
# changed so long as it is used in conjunction with
|
|
|
|
# CONFIGURE_ETC_HOSTS="true".
|
|
|
|
- name: K8S_API
|
2017-03-13 15:04:31 +00:00
|
|
|
value: "https://kubernetes.default"
|
2016-10-10 14:09:50 +00:00
|
|
|
# Configure /etc/hosts within the container to resolve
|
|
|
|
# the kubernetes.default Service to the correct clusterIP
|
|
|
|
# using the environment provided by the kubelet.
|
|
|
|
# This removes the need for KubeDNS to resolve the Service.
|
|
|
|
- name: CONFIGURE_ETC_HOSTS
|
|
|
|
value: "true"
|
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
|