Release Notes — 2.4.1
Released: 2026-05-20
Kure Monitor 2.4.1 is a small patch that adds per-feature Helm
toggles. The four dashboard features — Pod Monitoring, Security Scan,
Diagram, and AI Advice — can now be turned on or off individually via
features.* values.
All four default to true, so existing 2.4.0 deployments behave
identically after upgrade. No breaking changes. No API changes. No
DB migrations.
What’s new
Section titled “What’s new”Optional feature toggles
Section titled “Optional feature toggles”features: podMonitoring: true securityScan: true diagram: true aiAdvice: trueDisabling a feature:
- Hides the corresponding tab in the dashboard.
- Skips deploying any workloads / RBAC / NetworkPolicies dedicated to
that feature. Only
podMonitoringandsecurityScanhave dedicated workloads — the agent DaemonSet and the security-scanner Deployment.diagramandaiAdviceare pure UI toggles: their tabs disappear, but the backend APIs remain available.
Intended for operators who want a slimmer install — for example, “only pod monitoring, skip the security-scanner pod entirely”:
features: podMonitoring: true securityScan: false diagram: false aiAdvice: falseUpgrade
Section titled “Upgrade”helm repo updatehelm upgrade kure-monitor kure-monitor/kure \ --namespace kure-system \ --version 2.4.1No values changes are required to keep the 2.4.0 behaviour. Opt out of
individual features by setting the corresponding features.* key to
false.
Verifying the upgrade
Section titled “Verifying the upgrade”- With default values, the dashboard tab order is unchanged: Monitoring → Security → Advice → Diagram → Admin.
- Set
features.securityScan=falseand runhelm upgrade. Thekure-monitor-security-scannerDeployment should be removed and the Security tab should disappear from the dashboard. - Set
features.aiAdvice=false. The Advice tab should disappear; the backend/api/advice/*routes remain reachable for any external tooling that still hits them.
Full changelog
Section titled “Full changelog”See CHANGELOG.md in the repository.