Removing an OpenShift Installation(3.1)

To uninstall , do the following steps:


  1. Delete all ECDs from mzonline by repeating the kubectl delete command for all ECDs.

    $ kubectl get ecd -n <namespace>
    $ kubectl delete ecd <ecd> -n <namespace>
  2. Uninstall all ECs.

    $ helm delete <release_ec> -n <namespace>
  3. Uninstall 

    $ helm delete <release_platform> -n <namespace>
  4. Verify that the installation is removed.

    $ kubectl get pods -n <namespace>
    $ kubectl get ecd -n <namespace>
  5. Delete the namespace

    $ kubectl delete namespace <namespace>