install.yaml 2.4 KB

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