This message was deleted.
s
This message was deleted.
1
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..!!!
🙌 1