daemonset.yml.j2 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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: centos:7
  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"
  51. exec 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. {% if openshift_daemonset_config_secrets != {} %}
  68. # Our delivered secrets
  69. - mountPath: /opt/secrets
  70. name: secrets
  71. {% endif %}
  72. resources:
  73. requests:
  74. cpu: {{ openshift_daemonset_config_resources.cpu }}
  75. memory: {{ openshift_daemonset_config_resources.memory }}
  76. {% if openshift_daemonset_config_monitoring %}
  77. - name: monitoring
  78. image: openshifttools/oso-centos7-host-monitoring:latest
  79. securityContext:
  80. # Must be root to read content
  81. runAsUser: 0
  82. privileged: true
  83. volumeMounts:
  84. - mountPath: /host
  85. name: host
  86. readOnly: true
  87. - mountPath: /etc/localtime
  88. subPath: etc/localtime
  89. name: host
  90. readOnly: true
  91. - mountPath: /sys
  92. subPath: sys
  93. name: host
  94. readOnly: true
  95. - mountPath: /var/run/docker.sock
  96. subPath: var/run/docker.sock
  97. name: host
  98. readOnly: true
  99. - mountPath: /var/run/openvswitch
  100. subPath: var/run/openvswitch
  101. name: host
  102. readOnly: true
  103. - mountPath: /etc/origin
  104. subPath: etc/origin
  105. name: host
  106. readOnly: true
  107. - mountPath: /usr/bin/oc
  108. subPath: usr/bin/oc
  109. name: host
  110. readOnly: true
  111. name: host
  112. readOnly: true
  113. - mountPath: /host/var/cache/yum
  114. subPath: var/cache/yum
  115. name: host
  116. - mountPath: /container_setup/monitoring-config.yml
  117. subPath: monitoring-config.yaml
  118. name: config
  119. - mountPath: /opt/config
  120. name: config
  121. resources:
  122. requests:
  123. cpu: 10m
  124. memory: 10Mi
  125. {% endif %}
  126. volumes:
  127. - name: config
  128. configMap:
  129. name: {{ openshift_daemonset_config_configmap_name }}
  130. {% if openshift_daemonset_config_secrets != {} %}
  131. - name: secrets
  132. secret:
  133. secretName: {{ openshift_daemonset_config_secret_name }}
  134. {% endif %}
  135. - name: host
  136. hostPath:
  137. path: /