Skip to content

Instantly share code, notes, and snippets.

@rjchicago
Created May 8, 2023 20:02
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 rjchicago/78fb1a33f90c84de8c083bc04a3995c6 to your computer and use it in GitHub Desktop.
Save rjchicago/78fb1a33f90c84de8c083bc04a3995c6 to your computer and use it in GitHub Desktop.
KUBECONFIG
# add all yaml configs under ${HOME}/.kube to KUBECONFIG
export KUBECONFIG=~/.kube/config$(for YAML in $(find ${HOME}/.kube -name '*.y*ml') ; do echo -n ":${YAML}"; done)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment