polettix
polettix

Reputation: 507

helm get syntax for getting the chart of a release

helm get --help says that...

[helm get] can be used to get extended information about the release, including:

  • The values used to generate the release
  • The chart used to generate the release
  • The generated manifest file

The extended information bit is somehow foggy but whatever.

Now:

Thanks!

Edit 1: looking at one answer below, it struck me that by chart I mean the whole directory with the artifacts inside (templates, Chart.yaml etc. etc.) but maybe the documentation means just the name of the chart?

Upvotes: 6

Views: 35884

Answers (2)

hzitoun
hzitoun

Reputation: 5832

In Helm 3, you can use:

helm get all <RELEASE_NAME> -n <NAME_SPACE>

Upvotes: 4

edbighead
edbighead

Reputation: 6344

Use helm list to get release chart

helm list releasename --output yaml

>helm list master --output yaml

Next: ""
Releases:
- AppVersion: "1.0"
  Chart: environment-0.1.0-master
  Name: master
  Namespace: master
  Revision: 42
  Status: DEPLOYED
  Updated: Thu Dec 13 16:33:08 2018

Upvotes: 4

Related Questions