node-problem-detector-daemonset.yaml.j2 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. apiVersion: extensions/v1beta1
  2. kind: DaemonSet
  3. metadata:
  4. labels:
  5. app: {{ openshift_node_problem_detector_daemonset_name }}
  6. name: {{ openshift_node_problem_detector_daemonset_name }}
  7. spec:
  8. template:
  9. metadata:
  10. labels:
  11. name: {{ openshift_node_problem_detector_daemonset_name }}
  12. spec:
  13. containers:
  14. - command:
  15. - node-problem-detector
  16. - --logtostderr
  17. - --system-log-monitors=/etc/npd/kernel-monitor.json,/etc/npd/docker-monitor.json
  18. env:
  19. - name: NODE_NAME
  20. valueFrom:
  21. fieldRef:
  22. apiVersion: v1
  23. fieldPath: spec.nodeName
  24. image: {{ openshift_node_problem_detector_image_prefix }}node-problem-detector:{{ openshift_node_problem_detector_image_version }}
  25. imagePullPolicy: {{ openshift_node_problem_detector_image_pull_policy }}
  26. name: {{ openshift_node_problem_detector_daemonset_name }}
  27. resources: {}
  28. securityContext:
  29. privileged: true
  30. terminationMessagePath: /dev/termination-log
  31. terminationMessagePolicy: File
  32. volumeMounts:
  33. - mountPath: /host/log
  34. name: log
  35. readOnly: true
  36. - mountPath: /etc/localtime
  37. name: localtime
  38. readOnly: true
  39. - mountPath: /etc/npd
  40. name: config
  41. restartPolicy: Always
  42. securityContext: {}
  43. serviceAccount: {{ openshift_node_problem_detector_service_account }}
  44. serviceAccountName: {{ openshift_node_problem_detector_service_account }}
  45. terminationGracePeriodSeconds: 30
  46. volumes:
  47. - hostPath:
  48. path: /var/log/
  49. name: log
  50. - hostPath:
  51. path: /etc/localtime
  52. name: localtime
  53. - configMap:
  54. name: {{ openshift_node_problem_detector_configmap_name }}
  55. name: config
  56. updateStrategy:
  57. type: RollingUpdate