Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (18 loc) · 737 Bytes

exercise4.md

File metadata and controls

28 lines (18 loc) · 737 Bytes

Exercise 4: Serving your charts

You can setup helm repositories to serve your charts in many possible ways. In this exercise, we will serve the chart which we created in exercise 3 locally (on localhost).

  1. Run the following command
# starts serving charts in $HELM_HOME/repository/local on 127.0.0.1:8879 by default.
helm serve
  1. Let's search the local repository:
# lists all charts served in the local repository
helm search local

That was all. Now our helm-echoserver chart can be installed as local/echoserver.

Clean up

Before we move to the next exercise, let's clean our cluster by deleting all the releases we installed so far:

helm delete --purge $(helm list --all -q)