Skip to content

Instantly share code, notes, and snippets.

@atheiman
Last active October 7, 2019 16:25
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 atheiman/91036e1ed84c9e8bf2cc18bf338997c8 to your computer and use it in GitHub Desktop.
Save atheiman/91036e1ed84c9e8bf2cc18bf338997c8 to your computer and use it in GitHub Desktop.
Run local tiller pointing at kubernetes cluster
# If there are helm configmaps in `some-namespace`, this will let you interact with the helm releases
export TILLER_NAMESPACE=some-namespace
kubens $TILLER_NAMESPACE
export HELM_HOST="localhost:44134"
tiller -listen ${HELM_HOST} -alsologtostderr > /dev/null 2>&1 &
helm ls
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment