Tools - Helm
Commands
Repo
List repos:
Add repo:
List chart of a repo:
List available version of a repo:
Chart
List all Chart (namespace):
Pull Chart:
Delete Chart:
Install release:
helm install {name} {repo} \
-n|--namespace {namespace} \
(-f|--values {value-file}) \
(--version {chart-version})s
# Ex: helm install graylog-app stable/graylog \
# --version 1.6.12 \
# --namespace graylog \
# --values graylog-values.yaml
Upgrade release:
helm upgrade {name} {repo} \
-n|--namespace {namespace} \
(-f|--values {value-file}) \
(--version {chart-version})s
Get current values of a installed chart:
Get current manifests of a installed chart:
Get values of a chart:
Download chart locally (fetch):