Skip to content

Umami

Deploy Umami on Kubernetes — a privacy-focused, open-source web analytics platform that respects visitor privacy and does not use cookies.

Key Features

  • Privacy-first analytics — no cookies, GDPR-compliant by design
  • PostgreSQL backend — bundled subchart or external database
  • Auto-generated app secret — managed via Kubernetes Secret
  • S3 backup — scheduled PostgreSQL backup to S3-compatible storage
  • Ingress support — TLS via cert-manager with configurable ingress class

Installation

helm install umami oci://ghcr.io/helmforgedev/helm/umami

Basic Example

postgresql:
  enabled: true

ingress:
  enabled: true
  ingressClassName: traefik
  hosts:
    - host: analytics.example.com
      paths:
        - path: /
          pathType: Prefix

Key Values

KeyDefaultDescription
postgresql.enabledtrueDeploy PostgreSQL subchart
persistence.enabledtrueEnable data persistence
ingress.enabledfalseEnable ingress
backup.enabledfalseEnable S3 backup CronJob

More Information

See the source code and full values reference on GitHub.