...
Delete all ECDs from Kubernetes by repeating the
kubectl delete
command for all ECDs.Code Block $ kubectl get ecd -n <namespace> $ kubectl delete ecd <ecd> -n <namespace>
Uninstall Usage Engine Private Edition.
Code Block $ helm delete <release_platform>uninstall <uepe release name> -n uepe <namespace>--wait
Verify that the installation is removed.
Code Block $ kubectl get pods -n <namespace> $ kubectl get ecd -n <namespace>
Delete the namespace
Code Block $ kubectl delete namespace <namespace>
...