Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find the chart version of subcharts from a released helm chart?

I have installed a helm chart with subcharts and I want to find out which version of the subchart is installed. Is there any possible way in helm 3?

like image 617
Darshil Shah Avatar asked Oct 30 '25 00:10

Darshil Shah


1 Answers

Following official Helm documentation:

  • Helm.sh: Subcharts and globals
  • Helm.sh: Charts
  • Helm.sh: Helm dependency

You can get the version of a subchart used by a chart by following below example:

  • Download the chart with $ helm pull repo/name --untar
  • Go inside the chart directory
  • Invoke command: $ helm dependency list

You can get a message that there are no dependencies:

WARNING: no dependencies at gce-ingress/charts

You can also get a message with dependencies and their versions:

NAME                VERSION REPOSITORY                                        STATUS
kube-state-metrics  2.7.*  https://kubernetes-charts.storage.googleapis.com/  unpacked

Additionally you can check the content of the prometheus/charts/kube-state-metrics/Chart.yaml for additional information.

Please let me know if that helped you.

like image 104
Dawid Kruk Avatar answered Nov 01 '25 15:11

Dawid Kruk



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!