Cloud Native 8 min read

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.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
Master Helm Repository Management: Add, Update, Search, and Secure Charts

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-charts

Update Repository Index

Refresh the local index to obtain the latest chart listings and versions.

helm repo update

List 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-charts

Remove Repository

Delete a repository from the local configuration.

helm repo remove [repo-name]
# Example
helm repo remove grafana

Search Charts

Search for charts in the configured repositories (supports fuzzy matching).

helm search repo [keyword]
# Example
helm search repo grafana

Show Chart Versions

List all available versions of a specific chart.

helm search repo [chart-name] --versions
# Example
helm search repo prometheus/kube-prometheus-stack --versions

Pull 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.0

Private 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]
Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

Cloud NativeKubernetesDevOpshelmChart Repository
MaGe Linux Operations
Written by

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.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.