uninstall.yml 573 B

1234567891011121314151617181920212223
  1. ---
  2. - name: Start removing all the objects
  3. command: "oc delete -n {{ openshift_cfme_project }} {{ item }} --all"
  4. with_items:
  5. - rc
  6. - dc
  7. - po
  8. - svc
  9. - pv
  10. - pvc
  11. - statefulsets
  12. - routes
  13. - name: Remove the project
  14. command: "oc delete -n {{ openshift_cfme_project }} project {{ openshift_cfme_project }}"
  15. - name: Verify project has been destroyed
  16. command: "oc get project {{ openshift_cfme_project }}"
  17. ignore_errors: True
  18. register: project_terminated
  19. until: project_terminated.stderr.find("NotFound") != -1
  20. delay: 5
  21. retries: 30