Manage Helm Repositories
Beginner6 min
Add, update, search, and manage Helm chart repositories to discover and install charts from public and private sources.
Prerequisites
- -Helm 3 installed
Steps
1
Add popular chart repositories
Register commonly used Helm chart repositories.
$ helm repo add bitnami https://charts.bitnami.com/bitnami && helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx && helm repo add jetstack https://charts.jetstack.io
2
Update all repositories
Fetch the latest chart index from all configured repos.
$ helm repo update
Run this before searching or installing to make sure you have the latest chart versions.
3
Search for charts across repositories
Find charts by keyword across all added repos.
$ helm search repo postgres --versions | head -15
4
List configured repositories
View all currently registered Helm repositories.
$ helm repo list
5
Remove a repository
Unregister a Helm chart repository you no longer need.
$ helm repo remove <repo-name>
Full Script
FAQ
Discussion
Loading comments...