Skip to content
Merged
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
1 change: 1 addition & 0 deletions charts/pg-db/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ The chart can be customized using the following configurable parameters:
| `customRootCATLSSecret.items` | Key-value pairs of the `key` (a key from the `secrets.customRootCATLSSecret.name` secret) and the `path` (name on the file system) for the custom root certificate and key | `` |
| `customTLSSecret.name` | A secret with TLS certificate generated for external communications | `""` |
| `customReplicationTLSSecret.name` | A secret with TLS certificate generated for internal communications | `""` |
| `tlsOnly` | Set to true to force all HBA records to use the `hostssl` record type. | `false` |
| `openshift` | Set to true if the cluster is being deployed on OpenShift, set to false otherwise, or unset it for autodetection | `false` |
| `users.name` | The name of the PostgreSQL user | `""` |
| `users.databases` | Databases accessible by a specific PostgreSQL user with rights to create objects in them (the option is ignored for postgres user; also, modifying it can’t be used to revoke the already given access) | `{}` |
Expand Down
2 changes: 2 additions & 0 deletions charts/pg-db/templates/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ spec:
{{- end }}
{{- end }}

tlsOnly: {{ .Values.tlsOnly }}

openshift: {{ default false .Values.openshift }}

{{- if .Values.users }}
Expand Down
2 changes: 2 additions & 0 deletions charts/pg-db/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ customTLSSecret:
customReplicationTLSSecret:
name: ""

# tlsOnly: false

# openshift: true

# users:
Expand Down
Loading