Skip to main content

AHD Commons v3.0.0 Release Notes

Jan 27nd, 2026

Dependencies

NameVersion
argo-cd9.3.5
csi-driver-smb1.19.1
grafana10.5.12
prometheus28.6.0
loki6.51.0
promtail6.17.1
traefik39.0.0
prometheus-mongodb-exporter3.16.0
prometheus-postgres-exporter7.4.0

Changes

⚠️ Breaking Changes

  • Traefik Configuration: The Traefik configuration has been reorganized. All custom chart configurations must now be defined under the traefikConfig key instead of directly under traefik.
    • The traefik key is now reserved exclusively for Traefik Helm chart native values.
    • Custom configurations such as TLS certificates, middleware installation, and CRD management must be moved to traefikConfig.
    • Migration example:
      # Before (incorrect):
      traefik:
      tls:
      crt: "..."
      key: "..."

      # After (correct):
      traefikConfig:
      install: false
      installMiddleware: true
      installCRDs: true
      tls:
      crt: "..."
      key: "..."