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 b4269c4 commit e333b22Copy full SHA for e333b22
mcp_server/server.py
@@ -39,12 +39,12 @@
39
_client = None
40
41
42
-def get_dynamic_client(config_file: str | None = None, context: str | None = None) -> Any:
+def get_dynamic_client() -> Any:
43
"""Get or create a dynamic client for Kubernetes/OpenShift"""
44
global _client
45
if _client is None:
46
LOGGER.debug("Creating new dynamic client")
47
- _client = get_client(config_file=config_file, context=context)
+ _client = get_client()
48
return _client
49
50
0 commit comments