From 53600efc4b867b9370266c1ed651d845e6b14a4b Mon Sep 17 00:00:00 2001 From: Cappy Ishihara Date: Wed, 25 Sep 2024 11:13:17 +0700 Subject: [PATCH] docs: add helm chart instructions --- site/src/content/docs/guides/installation.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/site/src/content/docs/guides/installation.md b/site/src/content/docs/guides/installation.md index f780916..700b74e 100644 --- a/site/src/content/docs/guides/installation.md +++ b/site/src/content/docs/guides/installation.md @@ -18,4 +18,18 @@ Or if you would like to go straight to the latest commit: kubectl apply -k https://github.com/FyraLabs/chisel-operator ``` -Yup, that's it. +## Helm + +To install using Helm, you can use the Chisel Operator Helm chart from the OCI registry: + +```bash +helm install chisel-operator oci://ghcr.io/fyralabs/chisel-operator/chisel-operator +``` + +You can configure the helm chart values by creating a `values.yaml` file and passing it to the `helm install` command: + +```bash +helm install chisel-operator oci://ghcr.io/fyralabs/chisel-operator/chisel-operator -f values.yaml +``` + +See [the Helm chart directory](https://github.com/FyraLabs/chisel-operator/tree/main/charts/chisel-operator) for more information on the Helm chart.