Skip to content

Commit 9969c81

Browse files
Release cluster-v0.5.0 (#750)
Signed-off-by: Itay Grudev <itay@verito.digital> Co-authored-by: Itay Grudev <itay@verito.digital>
1 parent c1ec78e commit 9969c81

3 files changed

Lines changed: 23 additions & 4 deletions

File tree

charts/cluster/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ name: cluster
2121
description: Deploys and manages a CloudNativePG cluster and its associated resources.
2222
icon: https://raw.githubusercontent.com/cloudnative-pg/artwork/main/cloudnativepg-logo.svg
2323
type: application
24-
version: 0.4.0
24+
version: 0.5.0
2525
sources:
2626
- https://github.com/cloudnative-pg/charts
2727
keywords:

charts/cluster/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# cluster
22

3-
![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
3+
![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
44

55
> **Warning**
66
> ### This chart is under active development.
@@ -273,7 +273,7 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentat
273273
| recovery.s3.secretKey | string | `""` | |
274274
| recovery.secret.create | bool | `true` | Whether to create a secret for the backup credentials |
275275
| recovery.secret.name | string | `""` | Name of the backup credentials secret |
276-
| replica.bootstrap.database | string | `"app"` | Name of the database used by the application. Default: `app`. |
276+
| replica.bootstrap.database | string | `""` | Name of the database used by the application |
277277
| replica.bootstrap.owner | string | `""` | Name of the owner of the database in the instance to be used by applications. Defaults to the value of the `database` key. |
278278
| replica.bootstrap.secret | string | `""` | 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 |
279279
| replica.bootstrap.source | string | `""` | One of `object_store` or `pg_basebackup`. Method to use for bootstrap. |
@@ -288,6 +288,8 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentat
288288
| replica.origin.objectStore.azure.storageSasToken | string | `""` | |
289289
| replica.origin.objectStore.clusterName | string | `""` | The original cluster name when used in backups. Also known as serverName. |
290290
| replica.origin.objectStore.destinationPath | string | `""` | Overrides the provider specific default path. Defaults to: S3: s3://<bucket><path> Azure: https://<storageAccount>.<serviceName>.core.windows.net/<containerName><path> Google: gs://<bucket><path> |
291+
| replica.origin.objectStore.endpointCA | object | `{"create":false,"key":"","name":"","value":""}` | Specifies a CA bundle to validate a privately signed certificate. |
292+
| replica.origin.objectStore.endpointCA.create | bool | `false` | Creates a secret with the given value if true, otherwise uses an existing secret. |
291293
| replica.origin.objectStore.google.applicationCredentials | string | `""` | |
292294
| replica.origin.objectStore.google.bucket | string | `""` | |
293295
| replica.origin.objectStore.google.gkeEnvironment | bool | `false` | |
@@ -301,7 +303,7 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentat
301303
| replica.origin.objectStore.s3.secretKey | string | `""` | |
302304
| replica.origin.objectStore.secret.create | bool | `true` | Whether to create a secret for the backup credentials |
303305
| replica.origin.objectStore.secret.name | string | `""` | Name of the backup credentials secret |
304-
| replica.origin.pg_basebackup.database | string | `"app"` | |
306+
| replica.origin.pg_basebackup.database | string | `""` | |
305307
| replica.origin.pg_basebackup.host | string | `""` | |
306308
| replica.origin.pg_basebackup.passwordSecret.key | string | `""` | |
307309
| replica.origin.pg_basebackup.passwordSecret.name | string | `""` | |

charts/cluster/values.schema.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -749,6 +749,23 @@
749749
"destinationPath": {
750750
"type": "string"
751751
},
752+
"endpointCA": {
753+
"type": "object",
754+
"properties": {
755+
"create": {
756+
"type": "boolean"
757+
},
758+
"key": {
759+
"type": "string"
760+
},
761+
"name": {
762+
"type": "string"
763+
},
764+
"value": {
765+
"type": "string"
766+
}
767+
}
768+
},
752769
"google": {
753770
"type": "object",
754771
"properties": {

0 commit comments

Comments
 (0)