Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get current configuration for a running helm release?

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.

like image 524
James Wierzba Avatar asked Apr 01 '19 20:04

James Wierzba


1 Answers

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
like image 148
Eduardo Baitello Avatar answered Nov 02 '22 16:11

Eduardo Baitello