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 8e4c5eb commit 9bce869Copy full SHA for 9bce869
config/__init__.py
@@ -31,6 +31,6 @@ def load_config(**kwargs):
31
if "kube_config_path" in kwargs.keys() or os.path.exists(KUBE_CONFIG_DEFAULT_LOCATION):
32
load_kube_config(**kwargs)
33
else:
34
- print(f"kube_config_path not provided and default location ({KUBE_CONFIG_DEFAULT_LOCATION}) does not exist. "
35
- "Using inCluster Config. This might not work.")
+ print("kube_config_path not provided and default location ({0}) does not exist. "
+ "Using inCluster Config. This might not work.".format(KUBE_CONFIG_DEFAULT_LOCATION))
36
load_incluster_config(**kwargs)
0 commit comments