helm repo add and the Bitnami Catalog
Registering a remote chart repository locally.
helm repo add and the Bitnami Catalog is a free Helm Academy lesson on CoddyKit — lesson 1 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Helm Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.
Where Charts Come From
Helm does not ship charts. It downloads them from a chart repository, a web server that hosts packaged charts plus an index of what is available.
Registering a Repo
Before you can install from a repo you must add it. The helm repo add command saves a name plus the repo URL on your machine.
helm repo add bitnami https://charts.bitnami.com/bitnamiName Then URL
The first argument is a short local alias you choose, like bitnami. The second is the real URL. You will use the alias everywhere from now on.
Why Bitnami
The Bitnami catalog is a huge, well-maintained set of production-ready charts for tools like nginx, PostgreSQL, and Redis. It is the classic first repo to add.
What Gets Stored
Adding a repo downloads its index file and caches it locally. Helm now knows every chart and version that repo offers, without re-fetching each time.
Listing Your Repos
Run helm repo list to see every repository you have added, with its name and URL. Handy for confirming an add worked.
helm repo listReading the List
The output is a simple table: a NAME column and a URL column. Each row is one repo you can install charts from.
NAME URL
bitnami https://charts.bitnami.com/bitnamiRemoving a Repo
Made a typo or no longer need a source? helm repo remove deletes the local entry. It only forgets the repo; nothing on your cluster changes.
helm repo remove bitnamiRepos Are Per-User
Repo settings live in your local Helm config, not in the cluster. Each person and each CI machine adds the repos they need separately.
Naming Is Yours to Choose
The alias is purely local, so two people can call the same URL different names. Pick something memorable and stay consistent across your team.
Add Once, Use Often
You add a repo just once per machine. After that the alias stands in for the URL in every search and install command you run.
Quick Check
You just ran helm repo add. What does the first argument represent?
Recap
A repo hosts packaged charts plus an index. helm repo add registers one under a local alias, like the rich Bitnami catalog, ready for searching and installing. 📦
Frequently asked questions
Is the “helm repo add and the Bitnami Catalog” lesson free?
Yes — the full text of “helm repo add and the Bitnami Catalog” is free to read here on the web, and the Helm Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Helm Academy course, upgrade to CoddyKit PRO.
What will I learn in “helm repo add and the Bitnami Catalog”?
Registering a remote chart repository locally. You practise Helm Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start Helm Academy?
No prior experience is required. Helm Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 1 of 4, so you can start here or from the beginning and move at your own pace.
How long does the “helm repo add and the Bitnami Catalog” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this Helm Academy lesson?
Yes. Every Helm Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- helm repo add and the Bitnami Catalog
- Refreshing the Index with helm repo update
- Finding Charts with helm search repo
- Discovering Public Charts on Artifact Hub