From 0d572bce064c99f8046c8b5c589c6b621a9a2ffe Mon Sep 17 00:00:00 2001 From: Yannik Buerkle Date: Sat, 25 May 2024 22:30:26 +0200 Subject: [PATCH 1/2] add documentation not to use @ or : in passwords --- nextcloud-aio-helm-chart/readme.md | 3 +++ nextcloud-aio-helm-chart/values.yaml | 1 + 2 files changed, 4 insertions(+) diff --git a/nextcloud-aio-helm-chart/readme.md b/nextcloud-aio-helm-chart/readme.md index e0a3c916bda..6285aaf3e33 100755 --- a/nextcloud-aio-helm-chart/readme.md +++ b/nextcloud-aio-helm-chart/readme.md @@ -20,6 +20,9 @@ You can run the containers that are build for AIO with Kubernetes using this Hel 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!` +Do not use the symbols `@` and `:` in your passwords. These symbols are used to build database +connection strings. You will experience issues when using these symbols! + Then run: ``` diff --git a/nextcloud-aio-helm-chart/values.yaml b/nextcloud-aio-helm-chart/values.yaml index 58276b24071..7a0e02ce611 100755 --- a/nextcloud-aio-helm-chart/values.yaml +++ b/nextcloud-aio-helm-chart/values.yaml @@ -1,3 +1,4 @@ +# Warning: Do not use symbols "@" and ":" in your passwords (see readme.md) DATABASE_PASSWORD: # TODO! This needs to be a unique and good password! FULLTEXTSEARCH_PASSWORD: # TODO! This needs to be a unique and good password! IMAGINARY_SECRET: # TODO! This needs to be a unique and good password! From 225442c13c0866fa318e9f2bc888e23cec60705f Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Thu, 27 Jun 2024 12:22:12 +0200 Subject: [PATCH 2/2] improve formatting Signed-off-by: Simon L. --- manual-install/readme.md | 3 ++- nextcloud-aio-helm-chart/readme.md | 6 ++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/manual-install/readme.md b/manual-install/readme.md index ae356435d28..66cda23c12f 100644 --- a/manual-install/readme.md +++ b/manual-install/readme.md @@ -22,7 +22,8 @@ First, install docker and docker-compose (v2) if not already done. Then simply r git clone https://github.com/nextcloud/all-in-one.git cd all-in-one/manual-install ``` -Then copy the sample.conf to default environment file, e.g. `cp sample.conf .env`, open the new conf file, e.g. with `nano .env`, edit all values that are marked with `# TODO!`, close and save the file. (Note: there is no clamav image for arm64). +Then copy the sample.conf to default environment file, e.g. `cp sample.conf .env`, open the new conf file, e.g. with `nano .env`, edit all values that are marked with `# TODO!`, close and save the file. (Note: there is no clamav image for arm64).
+⚠️ **Warning**: Do not use the symbols `@` and `:` in your passwords. These symbols are used to build database connection strings. You will experience issues when using these symbols! Now copy the provided yaml file to a compose.yaml file by running `cp latest.yml compose.yaml`. diff --git a/nextcloud-aio-helm-chart/readme.md b/nextcloud-aio-helm-chart/readme.md index 6285aaf3e33..b40fb97609e 100755 --- a/nextcloud-aio-helm-chart/readme.md +++ b/nextcloud-aio-helm-chart/readme.md @@ -18,10 +18,8 @@ You can run the containers that are build for AIO with Kubernetes using this Hel ## 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!` - -Do not use the symbols `@` and `:` in your passwords. These symbols are used to build database -connection strings. You will experience issues when using these symbols! +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!`
+⚠️ **Warning**: Do not use the symbols `@` and `:` in your passwords. These symbols are used to build database connection strings. You will experience issues when using these symbols! Then run: