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 a79187e commit 7c394cbCopy full SHA for 7c394cb
base/daemon_thread.py
@@ -72,6 +72,7 @@ def __init__(self, config, config_name,
72
73
if hasattr(config, "k8s_config_type") and config.k8s_config_type.lower() == "incluster":
74
kube_config.load_incluster_config()
75
+ self.api_client = client.ApiClient()
76
elif hasattr(config, "k8s_config_type") and config.k8s_config_type.lower() == "kubeconfig":
77
kube_config.load_kube_config()
78
self.api_client = kube_config.new_client_from_config()
0 commit comments