install.yaml 2.1 KB

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