sdn.yaml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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.10"},"fieldPath":"spec.template.spec.containers[?(@.name==\"sdn\")].image"}
  13. ]
  14. spec:
  15. selector:
  16. matchLabels:
  17. app: sdn
  18. updateStrategy:
  19. type: RollingUpdate
  20. template:
  21. metadata:
  22. labels:
  23. app: sdn
  24. component: network
  25. type: infra
  26. openshift.io/component: network
  27. annotations:
  28. scheduler.alpha.kubernetes.io/critical-pod: ''
  29. spec:
  30. # Requires fairly broad permissions - ability to read all services and network functions as well
  31. # as all pods.
  32. serviceAccountName: sdn
  33. hostNetwork: true
  34. containers:
  35. # The network container launches the openshift-sdn process, the kube-proxy, and the local DNS service.
  36. # It relies on an up to date node-config.yaml being present.
  37. - name: sdn
  38. image: " "
  39. command:
  40. - /bin/bash
  41. - -c
  42. - |
  43. #!/bin/bash
  44. set -euo pipefail
  45. # Take over network functions on the node
  46. rm -Rf /etc/cni/net.d/*
  47. rm -Rf /host/opt/cni/bin/*
  48. cp -Rf /opt/cni/bin/* /host/opt/cni/bin/
  49. if [[ -f /etc/sysconfig/origin-node ]]; then
  50. set -o allexport
  51. source /etc/sysconfig/origin-node
  52. fi
  53. # use either the bootstrapped node kubeconfig or the static configuration
  54. file=/etc/origin/node/node.kubeconfig
  55. if [[ ! -f "${file}" ]]; then
  56. # use the static node config if it exists
  57. # TODO: remove when static node configuration is no longer supported
  58. for f in /etc/origin/node/system*.kubeconfig; do
  59. echo "info: Using ${f} for node configuration" 1>&2
  60. file="${f}"
  61. break
  62. done
  63. fi
  64. # Use the same config as the node, but with the service account token
  65. oc config "--config=${file}" view --flatten > /tmp/kubeconfig
  66. oc config --config=/tmp/kubeconfig set-credentials sa "--token=$( cat /var/run/secrets/kubernetes.io/serviceaccount/token )"
  67. oc config --config=/tmp/kubeconfig set-context "$( oc config --config=/tmp/kubeconfig current-context )" --user=sa
  68. # Launch the network process
  69. exec openshift start network --config=/etc/origin/node/node-config.yaml --kubeconfig=/tmp/kubeconfig --loglevel=${DEBUG_LOGLEVEL:-2}
  70. securityContext:
  71. runAsUser: 0
  72. # Permission could be reduced by selecting an appropriate SELinux policy
  73. privileged: true
  74. volumeMounts:
  75. # Directory which contains the host configuration.
  76. - mountPath: /etc/origin/node/
  77. name: host-config
  78. readOnly: true
  79. - mountPath: /etc/sysconfig/origin-node
  80. name: host-sysconfig-node
  81. readOnly: true
  82. # Run directories where we need to be able to access sockets
  83. - mountPath: /var/run/dbus/
  84. name: host-var-run-dbus
  85. readOnly: true
  86. - mountPath: /var/run/openvswitch/
  87. name: host-var-run-ovs
  88. readOnly: true
  89. - mountPath: /var/run/kubernetes/
  90. name: host-var-run-kubernetes
  91. readOnly: true
  92. # We mount our socket here
  93. - mountPath: /var/run/openshift-sdn
  94. name: host-var-run-openshift-sdn
  95. # CNI related mounts which we take over
  96. - mountPath: /host/opt/cni/bin
  97. name: host-opt-cni-bin
  98. - mountPath: /etc/cni/net.d
  99. name: host-etc-cni-netd
  100. - mountPath: /var/lib/cni/networks/openshift-sdn
  101. name: host-var-lib-cni-networks-openshift-sdn
  102. resources:
  103. requests:
  104. cpu: 100m
  105. memory: 200Mi
  106. env:
  107. - name: OPENSHIFT_DNS_DOMAIN
  108. value: cluster.local
  109. ports:
  110. - name: healthz
  111. containerPort: 10256
  112. livenessProbe:
  113. initialDelaySeconds: 10
  114. httpGet:
  115. path: /healthz
  116. port: 10256
  117. scheme: HTTP
  118. lifecycle:
  119. volumes:
  120. # In bootstrap mode, the host config contains information not easily available
  121. # from other locations.
  122. - name: host-config
  123. hostPath:
  124. path: /etc/origin/node
  125. - name: host-sysconfig-node
  126. hostPath:
  127. path: /etc/sysconfig/origin-node
  128. - name: host-modules
  129. hostPath:
  130. path: /lib/modules
  131. - name: host-var-run-ovs
  132. hostPath:
  133. path: /var/run/openvswitch
  134. - name: host-var-run-kubernetes
  135. hostPath:
  136. path: /var/run/kubernetes
  137. - name: host-var-run-dbus
  138. hostPath:
  139. path: /var/run/dbus
  140. - name: host-var-run-openshift-sdn
  141. hostPath:
  142. path: /var/run/openshift-sdn
  143. - name: host-opt-cni-bin
  144. hostPath:
  145. path: /opt/cni/bin
  146. - name: host-etc-cni-netd
  147. hostPath:
  148. path: /etc/cni/net.d
  149. - name: host-var-lib-cni-networks-openshift-sdn
  150. hostPath:
  151. path: /var/lib/cni/networks/openshift-sdn