Helm get: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(5 intermediate revisions by the same user not shown)
Line 9: Line 9:


=Overview=
=Overview=
 
The command gets the details of a named release: configuration value, manifest, hooks, notes.
The command gets the details of a named release.


=Get Values=
=Get Values=


{{External|https://helm.sh/docs/helm/#helm-get-values}}
{{External|https://helm.sh/docs/helm/#helm-get-values}}
Without any argument, except the release name. pulls the values of [[Helm_Configuration#Overriding_Default_Configuration|configuration element that were specified during installation]].
<font size=-1>
helm get values <''release-name''>
</font>
To get all values from the configuration tree:
<font size=-1>
helm get values --all <''release-name''>
</font>
<syntaxhighlight lang='bash'>
helm get values --all some-release -o json | jq -r '.image.registry'
</syntaxhighlight>
If the named release is not found, the command exits with 1.


=Get Manifest=
=Get Manifest=


Print out the Kubernetes resources that were uploaded to the server as part of the installation process.
Print out the Kubernetes resources that were uploaded to the server as part of the installation process.
 
<font size=-1>
  helm get manifest <''release-name''>
  helm get manifest <''release-name''>
</font>

Latest revision as of 06:38, 9 February 2022

External

Internal

Overview

The command gets the details of a named release: configuration value, manifest, hooks, notes.

Get Values

https://helm.sh/docs/helm/#helm-get-values

Without any argument, except the release name. pulls the values of configuration element that were specified during installation.

helm get values <release-name>

To get all values from the configuration tree:

helm get values --all <release-name>

 helm get values --all some-release -o json | jq -r '.image.registry'

If the named release is not found, the command exits with 1.

Get Manifest

Print out the Kubernetes resources that were uploaded to the server as part of the installation process.

helm get manifest <release-name>