From f1b183022b4997ef6d21b2ffd48181b7c33afd59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rk=20S=C3=A1gi-Kaz=C3=A1r?= Date: Wed, 5 May 2021 10:35:02 +0200 Subject: [PATCH] docs: Mention the helm chart in the installation instructions (#475) --- docs/installation.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/installation.md b/docs/installation.md index f1a44a0..a3cce91 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -20,3 +20,20 @@ cd tusd go build -o tusd cmd/tusd/main.go ``` + +## Kubernetes installation + +A Helm chart for installing Tusd on Kubernetes is available [here](https://github.com/sagikazarmark/helm-charts/tree/master/charts/tusd). + +You can install it by running the following commands: + +```bash +helm repo add skm https://charts.sagikazarmark.dev +helm install --generate-name --wait skm/tusd +``` + +Minimum requirements: +- Helm 3+ +- Kubernetes 1.16+ + +Check out the available [values](https://github.com/sagikazarmark/helm-charts/tree/master/charts/tusd#values) for customizing the installation.