This guide will help you install Metabase on Kubernetes using Metabase Helm chart
Kubernetes 1.4+ with Beta APIs enabled
Kubernetes Helm installed
To install with the release name my-release
:
$ helm install --name my-release stable/metabase
By default, backend database (H2) is stored inside container, and will be lost after container restart.
So we highly recommended to use MySQL or Postgres instead.
Copy these default configuration into a new file named metabase-config.yaml
, then modify as your need.
Deploy Metabase using your config file:
$ helm install --name my-release -f metabase-config.yaml stable/metabase