2 min read | by Jordi Prats
If we want to get the values we have set for a particular helm chart we can use the helm get values command. Where are these values stored?
It depends on the helm version you are using.
Depending on the helm version you are currently using is even more important not to set secrets as a value for a helm chart: If you are using helm version 2 the secret will be stored using plain text into a ConfigMap. Anyway, if you are using helm version 3 even though the actual values are going to be stored on a Secret there are better solutions for setting secrets on Kubernetes, such as:
Posted on 27/01/2022