Uninstall Kloudfuse
To remove the Kloudfuse installation, follow these steps:
Helm delete
Run the following command to delete the kfuse Helm release:
helm delete kfuse
| This command does not delete data stored in persistent volumes or in the deep store cloud buckets (GCP, AWS, or Azure). Those must be removed separately. |
Delete persistent disks
To delete the persistent volume claims associated with the Kloudfuse installation, run:
kubectl delete pvc -n kfuse -l app.kubernetes.io/instance=kfuse
Delete data from the deep store
Run the appropriate command for your cloud storage provider to delete the Pinot segment data from the deep store bucket:
-
GCP
-
AWS
-
Azure
gsutil -m rm -r gs://<pinot-bucket-name>/controller
aws s3 rm s3://<pinot-bucket-name>/controller --recursive
az storage blob delete-batch --source <container-name> --pattern "controller/*" --account-name <storage-account-name>