From c96044f4f744be68a0aa7445aa4acf18bb6f0f95 Mon Sep 17 00:00:00 2001 From: jubnl Date: Sat, 11 Apr 2026 15:40:02 +0200 Subject: [PATCH] docs: document hosted Helm repository --- README.md | 12 ++++++++++++ charts/README.md | 12 ++++++++++++ 2 files changed, 24 insertions(+) diff --git a/README.md b/README.md index 7ac77e14..ab5af98f 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,18 @@ - **Weather**: Open-Meteo API (free, no key required) - **Icons**: lucide-react +## Helm (Kubernetes) + +A hosted Helm repository is available: + +```sh +helm repo add trek https://mauriceboe.github.io/TREK +helm repo update +helm install trek trek/trek +``` + +See [`charts/README.md`](charts/README.md) for configuration options. + ## Quick Start ```bash diff --git a/charts/README.md b/charts/README.md index 33fd275c..b5380f85 100644 --- a/charts/README.md +++ b/charts/README.md @@ -10,8 +10,20 @@ This is a minimal Helm chart for deploying the TREK app. - Optional generic Ingress support - Health checks on `/api/health` +## Helm Repository + +A hosted Helm repository is available: + +```sh +helm repo add trek https://mauriceboe.github.io/TREK +helm repo update +helm install trek trek/trek +``` + ## Usage +Or install directly from the local chart: + ```sh helm install trek ./chart \ --set ingress.enabled=true \