sync.yaml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. kind: DaemonSet
  2. apiVersion: apps/v1
  3. metadata:
  4. name: sync
  5. namespace: openshift-node
  6. annotations:
  7. kubernetes.io/description: |
  8. This daemon set provides dynamic configuration of nodes and relabels nodes as appropriate.
  9. image.openshift.io/triggers: |
  10. [
  11. {"from":{"kind":"ImageStreamTag","name":"node:v3.10"},"fieldPath":"spec.template.spec.containers[?(@.name==\"sync\")].image"}
  12. ]
  13. spec:
  14. selector:
  15. matchLabels:
  16. app: sync
  17. updateStrategy:
  18. type: RollingUpdate
  19. template:
  20. metadata:
  21. labels:
  22. app: sync
  23. component: network
  24. type: infra
  25. openshift.io/component: sync
  26. annotations:
  27. scheduler.alpha.kubernetes.io/critical-pod: ''
  28. spec:
  29. serviceAccountName: sync
  30. terminationGracePeriodSeconds: 1
  31. # Must be hostPID because it invokes operations on processes in the host space.
  32. hostPID: true
  33. # Must be hostNetwork in order to schedule before any network plugins are loaded.
  34. hostNetwork: true
  35. containers:
  36. # The sync container is a temporary config loop until Kubelet dynamic config is implemented. It refreshes
  37. # the contents of /etc/origin/node/ with the config map ${BOOTSTRAP_CONFIG_NAME} from the openshift-node
  38. # namespace. It will restart the Kubelet on the host if it detects the node-config.yaml has changed.
  39. #
  40. # 1. Dynamic Kubelet config must pull down a full configmap
  41. # 2. Nodes must relabel themselves https://github.com/kubernetes/kubernetes/issues/59314
  42. #
  43. - name: sync
  44. image: " "
  45. command:
  46. - /bin/bash
  47. - -c
  48. - |
  49. #!/bin/bash
  50. set -euo pipefail
  51. # loop until BOOTSTRAP_CONFIG_NAME is set
  52. set -o allexport
  53. while true; do
  54. if [[ -f /etc/sysconfig/origin-node ]]; then
  55. source /etc/sysconfig/origin-node
  56. if [[ -z "${BOOTSTRAP_CONFIG_NAME-}" ]]; then
  57. echo "info: Waiting for BOOTSTRAP_CONFIG_NAME to be set" 2>&1
  58. sleep 15
  59. continue
  60. fi
  61. break
  62. fi
  63. done
  64. # track the current state of the config
  65. if [[ -f /etc/origin/node/node-config.yaml ]]; then
  66. md5sum /etc/origin/node/node-config.yaml > /tmp/.old
  67. else
  68. touch /tmp/.old
  69. fi
  70. # periodically refresh both node-config.yaml and relabel the node
  71. while true; do
  72. name=${BOOTSTRAP_CONFIG_NAME}
  73. if ! oc extract --config=/etc/origin/node/node.kubeconfig "cm/${BOOTSTRAP_CONFIG_NAME}" -n openshift-node --to=/etc/origin/node --confirm; then
  74. echo "error: Unable to retrieve latest config for node" 2>&1
  75. sleep 15
  76. continue
  77. fi
  78. # detect whether the node-config.yaml has changed, and if so trigger a restart of the kubelet.
  79. md5sum /etc/origin/node/node-config.yaml > /tmp/.new
  80. if [[ "$( cat /tmp/.old )" != "$( cat /tmp/.new )" ]]; then
  81. echo "info: Configuration changed, restarting kubelet" 2>&1
  82. # TODO: kubelet doesn't relabel nodes, best effort for now
  83. # https://github.com/kubernetes/kubernetes/issues/59314
  84. if args="$(openshift start node --write-flags --config /etc/origin/node/node-config.yaml)"; then
  85. labels=' --node-labels=([^ ]+) '
  86. if [[ ${args} =~ ${labels} ]]; then
  87. labels="${BASH_REMATCH[1]//,/ }"
  88. echo "info: Applying node labels $labels" 2>&1
  89. if ! oc label --config=/etc/origin/node/node.kubeconfig "node/${NODE_NAME}" ${labels} --overwrite; then
  90. echo "error: Unable to apply labels, will retry in 10" 2>&1
  91. sleep 10
  92. continue
  93. fi
  94. fi
  95. fi
  96. if ! pgrep -U 0 -f 'hyperkube kubelet ' | xargs kill; then
  97. echo "error: Unable to restart Kubelet" 2>&1
  98. fi
  99. fi
  100. cp -f /tmp/.new /tmp/.old
  101. sleep 180
  102. done
  103. env:
  104. - name: NODE_NAME
  105. valueFrom:
  106. fieldRef:
  107. fieldPath: spec.nodeName
  108. securityContext:
  109. runAsUser: 0
  110. privileged: true
  111. volumeMounts:
  112. # Directory which contains the host configuration. We read from this directory
  113. - mountPath: /etc/origin/node/
  114. name: host-config
  115. - mountPath: /etc/sysconfig/origin-node
  116. name: host-sysconfig-node
  117. readOnly: true
  118. volumes:
  119. # In bootstrap mode, the host config contains information not easily available
  120. # from other locations.
  121. - name: host-config
  122. hostPath:
  123. path: /etc/origin/node
  124. - name: host-sysconfig-node
  125. hostPath:
  126. path: /etc/sysconfig/origin-node
  127. - name: host-modules
  128. hostPath:
  129. path: /lib/modules