Skip to content

Instantly share code, notes, and snippets.

@adixchen
Created August 15, 2019 10:40
Show Gist options
  • Save adixchen/4c7da5851c99a0fdbb407661a12022a1 to your computer and use it in GitHub Desktop.
Save adixchen/4c7da5851c99a0fdbb407661a12022a1 to your computer and use it in GitHub Desktop.
everyday helm charts commands
#list current releases
helm ls
#list of helm repositories
helm repo list
#show all charts in the `chartmuseum` repo
helm search chartmusem
#start chartmuseum with port and file (local storage) (for localtesting)
chartmuseum --port=8090 --storage="local" --storage-local-rootdir="~/chart-storage"
#helm upgrade
helm upgrade RELEASE_NAME CHART_LOCATION --install --force --values OVERWRITE_VALUES_FILE_LOCATION.yaml
helm upgrade local-release ./charts/fe-boilerplate-microservices/ --install --force --values charts/fe-boilerplate-microservices/config/config-local.yaml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment