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
## examples if using our certificates features of this chart.
116
+
## NOTE: app-postgres should be replaced with whatever you set Values.name to
117
+
serverTLSSecret: "app-postgres-server-cert"
118
+
serverCASecret: "app-postgres-server-ca-key-pair"
119
+
clientCASecret: "app-postgres-client-ca-key-pair"
120
+
replicationTLSSecret: "app-postgres-client-cert"
121
+
122
+
cluster:
123
+
initdb:
124
+
# -- replace this with your database name
125
+
database: app
126
+
# -- replace this with your database username
127
+
owner: app
99
128
```
100
129
This will create a very basic Deployment of `ghcr.io/cloudnative-pg/webtest` [as described in the official docs](https://cloudnative-pg.io/docs/1.28/ssl_connections#testing-the-connection-via-a-tls-certificate) that attempts to connect to your postgres cluster using full mTLS.
| cnpgCluster.cluster.instances | int |`3`| Number of instances |
42
+
| cnpgCluster.cluster.postgresql.pg_hba | list |`["hostnossl all all 0.0.0.0/0 reject","hostssl all all 0.0.0.0/0 cert clientcert=verify-full"]`| records for the pg_hba.conf file. ref: https://www.postgresql.org/docs/current/auth-pg-hba-conf.html|
40
43
| cnpgCluster.enabled | bool |`false`| enable this to deploy the official CNPG cluster helm chart dep All other values here are passed directly to the their chart. See: https://github.com/cloudnative-pg/charts/blob/main/charts/cluster/values.yaml|
41
44
| cnpgCluster.mode | string |`"standalone"`||
42
-
| cnpgCluster.postgresql.pg_hba | list |`["hostnossl all all 0.0.0.0/0 reject","hostssl all all 0.0.0.0/0 cert clientcert=verify-full"]`| records for the pg_hba.conf file. ref: https://www.postgresql.org/docs/current/auth-pg-hba-conf.html|
0 commit comments