diff --git a/charts/nextcloud/README.md b/charts/nextcloud/README.md index 8549b8b8..35b6ca51 100644 --- a/charts/nextcloud/README.md +++ b/charts/nextcloud/README.md @@ -178,7 +178,7 @@ If you choose to use one of the prepackaged Bitnami helm charts, you must config | Parameter | Description | Default | |----------------------------------------------------------------------|----------------------------------------------------------------------------------------|-----------------| -| `internalDatabase.enabled` | Whether to use internal sqlite database | `true` | +| `internalDatabase.enabled` | Whether to use internal sqlite database. Must be disabled to use any other database | `true` | | `internalDatabase.database` | Name of the existing database | `nextcloud` | | `externalDatabase.enabled` | Whether to use external database | `false` | | `externalDatabase.type` | External database type: `mysql`, `postgresql` | `mysql` | @@ -263,8 +263,6 @@ We include an optional experimental Nextcloud Metrics exporter from [xperimental | `metrics.serviceMonitor.scrapeTimeout` | Specify the timeout after which the scrape is ended | `` | | `metrics.serviceMonitor.labels` | Extra labels for the ServiceMonitor | `{} | - - > **Note**: > > For nextcloud to function correctly, you should specify the `nextcloud.host` parameter to specify the FQDN (recommended) or the public IP address of the nextcloud service. diff --git a/charts/nextcloud/values.yaml b/charts/nextcloud/values.yaml index 4a605328..b1242e40 100644 --- a/charts/nextcloud/values.yaml +++ b/charts/nextcloud/values.yaml @@ -230,7 +230,12 @@ nginx: # runAsNonRoot: true # readOnlyRootFilesystem: true +## +## Internal sqlite database configuration +## internalDatabase: + ## Wether to use the sqlite database. This takes precedence on other database settings + ## and must be false to use any other database type enabled: true name: nextcloud