Hi all, when am trying to uninstall Signoz as per ...
# general
v
Hi all, when am trying to uninstall Signoz as per the instructions provided in https://signoz.io/docs/operate/kubernetes/#uninstall-signoz-cluster, unable to delete click house PVC volumes?
p
@Vinay Donthula 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:
Copy code
kubectl get -n platform pvc -o=name | xargs kubectl patch \
  -n platform \
  -p '{"metadata":{"finalizers":[]}}' --type=merge
^ replace
platform
with your custom namespace
v
Thanks, @Prashant Shahi - it worked..!!!