To uninstall the Helm chart, follow these steps:

  1. Enter this command:

    helm uninstall my-release --namespace namespace-value

    release "my-release" uninstalled appears.

  2. Verify the uninstall was successful with this command:

    helm list --all-namespaces

    An entry named "my-release" (or the release name you chose) should no longer appear.

  3. Manually delete the persistent volume claims.
    1. View the persistent volume claims:

      kubectl get pvc

    2. Delete the persistent volume claims:

      kubectl delete pvc pvc-name-1 pvc-name-2 pvc-name-3 --namespace namespace-value