Image Overview: helm-chartmuseum
ReferenceChainguard ImagesProduct
experimental
cgr.dev/chainguard/helm-chartmuseum
Tags | Aliases |
---|---|
latest | 0 , 0.15 , 0.15.0 , 0.15.0-r3 |
latest-dev | 0-dev , 0.15-dev , 0.15.0-dev , 0.15.0-r3-dev |
Minimal image with chartmuseum binary. EXPERIMENTAL
Get It!
The image is available on cgr.dev
:
docker pull cgr.dev/chainguard/chartmuseum:latest
Usage
Create a helm chart, and package it into a charts/
directory:
helm create hello
mkdir charts/
helm package hello -d ./charts
Start the chartmuseum server:
docker run --rm -p 8080:8080 -v $(pwd)/charts:/charts \
cgr.dev/chainguard/chartmuseum:latest
From another terminal, use it as a helm repository:
helm repo add chartmuseum http://localhost:8080
helm search repo chartmuseum/
helm upgrade --install chartmuseum-demo chartmuseum/hello