Get current configuration for a running helm release?

4/1/2019

Let's say that I recently installed or upgraded a helm release, e.g.:

helm upgrade ... config.yaml ...

Is there any way for me to retrieve the config.yaml via helm CLI? I need to verify a config value.

-- James Wierzba
kubernetes
kubernetes-helm

1 Answer

4/1/2019

If you want only the info about the values file used for a given release, use helm get values:

helm get values RELEASE_NAME

Take a look at helm get docs to other options:

This command consists of multiple subcommands which can be used to get extended information about the release, including:

  • The values used to generate the release
  • The generated manifest file
  • The notes provided by the chart of the release
  • The hooks associated with the release
-- Eduardo Baitello
Source: StackOverflow