TLDR Vinay faced issues while uninstalling Signoz. Prashant suggested patching the PVCs to resolve, which worked successfully.
Vinay This mostly happens when you try to delete the volumes prior to properly deleting the ClickHouse Instance i.e. chi resource. You can resolve this by patching the PVCs in the namespace: ```kubectl get -n platform pvc -o=name | xargs kubectl patch \ -n platform \ -p '{"metadata":{"finalizers":[]}}' --type=merge```
^ replace `platform` with your custom namespace
Thanks, Prashant - it worked..!!!
Vinay
Fri, 26 May 2023 07:16:55 UTCHi all, when am trying to uninstall Signoz as per the instructions provided in, unable to delete click house PVC volumes?