We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d4f822 commit dca0ca6Copy full SHA for dca0ca6
config/kube_config.py
@@ -45,7 +45,7 @@
45
pass
46
47
EXPIRY_SKEW_PREVENTION_DELAY = datetime.timedelta(minutes=5)
48
-KUBE_CONFIG_DEFAULT_LOCATION = os.environ.get('KUBECONFIG', '~/.kube/config')
+KUBE_CONFIG_DEFAULT_LOCATION = os.path.expanduser(os.environ.get('KUBECONFIG', '~/.kube/config'))
49
ENV_KUBECONFIG_PATH_SEPARATOR = ';' if platform.system() == 'Windows' else ':'
50
_temp_files = {}
51
0 commit comments