Created
May 8, 2023 20:02
-
-
Save rjchicago/78fb1a33f90c84de8c083bc04a3995c6 to your computer and use it in GitHub Desktop.
KUBECONFIG
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
# 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