Skip to content
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
7 changes: 6 additions & 1 deletion charts/cluster/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,12 @@
"type": "string"
},
"secret": {
"type": "string"
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
},
"source": {
"type": "object",
Expand Down
6 changes: 4 additions & 2 deletions charts/cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,10 @@ recovery:
pgBaseBackup:
# -- Name of the database used by the application. Default: `app`.
database: app
# -- Name of the secret containing the initial credentials for the owner of the user database. If empty a new secret will be created from scratch
secret: ""
# -- The secret containing the initial credentials for the owner of the user database. If empty a new secret will be created from scratch
secret:
# -- Name of the secret used for the owner of the user database.
name: ""
# -- Name of the owner of the database in the instance to be used by applications. Defaults to the value of the `database` key.
owner: ""
source:
Expand Down