Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 658 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 658 Bytes

helm-charts

Helm Charts Repository for VRE

Usage

Creating a new chart

helm create mychart

Publishing a chart

helm package mychart # will use version defined in chart
mv mychart-x.y.z.tgz docs # move it to the github pages folder
helm repo index docs --url https://virtualresearchenvironment.github.io/helm-charts/ # build index file for helm repository

Using a chart from the git repo repo

helm install deployment-name ./mychart

Using a chart from the helm repository

helm repo add vre https://virtualresearchenvironment.github.io/helm-charts/
helm install deployment-name vre/mychart