daemonset.yml.j2 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. ---
  2. kind: DaemonSet
  3. apiVersion: extensions/v1beta1
  4. metadata:
  5. name: {{ openshift_daemonset_config_daemonset_name }}
  6. annotations:
  7. kubernetes.io/description: |
  8. This daemon set manages the operational configuration for a cluster and ensures all nodes have
  9. a concrete set of config in place. It could also use a local ansible run against the /host directory.
  10. spec:
  11. selector:
  12. matchLabels:
  13. app: {{ openshift_daemonset_config_daemonset_name }}
  14. confighosts: ops
  15. ops.openshift.io/role: operations
  16. updateStrategy:
  17. type: RollingUpdate
  18. template:
  19. metadata:
  20. labels:
  21. app: {{ openshift_daemonset_config_daemonset_name }}
  22. confighosts: ops
  23. ops.openshift.io/role: operations
  24. annotations:
  25. scheduler.alpha.kubernetes.io/critical-pod: ''
  26. spec:
  27. {% if openshift_daemonset_config_node_selector is defined and openshift_daemonset_config_node_selector != {} %}
  28. nodeSelector: {{ openshift_daemonset_config_node_selector | to_json }}
  29. {% endif %}
  30. serviceAccountName: {{ openshift_daemonset_config_sa_name }}
  31. hostNetwork: true
  32. hostPID: true
  33. hostIPC: true
  34. containers:
  35. - name: config
  36. image: "{{ openshift_daemonset_config_image }}"
  37. env:
  38. - name: RESYNC_INTERVAL
  39. value: "{{ openshift_daemonset_config_interval }}"
  40. command:
  41. - /bin/bash
  42. - -c
  43. - |
  44. #!/bin/sh
  45. set -o errexit
  46. while true; do
  47. # execute user defined script
  48. sh /opt/config/{{ openshift_daemonset_config_script }}
  49. # sleep for ${RESYNC_INTERVAL} minutes, then loop. if we fail Kubelet will restart us again
  50. echo "Success, sleeping for ${RESYNC_INTERVAL}s. Date: $(date)"
  51. sleep ${RESYNC_INTERVAL}
  52. # Return to perform the config
  53. done
  54. securityContext:
  55. # Must be root to modify host system
  56. runAsUser: {{ openshift_daemonset_config_runasuser }}
  57. # Permission could be reduced by selecting an appropriate SELinux policy that allows
  58. # us to update the named directories
  59. privileged: {{ openshift_daemonset_config_privileged }}
  60. volumeMounts:
  61. # Directory which contains the host volume.
  62. - mountPath: /host
  63. name: host
  64. # Our node configuration
  65. - mountPath: /opt/config
  66. name: config
  67. - mountPath: /opt/tmp_shared_config
  68. name: tmp-shared-dir
  69. {% if openshift_daemonset_config_secrets != {} %}
  70. # Our delivered secrets
  71. - mountPath: /opt/secrets
  72. name: secrets
  73. {% endif %}
  74. resources:
  75. requests:
  76. cpu: {{ openshift_daemonset_config_resources.cpu }}
  77. memory: {{ openshift_daemonset_config_resources.memory }}
  78. {% if openshift_daemonset_config_monitoring %}
  79. - name: monitoring
  80. image: "{{ openshift_daemonset_config_monitoring_image }}"
  81. env:
  82. - name: OO_PAUSE_ON_START
  83. value: "{{ openshift_daemonset_config_monitoring_pos }}"
  84. securityContext:
  85. # Must be root to read content
  86. runAsUser: 0
  87. privileged: true
  88. volumeMounts:
  89. - mountPath: /host
  90. name: host
  91. readOnly: true
  92. - mountPath: /etc/localtime
  93. subPath: etc/localtime
  94. name: host
  95. readOnly: true
  96. - mountPath: /sys
  97. subPath: sys
  98. name: host
  99. readOnly: true
  100. - mountPath: /run/docker.sock
  101. name: docker-sock
  102. readOnly: true
  103. - mountPath: /var/run/openvswitch
  104. subPath: var/run/openvswitch
  105. name: host
  106. readOnly: true
  107. - mountPath: /etc/origin
  108. subPath: etc/origin
  109. name: host
  110. readOnly: true
  111. - mountPath: /usr/bin/oc
  112. subPath: usr/bin/oc
  113. name: host
  114. readOnly: true
  115. name: host
  116. readOnly: true
  117. - mountPath: /host/var/cache/yum
  118. subPath: var/cache/yum
  119. name: host
  120. readOnly: true
  121. - mountPath: /container_setup
  122. name: tmp-shared-dir
  123. - mountPath: /opt/config
  124. name: config
  125. {% if openshift_daemonset_config_secrets != {} %}
  126. - mountPath: /opt/secrets
  127. name: secrets
  128. {% endif %}
  129. resources:
  130. requests:
  131. cpu: 10m
  132. memory: 10Mi
  133. {% endif %}
  134. volumes:
  135. - name: tmp-shared-dir
  136. emptyDir: {}
  137. - name: config
  138. configMap:
  139. name: {{ openshift_daemonset_config_configmap_name }}
  140. {% if openshift_daemonset_config_secrets != {} %}
  141. - name: secrets
  142. secret:
  143. secretName: {{ openshift_daemonset_config_secret_name }}
  144. {% endif %}
  145. - name: host
  146. hostPath:
  147. path: /
  148. - hostPath:
  149. path: /run/docker.sock
  150. type: ""
  151. name: docker-sock