Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
List charts in a helm repository
+2
−0
How to list all available helm charts in a helm repository, preferrably using the native helm
CLI tool?
This command lists the repos themselves, but I've yet to discover how to list their contents.
$ helm repo list
1 answer
+0
−0
You have to search the repo without any filters:
$ helm search repo myrepo
NAME CHART VERSION APP VERSION DESCRIPTION
myrepo/mychart 1.0.0 1.0.0 Example helm chart
Also remember to update the repositories first:
$ helm repo update
0 comment threads