sdn.yaml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. kind: DaemonSet
  2. apiVersion: apps/v1
  3. metadata:
  4. name: sdn
  5. namespace: openshift-sdn
  6. annotations:
  7. kubernetes.io/description: |
  8. This daemon set launches the OpenShift networking components (kube-proxy, DNS, and openshift-sdn).
  9. It expects that OVS is running on the node.
  10. image.openshift.io/triggers: |
  11. [
  12. {"from":{"kind":"ImageStreamTag","name":"node:v3.9"},"fieldPath":"spec.template.spec.containers[?(@.name==\"sync\")].image"},
  13. {"from":{"kind":"ImageStreamTag","name":"node:v3.9"},"fieldPath":"spec.template.spec.containers[?(@.name==\"sdn\")].image"}
  14. ]
  15. spec:
  16. selector:
  17. matchLabels:
  18. app: sdn
  19. updateStrategy:
  20. type: RollingUpdate
  21. template:
  22. metadata:
  23. labels:
  24. app: sdn
  25. component: network
  26. type: infra
  27. openshift.io/component: network
  28. annotations:
  29. scheduler.alpha.kubernetes.io/critical-pod: ''
  30. spec:
  31. # Requires fairly broad permissions - ability to read all services and network functions as well
  32. # as all pods.
  33. serviceAccountName: sdn
  34. hostNetwork: true
  35. # Must be hostPID because it invokes operations on processes in the host space
  36. hostPID: true
  37. containers:
  38. # The sync container is a temporary config loop until Kubelet dynamic config is implemented. It refreshes
  39. # the contents of /etc/origin/node/ with the config map ${BOOTSTRAP_CONFIG_NAME} from the openshift-node
  40. # namespace. It will restart the Kubelet on the host if it detects the node-config.yaml has changed.
  41. #
  42. # 1. Dynamic Kubelet config must pull down a full configmap
  43. # 2. Nodes must relabel themselves https://github.com/kubernetes/kubernetes/issues/59314
  44. #
  45. - name: sync
  46. image: " "
  47. command:
  48. - /bin/bash
  49. - -c
  50. - |
  51. #!/bin/bash
  52. set -euo pipefail
  53. # loop until BOOTSTRAP_CONFIG_NAME is set
  54. set -o allexport
  55. while true; do
  56. if [[ -f /etc/sysconfig/origin-node ]]; then
  57. source /etc/sysconfig/origin-node
  58. if [[ -z "${BOOTSTRAP_CONFIG_NAME-}" ]]; then
  59. echo "info: Waiting for BOOTSTRAP_CONFIG_NAME to be set" 2>&1
  60. sleep 15
  61. continue
  62. fi
  63. break
  64. fi
  65. done
  66. # track the current state of the config
  67. if [[ -f /etc/origin/node/node-config.yaml ]]; then
  68. md5sum /etc/origin/node/node-config.yaml > /tmp/.old
  69. else
  70. touch /tmp/.old
  71. fi
  72. # periodically refresh both node-config.yaml and relabel the node
  73. while true; do
  74. name=${BOOTSTRAP_CONFIG_NAME}
  75. if ! oc extract --config=/etc/origin/node/node.kubeconfig "cm/${BOOTSTRAP_CONFIG_NAME}" -n openshift-node --to=/etc/origin/node --confirm; then
  76. echo "error: Unable to retrieve latest config for node" 2>&1
  77. sleep 15
  78. continue
  79. fi
  80. # detect whether the node-config.yaml has changed, and if so trigger a restart of the kubelet.
  81. md5sum /etc/origin/node/node-config.yaml > /tmp/.new
  82. if [[ "$( cat /tmp/.old )" != "$( cat /tmp/.new )" ]]; then
  83. echo "info: Configuration changed, restarting kubelet" 2>&1
  84. # TODO: kubelet doesn't relabel nodes, best effort for now
  85. # https://github.com/kubernetes/kubernetes/issues/59314
  86. if args="$(openshift start node --write-flags --config /etc/origin/node/node-config.yaml)"; then
  87. labels=' --node-labels=([^ ]+) '
  88. if [[ ${args} =~ ${labels} ]]; then
  89. labels="${BASH_REMATCH[1]//,/ }"
  90. echo "info: Applying node labels $labels" 2>&1
  91. if ! oc label --config=/etc/origin/node/node.kubeconfig "node/${NODE_NAME}" ${labels} --overwrite; then
  92. echo "error: Unable to apply labels, will retry in 10" 2>&1
  93. sleep 10
  94. continue
  95. fi
  96. fi
  97. fi
  98. if ! pgrep -U 0 -f 'hyperkube kubelet ' | xargs kill; then
  99. echo "error: Unable to restart Kubelet" 2>&1
  100. fi
  101. fi
  102. cp -f /tmp/.new /tmp/.old
  103. sleep 180
  104. done
  105. env:
  106. - name: NODE_NAME
  107. valueFrom:
  108. fieldRef:
  109. fieldPath: spec.nodeName
  110. securityContext:
  111. runAsUser: 0
  112. # Permission could be reduced by selecting an appropriate SELinux policy
  113. privileged: true
  114. volumeMounts:
  115. # Directory which contains the host configuration. We write to this directory
  116. - mountPath: /etc/origin/node/
  117. name: host-config
  118. - mountPath: /etc/sysconfig/origin-node
  119. name: host-sysconfig-node
  120. readOnly: true
  121. # The network container launches the openshift-sdn process, the kube-proxy, and the local DNS service.
  122. # It relies on an up to date node-config.yaml being present.
  123. - name: sdn
  124. image: " "
  125. command:
  126. - /bin/bash
  127. - -c
  128. - |
  129. #!/bin/bash
  130. set -euo pipefail
  131. # Take over network functions on the node
  132. rm -Rf /etc/cni/net.d/*
  133. rm -Rf /host/opt/cni/bin/*
  134. cp -Rf /opt/cni/bin/* /host/opt/cni/bin/
  135. if [[ -f /etc/sysconfig/origin-node ]]; then
  136. set -o allexport
  137. source /etc/sysconfig/origin-node
  138. fi
  139. # use either the bootstrapped node kubeconfig or the static configuration
  140. file=/etc/origin/node/node.kubeconfig
  141. if [[ ! -f "${file}" ]]; then
  142. # use the static node config if it exists
  143. # TODO: remove when static node configuration is no longer supported
  144. for f in /etc/origin/node/system*.kubeconfig; do
  145. echo "info: Using ${f} for node configuration" 1>&2
  146. file="${f}"
  147. break
  148. done
  149. fi
  150. # Use the same config as the node, but with the service account token
  151. oc config "--config=${file}" view --flatten > /tmp/kubeconfig
  152. oc config --config=/tmp/kubeconfig set-credentials sa "--token=$( cat /var/run/secrets/kubernetes.io/serviceaccount/token )"
  153. oc config --config=/tmp/kubeconfig set-context "$( oc config --config=/tmp/kubeconfig current-context )" --user=sa
  154. # Launch the network process
  155. exec openshift start network --config=/etc/origin/node/node-config.yaml --kubeconfig=/tmp/kubeconfig --loglevel=${DEBUG_LOGLEVEL:-2}
  156. securityContext:
  157. runAsUser: 0
  158. # Permission could be reduced by selecting an appropriate SELinux policy
  159. privileged: true
  160. volumeMounts:
  161. # Directory which contains the host configuration.
  162. - mountPath: /etc/origin/node/
  163. name: host-config
  164. readOnly: true
  165. - mountPath: /etc/sysconfig/origin-node
  166. name: host-sysconfig-node
  167. readOnly: true
  168. # Run directories where we need to be able to access sockets
  169. - mountPath: /var/run/dbus/
  170. name: host-var-run-dbus
  171. readOnly: true
  172. - mountPath: /var/run/openvswitch/
  173. name: host-var-run-ovs
  174. readOnly: true
  175. - mountPath: /var/run/kubernetes/
  176. name: host-var-run-kubernetes
  177. readOnly: true
  178. # We mount our socket here
  179. - mountPath: /var/run/openshift-sdn
  180. name: host-var-run-openshift-sdn
  181. # CNI related mounts which we take over
  182. - mountPath: /host/opt/cni/bin
  183. name: host-opt-cni-bin
  184. - mountPath: /etc/cni/net.d
  185. name: host-etc-cni-netd
  186. - mountPath: /var/lib/cni/networks/openshift-sdn
  187. name: host-var-lib-cni-networks-openshift-sdn
  188. resources:
  189. requests:
  190. cpu: 100m
  191. memory: 200Mi
  192. env:
  193. - name: OPENSHIFT_DNS_DOMAIN
  194. value: cluster.local
  195. ports:
  196. - name: healthz
  197. containerPort: 10256
  198. livenessProbe:
  199. initialDelaySeconds: 10
  200. httpGet:
  201. path: /healthz
  202. port: 10256
  203. scheme: HTTP
  204. lifecycle:
  205. volumes:
  206. # In bootstrap mode, the host config contains information not easily available
  207. # from other locations.
  208. - name: host-config
  209. hostPath:
  210. path: /etc/origin/node
  211. - name: host-sysconfig-node
  212. hostPath:
  213. path: /etc/sysconfig/origin-node
  214. - name: host-modules
  215. hostPath:
  216. path: /lib/modules
  217. - name: host-var-run-ovs
  218. hostPath:
  219. path: /var/run/openvswitch
  220. - name: host-var-run-kubernetes
  221. hostPath:
  222. path: /var/run/kubernetes
  223. - name: host-var-run-dbus
  224. hostPath:
  225. path: /var/run/dbus
  226. - name: host-var-run-openshift-sdn
  227. hostPath:
  228. path: /var/run/openshift-sdn
  229. - name: host-opt-cni-bin
  230. hostPath:
  231. path: /opt/cni/bin
  232. - name: host-etc-cni-netd
  233. hostPath:
  234. path: /etc/cni/net.d
  235. - name: host-var-lib-cni-networks-openshift-sdn
  236. hostPath:
  237. path: /var/lib/cni/networks/openshift-sdn