Add more details to Helm repo section

This commit is contained in:
Gene Liverman 2021-12-03 12:00:29 -05:00
parent ec2708c4bd
commit b0d8d580eb
No known key found for this signature in database
GPG key ID: 3AF83985B6C857C6

View file

@ -9,3 +9,18 @@ This repo is a work in progress. It mostly works but many bits need adjusting he
## Helm Repository ## Helm Repository
The `docs/` folder in this repository represents a Helm repo served via GitHub Pages at https://puppetlabs.github.io/vmpooler-deployment/ 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
```