Skip to Content
LakerunnerQuick Start

Quick Start

Quick Start

Up and running in minutes

Get Lakerunner deployed on a local Kubernetes cluster — no cloud account required.

Prerequisites

Kubernetes 1.33+or kind, minikube, etc.
Helm 3.14+Install guide
1

Sign up for a Cardinal account

Create your free account at app.cardinalhq.io.

2

Download your Lakerunner Trial license

After signing in, download your trial license from the Cardinal dashboard.

3

Create the namespace

bash
kubectl create namespace lakerunner
4

Install using Helm

Use the Installation Wizard to generate a values.yaml tailored to your environment, then install:

bash
helm install lakerunner oci://public.ecr.aws/cardinalhq.io/lakerunner \
  --values values.yaml \
  --namespace lakerunner
5

Verify the installation

Wait for all pods to become ready:

bash
kubectl get pods -n lakerunner -w
6

Access Grafana

If Grafana was included in your installation, port-forward it to your local machine:

bash
kubectl port-forward -n lakerunner svc/grafana 3000:3000

Open http://localhost:3000 in your browser. Lakerunner's data source is pre-configured, but you won't see any data yet — that comes in the next step.

7

Send data

Install OpenTelemetry Collectors to monitor your cluster and write telemetry to S3.

Generate data from your real applications, or use the OTel Demo Application to produce realistic logs, metrics, and traces right away.

Reach out to support@cardinalhq.io for support or to ask questions not answered in our documentation.

Last updated on