Skip to content

Latest commit

 

History

History
33 lines (18 loc) · 943 Bytes

running-metabase-on-kubernetes.md

File metadata and controls

33 lines (18 loc) · 943 Bytes

Running Metabase on Kubernetes

This guide will help you install Metabase on Kubernetes using Metabase Helm chart

Prerequisites

Installing

To install with the release name my-release:

$ helm install --name my-release stable/metabase

Configuring

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