Uninstall Neo4j and clean up the created resources

Uninstall Neo4j Helm deployment

Uninstall the Neo4j Helm deployment.
helm uninstall my-neo4j-release
Example output
release "my-neo4j-release" uninstalled

Fully remove all the data and resources

Uninstalling the Helm release does not remove the created resources and data. Therefore, after uninstalling the helm deployment, you also have to delete all the data and resources.

  1. Delete all persistent volume claims in the neo4j namespace:

    kubectl delete pvc --all --namespace neo4j
  2. Delete the entire Kubernetes cluster in your cloud provider:

    gcloud container clusters delete my-neo4j-gke-cluster
    eksctl delete cluster --name=my-neo4j-eks-cluster
    az aks delete --name my-neo4j-aks-cluster --resource-group <MyResourceGroup>