Master Helm Repository Management: Add, Update, Search, and Secure Charts
This guide explains Helm repository fundamentals, outlines official, community, and private repository types, lists popular chart sources, and provides step‑by‑step commands for adding, updating, listing, removing, searching, versioning, pulling charts, and managing private repositories with Helm.
Helm Repository Management
Overview
Helm repositories store Helm charts (.tgz files) and an index.yaml that lists chart metadata such as name, version, and description, allowing the Helm client to discover and download charts.
Common Repository Types
Official repository – maintained by Helm (now archived; use Artifact Hub to find community charts).
Community repositories – provided by organizations such as Bitnami and Jetstack.
Private repository – self‑hosted internal repository for proprietary charts.
Popular Helm Repositories
bitnami: https://charts.bitnami.com/bitnami
grafana: https://grafana.github.io/helm-charts
prometheus: https://prometheus-community.github.io/helm-charts
harbor: https://helm.goharbor.io
minio‑operator: https://operator.min.io
Helm Repository Management Commands
Add Repository
Add a repository URL to the local Helm configuration.
helm repo add [repo-name] [repo-url]
# Example
helm repo add prometheus https://prometheus-community.github.io/helm-chartsUpdate Repository Index
Refresh the local index to obtain the latest chart listings and versions.
helm repo updateList Local Repositories
Show all configured repositories and their URLs.
helm repo list
# Output example
NAME URL
prometheus https://prometheus-community.github.io/helm-charts
grafana https://grafana.github.io/helm-chartsRemove Repository
Delete a repository from the local configuration.
helm repo remove [repo-name]
# Example
helm repo remove grafanaSearch Charts
Search for charts in the configured repositories (supports fuzzy matching).
helm search repo [keyword]
# Example
helm search repo grafanaShow Chart Versions
List all available versions of a specific chart.
helm search repo [chart-name] --versions
# Example
helm search repo prometheus/kube-prometheus-stack --versionsPull Chart
Download a chart from a repository, optionally specifying version, untarring, and destination directory.
helm pull [chart] --version [ver] --untar --destination /path --repo [repo-url]
# Example
helm pull prometheus/kube-prometheus-stack --version 72.9.0Private Repository Commands
Create Repository Index
Generate an index.yaml for a local chart directory to serve a private repository.
helm repo index [directory-path] --url [repo-url]Push Chart to Private Repository
Upload a chart package to a private Helm repository.
helm push [chart-path] [repo-name]Signed-in readers can open the original source through BestHub's protected redirect.
This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactand we will review it promptly.
MaGe Linux Operations
Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.
