install.yaml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. - name: create Node Problem Detector service account
  11. oc_serviceaccount:
  12. name: "{{ openshift_node_problem_detector_service_account }}"
  13. namespace: openshift-node-problem-detector
  14. state: present
  15. - name: bind node-problem-detector cluster role to the node-problem-detector service account
  16. oc_adm_policy_user:
  17. state: present
  18. user: "system:serviceaccount:openshift-node-problem-detector:{{ openshift_node_problem_detector_service_account }}"
  19. namespace: "openshift-node-problem-detector"
  20. resource_kind: cluster-role
  21. resource_name: "system:{{ openshift_node_problem_detector_cluster_role_name }}"
  22. - name: Grant privileged SCC from node problem detector service account
  23. oc_adm_policy_user:
  24. state: present
  25. user: "system:serviceaccount:openshift-node-problem-detector:{{ openshift_node_problem_detector_service_account }}"
  26. namespace: openshift-node-problem-detector
  27. resource_kind: scc
  28. resource_name: privileged
  29. - name: read node problem detector configmap
  30. include_vars:
  31. name: openshift_node_problem_detector_configmap
  32. file: "{{ openshift_node_problem_detector_configmap_filename }}"
  33. - name: create node problem detector configuration configmap
  34. oc_configmap:
  35. state: present
  36. name: "{{ openshift_node_problem_detector_configmap_name }}"
  37. namespace: openshift-node-problem-detector
  38. from_literal: "{{ openshift_node_problem_detector_configmap.data }}"
  39. - name: create node problem detector
  40. template:
  41. src: "{{ openshift_node_problem_detector_daemonset_template_file }}"
  42. dest: "{{ openshift_node_problem_detector_tmp_location }}/npd-ds.yaml"
  43. - name: create node problem detector daemonset
  44. oc_obj:
  45. kind: daemonset
  46. name: "{{ openshift_node_problem_detector_daemonset_name }}"
  47. namespace: openshift-node-problem-detector
  48. state: present
  49. files:
  50. - "{{ openshift_node_problem_detector_tmp_location }}/npd-ds.yaml"
  51. delete_after: "{{ openshift_node_problem_detector_delete_tempfiles }}"