From 39f77c23bc2e242b6760e0a8a9caa0a676762bc0 Mon Sep 17 00:00:00 2001 From: jessebot Date: Tue, 24 Sep 2024 10:30:17 +0200 Subject: [PATCH] add default of for externalDatabase.host; update README to be a little more clear Signed-off-by: jessebot --- charts/nextcloud/Chart.yaml | 2 +- charts/nextcloud/README.md | 2 +- charts/nextcloud/values.yaml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/nextcloud/Chart.yaml b/charts/nextcloud/Chart.yaml index 835b1e70..44a2aee5 100644 --- a/charts/nextcloud/Chart.yaml +++ b/charts/nextcloud/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: nextcloud -version: 6.0.1 +version: 6.0.2 appVersion: 30.0.0 description: A file sharing server that puts the control and security of your own data back into your hands. keywords: diff --git a/charts/nextcloud/README.md b/charts/nextcloud/README.md index 745b5231..38c4fb1d 100644 --- a/charts/nextcloud/README.md +++ b/charts/nextcloud/README.md @@ -220,7 +220,7 @@ If you choose to use one of the prepackaged Bitnami helm charts, you must config | `internalDatabase.database` | Name of the existing database | `nextcloud` | | `externalDatabase.enabled` | Whether to use external database | `false` | | `externalDatabase.type` | External database type: `mysql`, `postgresql` | `mysql` | -| `externalDatabase.host` | Host of the external database in form of `host:port` | `nil` | +| `externalDatabase.host` | Host of the external database in form of `host:port`. Example: `"myhost:1234"` | `""` | | `externalDatabase.database` | Name of the existing database | `nextcloud` | | `externalDatabase.user` | Existing username in the external db | `nextcloud` | | `externalDatabase.password` | Password for the above username | `nil` | diff --git a/charts/nextcloud/values.yaml b/charts/nextcloud/values.yaml index 0a6ad0ad..5f372828 100644 --- a/charts/nextcloud/values.yaml +++ b/charts/nextcloud/values.yaml @@ -360,8 +360,8 @@ externalDatabase: ## Supported database engines: mysql or postgresql type: mysql - ## Database host - host: + ## Database host. You can optionally include a colon delimited port like "myhost:1234" + host: "" ## Database user user: nextcloud