Kubernetes/Helm-charts commonly used commands
Uninstall Helm Release
helm uninstall <release> --namespace <namespace>
#example
helm uninstall qdrant --namespace qdrant
Delete PVCs (Persistent Volume Claims)
kubectl delete pvc --all -n <namespace>
#example
kubectl delete pvc --all -n qdrant
D...
blogs.ummerfarooq.dev1 min read