install.yaml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. ---
  2. - name: validate openshift_node_problem_detector_image_pull_policy variable
  3. fail:
  4. msg: "openshift_node_problem_detector_image_pull_policy must be one of Always, Never, IfNotPresent. Got {{ openshift_node_problem_detector_image_pull_policy }}"
  5. when: openshift_node_problem_detector_image_pull_policy not in ['Always', 'Never', 'IfNotPresent']
  6. - name: Ensure Node Problem Detector project exists
  7. oc_project:
  8. name: openshift-node-problem-detector
  9. state: present
  10. node_selector:
  11. - ""
  12. - name: create Node Problem Detector service account
  13. oc_serviceaccount:
  14. name: "{{ openshift_node_problem_detector_service_account }}"
  15. namespace: openshift-node-problem-detector
  16. state: present
  17. - name: bind node-problem-detector cluster role to the node-problem-detector service account
  18. oc_adm_policy_user:
  19. state: present
  20. user: "system:serviceaccount:openshift-node-problem-detector:{{ openshift_node_problem_detector_service_account }}"
  21. namespace: "openshift-node-problem-detector"
  22. resource_kind: cluster-role
  23. resource_name: "system:{{ openshift_node_problem_detector_cluster_role_name }}"
  24. - name: Grant privileged SCC from node problem detector service account
  25. oc_adm_policy_user:
  26. state: present
  27. user: "system:serviceaccount:openshift-node-problem-detector:{{ openshift_node_problem_detector_service_account }}"
  28. namespace: openshift-node-problem-detector
  29. resource_kind: scc
  30. resource_name: privileged
  31. - name: read node problem detector configmap
  32. include_vars:
  33. name: openshift_node_problem_detector_configmap
  34. file: "{{ openshift_node_problem_detector_configmap_filename }}"
  35. - name: create node problem detector configuration configmap
  36. oc_configmap:
  37. state: present
  38. name: "{{ openshift_node_problem_detector_configmap_name }}"
  39. namespace: openshift-node-problem-detector
  40. from_literal: "{{ openshift_node_problem_detector_configmap.data }}"
  41. - name: create node problem detector
  42. template:
  43. src: "{{ openshift_node_problem_detector_daemonset_template_file }}"
  44. dest: "{{ openshift_node_problem_detector_tmp_location }}/npd-ds.yaml"
  45. - name: create node problem detector daemonset
  46. oc_obj:
  47. kind: daemonset
  48. name: "{{ openshift_node_problem_detector_daemonset_name }}"
  49. namespace: openshift-node-problem-detector
  50. state: present
  51. files:
  52. - "{{ openshift_node_problem_detector_tmp_location }}/npd-ds.yaml"
  53. delete_after: "{{ openshift_node_problem_detector_delete_tempfiles }}"