Skip to content

Instantly share code, notes, and snippets.

@gswallow
Last active May 21, 2020 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 gswallow/a27db777f8be78904040067052e45dbc to your computer and use it in GitHub Desktop.
Save gswallow/a27db777f8be78904040067052e45dbc to your computer and use it in GitHub Desktop.
# Use discrete kubeconfig files
update_kubeconfig () {
KUBECONFIG=$HOME/.kube/config
for f in $HOME/.kube/config.d/*; do
KUBECONFIG=$KUBECONFIG:$f
done
export KUBECONFIG
}
update_kubeconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment