Fix accessModes variable name in readme and fix formatting (#6364)

Co-authored-by: Jacek Czapla <jacek.czapla@dac.digital>
This commit is contained in:
Jacek Czapla
2021-05-14 09:46:50 +02:00
committed by GitHub
parent b5728c17c6
commit 285751495a

View File

@@ -77,7 +77,7 @@ The following table lists the configurable parameters of the PostgreSQL HA chart
| `postgresqlImage.pullPolicy` | PostgreSQL with Repmgr image pull policy | `IfNotPresent` |
| `postgresqlImage.pullSecrets` | Specify docker-registry secret names as an array | `[]` (does not add image pull secrets to deployed pods) |
| `postgresqlImage.debug` | Specify if debug logs should be enabled | `false` |
| `postgresql.hostAliases` | Add deployment host aliases | `[]` |
| `postgresql.hostAliases` | Add deployment host aliases | `[]` |
| `postgresql.labels` | Map of labels to add to the statefulset. Evaluated as a template | `{}` |
| `postgresql.podLabels` | Map of labels to add to the pods. Evaluated as a template | `{}` |
| `postgresql.replicaCount` | The number of replicas to deploy | `2` |
@@ -171,7 +171,7 @@ The following table lists the configurable parameters of the PostgreSQL HA chart
| `pgpool.customUsers.passwords` | Comma or semicolon separated list of the associated passwords for the users to be added to pgpool_passwd | `nil` |
| `pgpool.customUsersSecret` | Name of a secret containing the usernames and passwords of accounts that will be added to pgpool_passwd | `nil` |
| `pgpool.srCheckDatabase` | Name of the database to perform streaming replication checks | `postgres` |
| `pgpool.hostAliases` | Add deployment host aliases | `[]` |
| `pgpool.hostAliases` | Add deployment host aliases | `[]` |
| `pgpool.labels` | Map of labels to add to the deployment. Evaluated as a template | `{}` |
| `pgpool.podLabels` | Map of labels to add to the pods. Evaluated as a template | `{}` |
| `pgpool.replicaCount` | The number of replicas to deploy | `1` |
@@ -224,7 +224,7 @@ The following table lists the configurable parameters of the PostgreSQL HA chart
| `pgpool.clientMinMessages` | Log level for clients | `error` |
| `pgpool.numInitChildren` | The number of preforked Pgpool-II server processes. | `32` |
| `pgpool.maxPool` | The maximum number of cached connections in each child process | `15` |
| `pgpool.childMaxConnections` | The maximum number of client connections in each child process | `nil` |
| `pgpool.childMaxConnections` | The maximum number of client connections in each child process | `nil` |
| `pgpool.childLifeTime` | The time in seconds to terminate a Pgpool-II child process if it remains idle | `nil` |
| `pgpool.clientIdleLimit` | The time in seconds to disconnect a client if it remains idle since the last query | `nil` |
| `pgpool.connectionLifeTime` | The time in seconds to terminate the cached connections to the PostgreSQL backend | `nil` |
@@ -285,7 +285,7 @@ The following table lists the configurable parameters of the PostgreSQL HA chart
| `persistence.existingClaim` | Use a existing PVC which must be created manually before bound. PVC will be shared between all replicas, which is useful for special cases only. | `nil` |
| `persistence.storageClass` | Specify the `storageClass` used to provision the volume | `nil` |
| `persistence.mountPath` | Path to mount data volume at | `nil` |
| `persistence.accessMode` | Access mode of data volume | `ReadWriteOnce` |
| `persistence.accessModes` | List of access modes of data volume | `ReadWriteOnce` |
| `persistence.size` | Size of data volume | `8Gi` |
| `persistence.annotations` | Persistent Volume Claim annotations | `{}` |
| `persistence.selector` | Selector to match an existing Persistent Volume (this value is evaluated as a template) | `{}` |
@@ -299,7 +299,7 @@ The following table lists the configurable parameters of the PostgreSQL HA chart
| `service.loadBalancerSourceRanges` | Address that are allowed when service is LoadBalancer | `[]` |
| `service.clusterIP` | Static clusterIP or None for headless services | `nil` |
| `service.externalTrafficPolicy` | Enable client source IP preservation | `Cluster` |
| `service.sessionAffinity ` | Session Affinity for Kubernetes service, can be "None" or "ClientIP" | `None` |
| `service.sessionAffinity ` | Session Affinity for Kubernetes service, can be "None" or "ClientIP" | `None` |
| `networkPolicy.enabled` | Enable NetworkPolicy | `false` |
| `networkPolicy.allowExternal` | Don't require client label for connections | `true` |