Skip to content

Metabase

Deploy Metabase on Kubernetes — an open-source business intelligence and analytics platform with interactive dashboards and SQL querying.

Key Features

  • Interactive dashboards — drag-and-drop visualization builder
  • PostgreSQL backend — bundled subchart or external database
  • JVM tuning — configurable Java memory settings
  • S3 backup — scheduled PostgreSQL backup to S3-compatible storage
  • Ingress support — TLS via cert-manager with configurable ingress class

Installation

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

Basic Example

postgresql:
  enabled: true

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

Key Values

KeyDefaultDescription
postgresql.enabledtrueDeploy PostgreSQL subchart
ingress.enabledfalseEnable ingress
backup.enabledfalseEnable S3 backup CronJob

More Information

See the source code and full values reference on GitHub.