https://github.com/lightdash/helm-charts
Lightdash Community helm charts
https://github.com/lightdash/helm-charts
Last synced: about 2 months ago
JSON representation
Lightdash Community helm charts
- Host: GitHub
- URL: https://github.com/lightdash/helm-charts
- Owner: lightdash
- Created: 2022-02-04T20:09:51.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2026-03-06T17:07:47.000Z (3 months ago)
- Last Synced: 2026-03-06T21:14:03.513Z (3 months ago)
- Language: Shell
- Size: 398 KB
- Stars: 23
- Watchers: 10
- Forks: 20
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lightdash helm-charts
# Migrating to 1.0.0
The 1.0.0 release contains breaking changes. You **must first update your instance to 0.10.1** before updating to 1.0.0.
# Development
It is recommended to work on this project with VS Code, as the development environment is pre-configured in a [development container](https://code.visualstudio.com/docs/remote/create-dev-container).
## Linting
`ct lint --all`
## Running with minikube
```
# Start minikube (optionally use hyperkit not docker)
minikube start --driver=hyperkit
# Get the lightdash helm charts (this repo)
helm repo add lightdash https://lightdash.github.io/helm-charts
# Pull a specific version of lightdash - (~5 minutes)
minikube image pull lightdash/lightdash:0.433.1
# Use a locally built image of lightdash - (~5 minutes)
minikube image load lightdash/lightdash:0.433.1-alpha
##########
### values.yaml
image:
tag: latest
service:
type: NodePort
configMap:
LIGHTDASH_SECRET: "your-secret"
##########
# Install Lightdash
helm install my-lightdash lightdash/lightdash -f values.yaml
# Get the cluster url for Lightdash
minikube service lightdash --url