You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| serviceAccount.create | bool |`true`| Specifies whether the service account should be created. |
78
78
| serviceAccount.name | string |`""`| The name of the service account to use. If not set and create is true, a name is generated using the fullname template. |
79
79
| tolerations | list |`[]`| Tolerations for the operator to be installed. |
80
-
| updateStrategy | object |`{}`| Update strategy for the operator. |
80
+
| updateStrategy | object |`{}`| Update strategy for the operator. ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy For example: type: RollingUpdate rollingUpdate: maxSurge: 25% maxUnavailable: 25% |
81
81
| webhook | object |`{"livenessProbe":{"initialDelaySeconds":3},"mutating":{"create":true,"failurePolicy":"Fail"},"port":9443,"readinessProbe":{"initialDelaySeconds":3},"validating":{"create":true,"failurePolicy":"Fail"}}`| The webhook configuration. |
82
82
83
+
----------------------------------------------
84
+
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)
@@ -26,6 +33,7 @@ That being said, we welcome PRs that improve the chart, but please keep in mind
26
33
single configuration that the operator provides and we may reject PRs that add too much complexity and maintenance
27
34
difficulty to the chart.
28
35
36
+
29
37
Getting Started
30
38
---------------
31
39
@@ -53,6 +61,7 @@ cnpg/cluster
53
61
54
62
A more detailed guide can be found in the [Getting Started docs](<./docs/Getting Started.md>).
55
63
64
+
56
65
Cluster Configuration
57
66
---------------------
58
67
@@ -97,17 +106,23 @@ Each backup adapter takes it's own set of parameters, listed in the [Configurati
97
106
below. Refer to the table for the full list of parameters and place the configuration under the appropriate key: `backup.s3`,
98
107
`backup.azure`, or `backup.google`.
99
108
109
+
100
110
Recovery
101
111
--------
102
112
103
113
There is a separate document outlining the recovery procedure here: **[Recovery](docs/recovery.md)**
104
114
115
+
105
116
Examples
106
117
--------
107
118
108
119
There are several configuration examples in the [examples](examples) directory. Refer to them for a basic setup and
109
120
refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentation/current/) for more advanced configurations.
110
121
122
+
123
+
124
+
125
+
111
126
## Values
112
127
113
128
| Key | Type | Default | Description |
@@ -159,6 +174,7 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentat
159
174
| cluster.imageName | string | `""` | Name of the container image, supporting both tags (<image>:<tag>) and digests for deterministic and repeatable deployments: <image>:<tag>@sha256:<digestValue> |
160
175
| cluster.imagePullPolicy | string | `"IfNotPresent"` | Image pull policy. One of Always, Never or IfNotPresent. If not defined, it defaults to IfNotPresent. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images |
161
176
| cluster.imagePullSecrets | list | `[]` | The list of pull secrets to be used to pull the images. See: https://cloudnative-pg.io/documentation/current/cloudnative-pg.v1/#postgresql-cnpg-io-v1-LocalObjectReference |
177
+
| cluster.inheritedMetadata | object | `{}` | Metadata to be inherited by all resources related to a Cluster, annotations and labels defined here will be added to all cluster resources See: https://cloudnative-pg.io/documentation/current/cloudnative-pg.v1/#postgresql-cnpg-io-v1-EmbeddedObjectMetadata |
162
178
| cluster.initdb | object | `{}` | BootstrapInitDB is the configuration of the bootstrap process when initdb is used. See: https://cloudnative-pg.io/documentation/current/bootstrap/ See: https://cloudnative-pg.io/documentation/current/cloudnative-pg.v1/#postgresql-cnpg-io-v1-bootstrapinitdb |
163
179
| cluster.instances | int | `3` | Number of instances |
164
180
| cluster.logLevel | string | `"info"` | The instances' log level, one of the following values: error, warning, info (default), debug, trace |
@@ -269,6 +285,7 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentat
0 commit comments