Skip to content

Commit a735727

Browse files
authored
Merge pull request #44 from small-hack/clean-up-docs
clean up docs
2 parents 45ced51 + ab2d35d commit a735727

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

charts/cloudnative-pg-cluster/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: cnpg-cluster
33
description: Create postgres tenant clusters managed by the CNPG Operator
44
type: application
5-
version: 1.0.1
5+
version: 1.0.2
66

77
dependencies:
88
- name: cluster

charts/cloudnative-pg-cluster/README.md

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

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

55
Create postgres tenant clusters managed by the CNPG Operator
66

@@ -36,8 +36,8 @@ Create postgres tenant clusters managed by the CNPG Operator
3636
| cnpgCluster.additionalEnv[1].name | string | `"AWS_RESPONSE_CHECKSUM_VALIDATION"` | |
3737
| cnpgCluster.additionalEnv[1].value | string | `"when_required"` | |
3838
| cnpgCluster.certificates | object | `{}` | see: https://cloudnative-pg.io/docs/1.28/certificates#client-certificate |
39-
| cnpgCluster.cluster.initdb.database | string | `"app"` | |
40-
| cnpgCluster.cluster.initdb.owner | string | `"app"` | |
39+
| cnpgCluster.cluster.initdb.database | string | `"app"` | you should change this the name of your database in the postgres cluster |
40+
| cnpgCluster.cluster.initdb.owner | string | `"app"` | you should change this the name of your database user in the postgres cluster |
4141
| cnpgCluster.cluster.instances | int | `3` | Number of instances |
4242
| 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 |
4343
| 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 |

charts/cloudnative-pg-cluster/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ cnpgCluster:
6666
instances: 3
6767

6868
initdb:
69+
# -- you should change this the name of your database in the postgres cluster
6970
database: app
71+
# -- you should change this the name of your database user in the postgres cluster
7072
owner: app
7173

7274
postgresql:

0 commit comments

Comments
 (0)