Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify the behavior of "internalDatabase" setting #369

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions charts/nextcloud/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down Expand Up @@ -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.
Expand Down
5 changes: 5 additions & 0 deletions charts/nextcloud/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down