Skip to content

Commit

Permalink
add default of for externalDatabase.host; update README to be a littl…
Browse files Browse the repository at this point in the history
…e more clear

Signed-off-by: jessebot <[email protected]>
  • Loading branch information
jessebot committed Sep 24, 2024
1 parent 0565cdb commit 39f77c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/nextcloud/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion charts/nextcloud/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
4 changes: 2 additions & 2 deletions charts/nextcloud/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 39f77c2

Please sign in to comment.