Created
January 25, 2021 13:34
-
-
Save agu3rra/9424be5dce370c852b210637362129af to your computer and use it in GitHub Desktop.
Useful Helm commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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