Skip to content

Instantly share code, notes, and snippets.

@agu3rra
Created January 25, 2021 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agu3rra/9424be5dce370c852b210637362129af to your computer and use it in GitHub Desktop.
Save agu3rra/9424be5dce370c852b210637362129af to your computer and use it in GitHub Desktop.
Useful Helm commands
helm repo add [name] [url]
helm repo update
helm repo list
helm install [chart-name] [repo-name/chart]
helm show chart [repo-name/chart]
helm show values ...
helm ls -n [some-namespace]
helm upgrade [chart-name] [repo-name/chart]
# Deployment
helm create [some-chart]
# Check changes before applying them from local directory
helm template [chart-name]
# Apply from local
helm upgrade [chart-name] .
# Rollbacks
helm history [chart-name]
helm rollback [chart-name] [revision-#]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment