From b0d8d580eb81afd9cc5f78d039914d59022b2753 Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Fri, 3 Dec 2021 12:00:29 -0500 Subject: [PATCH] Add more details to Helm repo section --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index c9ac599..2f13c06 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,18 @@ This repo is a work in progress. It mostly works but many bits need adjusting he ## Helm Repository The `docs/` folder in this repository represents a Helm repo served via GitHub Pages at https://puppetlabs.github.io/vmpooler-deployment/ + +```bash +$ helm repo add vmpooler-deployment https://puppetlabs.github.io/vmpooler-deployment/ +"vmpooler-deployment" has been added to your repositories +``` + +### Adding / updating charts + +```bash +cd docs/ +helm package ../helm-charts/* +helm repo index --url https://puppetlabs.github.io/vmpooler-deployment/ . +git add . +git commit -a +```