I install the helm release by
helm install --name my-release .
And delete it by
helm delete --purge my-release
But I found out that kubernetes does not clear any storage associated to the containers of that release. I installed postgresql, did lot of things to it, deleted, and when I reinstalled it, all my data was there. How do I clear the storage via helm delete?
Edit: I'm using Postgresql Stable Chart version 5.3.10
Here's the only custom thing I have in my release
values.yaml
postgresql:
postgresqlDatabase: test
postgresqlUsername: test
postgresqlPassword: test