https://signoz.io logo
Title
v

Vinay Donthula

05/26/2023, 7:16 AM
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

Prashant Shahi

05/26/2023, 11:48 AM
@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:
kubectl get -n platform pvc -o=name | xargs kubectl patch \
  -n platform \
  -p '{"metadata":{"finalizers":[]}}' --type=merge
^ replace
platform
with your custom namespace
v

Vinay Donthula

05/26/2023, 12:42 PM
Thanks, @Prashant Shahi - it worked..!!!