remove.yml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ---
  2. - name: Remove Service Catalog APIServer
  3. command: >
  4. oc delete apiservices.apiregistration.k8s.io/v1alpha1.servicecatalog.k8s.io --ignore-not-found -n kube-service-catalog
  5. - name: Remove Policy Binding
  6. command: >
  7. oc delete policybindings/kube-system:default -n kube-system --ignore-not-found
  8. # TODO: this module doesn't currently remove this
  9. #- name: Remove service catalog api service
  10. # oc_obj:
  11. # state: absent
  12. # namespace: "kube-service-catalog"
  13. # kind: apiservices.apiregistration.k8s.io
  14. # name: v1alpha1.servicecatalog.k8s.io
  15. - name: Remove Service Catalog API Server route
  16. oc_obj:
  17. state: absent
  18. namespace: "kube-service-catalog"
  19. kind: route
  20. name: apiserver
  21. - name: Remove Service Catalog API Server service
  22. oc_obj:
  23. state: absent
  24. namespace: "kube-service-catalog"
  25. kind: service
  26. name: apiserver
  27. - name: Remove Service Catalog API Server daemonset
  28. oc_obj:
  29. state: absent
  30. namespace: "kube-service-catalog"
  31. kind: daemonset
  32. name: apiserver
  33. - name: Remove Controller Manager service
  34. oc_obj:
  35. state: absent
  36. namespace: "kube-service-catalog"
  37. kind: service
  38. name: controller-manager
  39. - name: Remove Controller Manager deployment
  40. oc_obj:
  41. state: absent
  42. namespace: "kube-service-catalog"
  43. kind: deployment
  44. name: controller-manager
  45. - name: Remove Service Catalog namespace
  46. oc_project:
  47. state: absent
  48. name: "kube-service-catalog"