- Cow Demo
- Game 2048
- Let's Encrypt
- NFS-Ganesha
- NFS Server Provisioner
- Portworx BBQ
- Rancher Cluster Template
- WordPress
From within a chart directory:
# lints a chart
helm lint
# generates the manifest file from a chart (for review/comparison)
helm template <releasename> . -f values.yaml -f values_mine.yaml --namespace demo > temp.yaml
# installs a chart from local source
helm upgrade --install <releasename> . -f values.yaml \
# --debug > output.yaml \
--create-namespace --namespace demo