uninstall.yaml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: Ensure the node problem detector is absent
  3. oc_obj:
  4. namespace: "{{ openshift_node_problem_detector_namespace }}"
  5. state: absent
  6. kind: daemonset
  7. name: "{{ openshift_node_problem_detector_daemonset_name }}"
  8. - name: Remove privileged SCC from node problem detector service account
  9. oc_adm_policy_user:
  10. state: absent
  11. user: "system:serviceaccount:{{ openshift_node_problem_detector_namespace }}:{{ openshift_node_problem_detector_service_account }}"
  12. namespace: "{{ openshift_node_problem_detector_namespace }}"
  13. resource_kind: scc
  14. resource_name: privileged
  15. - name: remove binding of node-problem-detector cluster role to the node-problem-detector service account
  16. oc_adm_policy_user:
  17. state: absent
  18. user: "system:serviceaccount:{{ openshift_node_problem_detector_namespace }}:{{ openshift_node_problem_detector_service_account }}"
  19. namespace: "{{ openshift_node_problem_detector_namespace }}"
  20. resource_kind: cluster-role
  21. resource_name: "{{ openshift_node_problem_detector_cluster_role_name }}"
  22. - name: remove node problem detector service account
  23. oc_serviceaccount:
  24. name: "{{ openshift_node_problem_detector_service_account }}"
  25. namespace: "{{ openshift_node_problem_detector_namespace }}"
  26. state: absent
  27. - name: remove node problem detector configuration configmap
  28. oc_configmap:
  29. state: absent
  30. name: "{{ openshift_node_problem_detector_configmap_name }}"
  31. namespace: "{{ openshift_node_problem_detector_namespace }}"