Skip to content

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.

features:
podMonitoring: true
securityScan: true
diagram: true
aiAdvice: true

Disabling a feature:

  • Hides the corresponding tab in the dashboard.
  • Skips deploying any workloads / RBAC / NetworkPolicies dedicated to that feature. Only podMonitoring and securityScan have dedicated workloads — the agent DaemonSet and the security-scanner Deployment. diagram and aiAdvice are 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: false
Terminal window
helm repo update
helm upgrade kure-monitor kure-monitor/kure \
--namespace kure-system \
--version 2.4.1

No values changes are required to keep the 2.4.0 behaviour. Opt out of individual features by setting the corresponding features.* key to false.

  1. With default values, the dashboard tab order is unchanged: Monitoring → Security → Advice → Diagram → Admin.
  2. Set features.securityScan=false and run helm upgrade. The kure-monitor-security-scanner Deployment should be removed and the Security tab should disappear from the dashboard.
  3. Set features.aiAdvice=false. The Advice tab should disappear; the backend /api/advice/* routes remain reachable for any external tooling that still hits them.

See CHANGELOG.md in the repository.