From ba7ccd178f5a6adaa66ab5c90a4db10c81e018f4 Mon Sep 17 00:00:00 2001 From: ppawlowski Date: Wed, 22 Jul 2026 11:11:43 +0200 Subject: [PATCH] Ensure Expert Insights is configurable --- helm/flowfuse/README.md | 1 + helm/flowfuse/values.schema.json | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/helm/flowfuse/README.md b/helm/flowfuse/README.md index a99ac035..78bcb215 100644 --- a/helm/flowfuse/README.md +++ b/helm/flowfuse/README.md @@ -301,6 +301,7 @@ Everything under `forge.rate_limits` is used as input to Fastify Rate Limit plug - `forge.expert.service.requestTimeout` Timeout for the FlowFuse Expert service (default `60000`) - `forge.expert.broker.address` Address of the MQTT broker to use for communication with the Expert service (default not set). Requires `forge.broker.teamBroker.enabled=true`, since the local team broker bridges to this central broker. - `forge.expert.broker.port` Port of the MQTT broker to use for communication with the Expert service (default `8883`) + - `forge.expert.insights.enabled` Enable/disable FlowFuse Expert Insights feature (default `false`) ### AI diff --git a/helm/flowfuse/values.schema.json b/helm/flowfuse/values.schema.json index 34f54feb..55ddf283 100644 --- a/helm/flowfuse/values.schema.json +++ b/helm/flowfuse/values.schema.json @@ -941,6 +941,14 @@ "maximum": 65535 } } + }, + "insights": { + "type": "object", + "properties": { + "enabled": { + "type": "boolean" + } + } } } },