From 5058270c99e92a2360dda2bd6f6ab13200afb400 Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 30 Mar 2023 11:37:09 +0200 Subject: [PATCH 1/2] add some docs on how to use helm-chart Signed-off-by: Simon L --- nextcloud-aio-helm-chart/readme.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nextcloud-aio-helm-chart/readme.md b/nextcloud-aio-helm-chart/readme.md index b2f5c89d..11e7f629 100755 --- a/nextcloud-aio-helm-chart/readme.md +++ b/nextcloud-aio-helm-chart/readme.md @@ -1,3 +1,10 @@ # You can also install the AIO containers on Kubernetes using this Helm Chart This is currently beta and not ready yet. + +## How to use this? + +``` +helm repo add nextcloud-aio https://nextcloud.github.io/all-in-one/ +helm install my-release nextcloud-aio/nextcloud-aio-helm-chart +``` From f726e4a8c62dc4a0c2d56a7b7def0883cf9a3dc0 Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 30 Mar 2023 12:16:27 +0200 Subject: [PATCH 2/2] add steps how to adjust values Signed-off-by: Simon L --- nextcloud-aio-helm-chart/readme.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nextcloud-aio-helm-chart/readme.md b/nextcloud-aio-helm-chart/readme.md index 11e7f629..959588ac 100755 --- a/nextcloud-aio-helm-chart/readme.md +++ b/nextcloud-aio-helm-chart/readme.md @@ -4,7 +4,11 @@ This is currently beta and not ready yet. ## How to use this? +First download this file: https://raw.githubusercontent.com/nextcloud/all-in-one/main/nextcloud-aio-helm-chart/values.yaml and adjust at least all values marked with `# TODO!` + +Then run: + ``` helm repo add nextcloud-aio https://nextcloud.github.io/all-in-one/ -helm install my-release nextcloud-aio/nextcloud-aio-helm-chart +helm install my-release nextcloud-aio/nextcloud-aio-helm-chart -f values.yaml ```