2016-11-03 15:57:11 +00:00
|
|
|
---
|
|
|
|
kind: DaemonSet
|
|
|
|
apiVersion: extensions/v1beta1
|
|
|
|
metadata:
|
|
|
|
name: canal-node
|
|
|
|
labels:
|
|
|
|
k8s-app: canal-node
|
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
k8s-app: canal-node
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
annotations:
|
|
|
|
scheduler.alpha.kubernetes.io/critical-pod: ''
|
|
|
|
scheduler.alpha.kubernetes.io/tolerations: '[{"key":"CriticalAddonsOnly", "operator":"Exists"}]'
|
|
|
|
labels:
|
|
|
|
k8s-app: canal-node
|
|
|
|
spec:
|
|
|
|
hostNetwork: true
|
|
|
|
volumes:
|
|
|
|
# Used by calico/node.
|
|
|
|
- name: lib-modules
|
|
|
|
hostPath:
|
|
|
|
path: /lib/modules
|
|
|
|
- name: var-run-calico
|
|
|
|
hostPath:
|
|
|
|
path: /var/run/calico
|
|
|
|
# Used to install CNI.
|
|
|
|
- name: cni-bin-dir
|
|
|
|
hostPath:
|
|
|
|
path: /opt/cni/bin
|
|
|
|
- name: cni-net-dir
|
|
|
|
hostPath:
|
|
|
|
path: /etc/cni/net.d
|
|
|
|
# Used by flannel daemon.
|
|
|
|
- name: run-flannel
|
|
|
|
hostPath:
|
|
|
|
path: /run/flannel
|
|
|
|
- name: resolv
|
|
|
|
hostPath:
|
|
|
|
path: /etc/resolv.conf
|
2016-11-14 12:03:54 +00:00
|
|
|
- name: "canal-certs"
|
|
|
|
hostPath:
|
|
|
|
path: "{{ canal_cert_dir }}"
|
2016-11-03 15:57:11 +00:00
|
|
|
containers:
|
|
|
|
# Runs the flannel daemon to enable vxlan networking between
|
|
|
|
# container hosts.
|
|
|
|
- name: flannel
|
|
|
|
image: "{{ flannel_image_repo }}:{{ flannel_image_tag }}"
|
2016-11-22 15:16:04 +00:00
|
|
|
imagePullPolicy: {{ k8s_image_pull_policy }}
|
2016-11-03 15:57:11 +00:00
|
|
|
env:
|
2016-11-08 11:13:20 +00:00
|
|
|
# Cluster name
|
|
|
|
- name: CLUSTER_NAME
|
|
|
|
valueFrom:
|
|
|
|
configMapKeyRef:
|
|
|
|
name: canal-config
|
|
|
|
key: cluster_name
|
2016-11-03 15:57:11 +00:00
|
|
|
# The location of the etcd cluster.
|
|
|
|
- name: FLANNELD_ETCD_ENDPOINTS
|
2016-11-08 11:13:20 +00:00
|
|
|
valueFrom:
|
|
|
|
configMapKeyRef:
|
|
|
|
name: canal-config
|
|
|
|
key: etcd_endpoints
|
2016-11-03 15:57:11 +00:00
|
|
|
# The interface flannel should run on.
|
|
|
|
- name: FLANNELD_IFACE
|
2016-11-08 11:13:20 +00:00
|
|
|
valueFrom:
|
|
|
|
configMapKeyRef:
|
|
|
|
name: canal-config
|
|
|
|
key: flanneld_iface
|
2016-11-03 15:57:11 +00:00
|
|
|
# Perform masquerade on traffic leaving the pod cidr.
|
|
|
|
- name: FLANNELD_IP_MASQ
|
2016-11-08 11:13:20 +00:00
|
|
|
valueFrom:
|
|
|
|
configMapKeyRef:
|
|
|
|
name: canal-config
|
|
|
|
key: masquerade
|
|
|
|
# Set etcd-prefix
|
|
|
|
- name: DOCKER_OPT_ETCD_PREFIX
|
|
|
|
value: "-etcd-prefix=/$(CLUSTER_NAME)/network"
|
2016-11-03 15:57:11 +00:00
|
|
|
# Write the subnet.env file to the mounted directory.
|
|
|
|
- name: FLANNELD_SUBNET_FILE
|
|
|
|
value: "/run/flannel/subnet.env"
|
2016-11-14 12:03:54 +00:00
|
|
|
# Etcd SSL vars
|
|
|
|
- name: ETCD_CA_CERT_FILE
|
|
|
|
valueFrom:
|
|
|
|
configMapKeyRef:
|
|
|
|
name: canal-config
|
|
|
|
key: etcd_cafile
|
|
|
|
- name: ETCD_CERT_FILE
|
|
|
|
valueFrom:
|
|
|
|
configMapKeyRef:
|
|
|
|
name: canal-config
|
|
|
|
key: etcd_certfile
|
|
|
|
- name: ETCD_KEY_FILE
|
|
|
|
valueFrom:
|
|
|
|
configMapKeyRef:
|
|
|
|
name: canal-config
|
|
|
|
key: etcd_keyfile
|
2016-11-03 15:57:11 +00:00
|
|
|
command:
|
|
|
|
- "/bin/sh"
|
|
|
|
- "-c"
|
2016-11-14 12:03:54 +00:00
|
|
|
- "/opt/bin/flanneld -etcd-prefix /$(CLUSTER_NAME)/network -etcd-cafile $(ETCD_CA_CERT_FILE) -etcd-certfile $(ETCD_CERT_FILE) -etcd-keyfile $(ETCD_KEY_FILE)"
|
2016-11-03 15:57:11 +00:00
|
|
|
ports:
|
|
|
|
- hostPort: 10253
|
|
|
|
containerPort: 10253
|
|
|
|
securityContext:
|
|
|
|
privileged: true
|
|
|
|
volumeMounts:
|
|
|
|
- name: "resolv"
|
|
|
|
mountPath: "/etc/resolv.conf"
|
|
|
|
- name: "run-flannel"
|
|
|
|
mountPath: "/run/flannel"
|
2016-11-14 12:03:54 +00:00
|
|
|
- name: "canal-certs"
|
|
|
|
mountPath: "{{ canal_cert_dir }}"
|
2016-11-15 10:18:53 +00:00
|
|
|
readOnly: true
|
2016-11-03 15:57:11 +00:00
|
|
|
# Runs calico/node container on each Kubernetes node. This
|
|
|
|
# container programs network policy and local routes on each
|
|
|
|
# host.
|
|
|
|
- name: calico-node
|
|
|
|
image: "{{ calico_node_image_repo }}:{{ calico_node_image_tag }}"
|
2016-11-22 15:16:04 +00:00
|
|
|
imagePullPolicy: {{ k8s_image_pull_policy }}
|
2016-11-03 15:57:11 +00:00
|
|
|
env:
|
|
|
|
# The location of the etcd cluster.
|
|
|
|
- name: ETCD_ENDPOINTS
|
2016-11-08 11:13:20 +00:00
|
|
|
valueFrom:
|
|
|
|
configMapKeyRef:
|
|
|
|
name: canal-config
|
|
|
|
key: etcd_endpoints
|
2016-11-03 15:57:11 +00:00
|
|
|
# Disable Calico BGP. Calico is simply enforcing policy.
|
|
|
|
- name: CALICO_NETWORKING
|
|
|
|
value: "false"
|
|
|
|
# Disable file logging so `kubectl logs` works.
|
|
|
|
- name: CALICO_DISABLE_FILE_LOGGING
|
|
|
|
value: "true"
|
2016-11-14 12:03:54 +00:00
|
|
|
# Etcd SSL vars
|
|
|
|
- name: ETCD_CA_CERT_FILE
|
|
|
|
valueFrom:
|
|
|
|
configMapKeyRef:
|
|
|
|
name: canal-config
|
|
|
|
key: etcd_cafile
|
|
|
|
- name: ETCD_CERT_FILE
|
|
|
|
valueFrom:
|
|
|
|
configMapKeyRef:
|
|
|
|
name: canal-config
|
|
|
|
key: etcd_certfile
|
|
|
|
- name: ETCD_KEY_FILE
|
|
|
|
valueFrom:
|
|
|
|
configMapKeyRef:
|
|
|
|
name: canal-config
|
|
|
|
key: etcd_keyfile
|
2016-11-03 15:57:11 +00:00
|
|
|
securityContext:
|
|
|
|
privileged: true
|
|
|
|
volumeMounts:
|
|
|
|
- mountPath: /lib/modules
|
|
|
|
name: lib-modules
|
|
|
|
readOnly: true
|
|
|
|
- mountPath: /var/run/calico
|
|
|
|
name: var-run-calico
|
|
|
|
readOnly: false
|
2016-11-14 12:03:54 +00:00
|
|
|
- name: "canal-certs"
|
|
|
|
mountPath: "{{ canal_cert_dir }}"
|
2016-11-15 10:18:53 +00:00
|
|
|
readOnly: true
|