You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/KIALI_INTEGRATION.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Config (TOML):
11
11
```toml
12
12
toolsets = ["core", "kiali"]
13
13
14
-
[kiali]
14
+
[toolset_configs.kiali]
15
15
url = "https://kiali.example"
16
16
# insecure = true # optional: allow insecure TLS
17
17
```
@@ -25,7 +25,7 @@ kubernetes-mcp-server \
25
25
[--kiali-insecure]
26
26
```
27
27
28
-
When the `kiali` toolset is enabled, a Kiali URL is required. Without it, the server will refuse to start.
28
+
When the `kiali` toolset is enabled, a Kiali toolset configuration is required. Provide it via `[toolset_configs.kiali]` in the config file or by passing flags (which populate the toolset config). If missing or invalid, the server will refuse to start.
29
29
30
30
### How authentication works
31
31
@@ -38,7 +38,8 @@ When the `kiali` toolset is enabled, a Kiali URL is required. Without it, the se
38
38
39
39
### Troubleshooting
40
40
41
-
- Error: "kiali-url is required when kiali tools are enabled" → provide `--kiali-url` or set `[kiali].url` in the config TOML.
42
-
- TLS issues against Kiali → try `--kiali-insecure` or `[kiali].insecure = true` for non-production environments.
41
+
- Missing Kiali configuration when `kiali` toolset is enabled → provide `--kiali-url` or set `[toolset_configs.kiali].url` in the config TOML.
42
+
- Invalid URL → ensure `[toolset_configs.kiali].url` is a valid `http(s)://host` URL.
43
+
- TLS issues against Kiali → try `--kiali-insecure` or `[toolset_configs.kiali].insecure = true` for non-production environments.
0 commit comments