Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 683 Bytes

MAINTAINERS.md

File metadata and controls

13 lines (8 loc) · 683 Bytes

Testing charts locally

  1. Expose the repository locally using Docker and ChartMuseum (utility to serve Helm repositories locally):
docker run --rm -u 0 -it -d -p 8080:8080 -e DEBUG=1 -e STORAGE=local -e STORAGE_LOCAL_ROOTDIR=/charts -v $(pwd)/charts:/charts chartmuseum/chartmuseum:latest

The helm repository should be now available at http://localhost:8080.

  1. Add the local repository using helm repo add local http://localhost:8080 or update using helm repo update local. Verify that the local chart is in the local repository helm search repo local.

Now, use the chart as stated in the usage section.