Uninstalling the Helm chart
- Last Updated: November 25, 2024
- 1 minute read
- Hybrid Data Pipeline
- Version 5.0
- Documentation
To uninstall the Helm chart, follow these steps:
- Enter this command:
helm uninstall my-release --namespace namespace-value
release "my-release" uninstalledappears. - Verify the uninstall was successful with this command:
helm list --all-namespaces
An entry named "my-release" (or the release name you chose) should no longer appear.
- Manually delete the persistent volume claims.
- View the persistent volume claims:
kubectl get pvc
- Delete the persistent volume claims:
kubectl delete pvc pvc-name-1 pvc-name-2 pvc-name-3 --namespace namespace-value
- View the persistent volume claims: