Helm repo: Difference between revisions
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
{{Note|<center>Revised for Helm 3</center>}} | {{Note|<center>Revised for Helm 3</center>}} | ||
=List Repositories Helm is Configured With= | |||
helm repo list | helm repo list | ||
=Add a New Repository= | |||
helm repo add dev https://example.com/dev-charts | helm repo add dev https://example.com/dev-charts | ||
Line 27: | Line 22: | ||
helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/ | helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/ | ||
=Update the Local Repository Cache= | |||
The command reaches out to remote repositories Helm installation is configured with and updates information about ? | The command reaches out to remote repositories Helm installation is configured with and updates information about ? | ||
Line 33: | Line 28: | ||
helm [--debug] repo update | helm [--debug] repo update | ||
=Find what Versions of a Specific Chart are Available in a Repository= | |||
One method is to download (or look on-line) at the repository index and do a text search. | One method is to download (or look on-line) at the repository index and do a text search. |
Revision as of 20:52, 29 November 2019
External
Internal
Overview
Revised for Helm 3
List Repositories Helm is Configured With
helm repo list
Add a New Repository
helm repo add dev https://example.com/dev-charts
Note that the repository must expose an index.yaml, otherwise the above command will fail with .../index.yaml 404 Not Found.
helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
Update the Local Repository Cache
The command reaches out to remote repositories Helm installation is configured with and updates information about ?
helm [--debug] repo update
Find what Versions of a Specific Chart are Available in a Repository
One method is to download (or look on-line) at the repository index and do a text search.
Remove a Repository
helm repo remove local