uninstall_hosa.yaml 737 B

123456789101112131415
  1. ---
  2. - name: remove Hawkular Agent (HOSA) components
  3. command: >
  4. {{ openshift_client_binary }} -n {{ openshift_metrics_hawkular_agent_namespace }} --config={{ mktemp.stdout }}/admin.kubeconfig
  5. delete --ignore-not-found --selector=metrics-infra=agent
  6. all,sa,secrets,templates,routes,pvc,rolebindings,clusterrolebindings
  7. register: delete_metrics
  8. changed_when: delete_metrics.stdout != 'No resources found'
  9. - name: remove rolebindings
  10. command: >
  11. {{ openshift_client_binary }} -n {{ openshift_metrics_hawkular_agent_namespace }} --config={{ mktemp.stdout }}/admin.kubeconfig
  12. delete --ignore-not-found
  13. clusterrolebinding/hawkular-openshift-agent-rb
  14. changed_when: delete_metrics.stdout != 'No resources found'