Skip to content

Commit 59c47ad

Browse files
committed
Fix typos in READMEs and values.yaml
1 parent af88ad9 commit 59c47ad

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

helm/postgres/values.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ postgresVersion: 14
133133
# patroni: {}
134134

135135
# users sets any custom Postgres users and databases that they have access to
136-
# as well as any permissions assoicated with the user account.
136+
# as well as any permissions associated with the user account.
137137
# users: {}
138138

139139
# dataSource specifies a data source for bootstrapping a Postgres cluster.
@@ -149,14 +149,14 @@ postgresVersion: 14
149149
# provides the information for the replication user.
150150
# customReplicationTLSSecret: {}
151151

152-
# databaseInitSQL referencs a ConfigMap that contains a SQL file that should be
152+
# databaseInitSQL references a ConfigMap that contains a SQL file that should be
153153
# run a cluster bootstrap.
154154
# databaseInitSQL:
155155
# name: bootstrap-sql
156156
# key: bootstrap.sql
157157

158-
# standby sets whether or not to run this as a standby cluster. Setting "enabled" to
159-
# "true" eunables the standby cluster while "repoName" points to a pgBackRest
158+
# standby sets whether to run this as a standby cluster. Setting "enabled" to
159+
# "true" enables the standby cluster while "repoName" points to a pgBackRest
160160
# archive to replay WAL files from, and "host" and "port" point to a primary
161161
# cluster from which to stream data.
162162
# standby:
@@ -165,7 +165,7 @@ postgresVersion: 14
165165
# host: "192.0.2.2"
166166
# port: 5432
167167

168-
# shutdown when set scales the entire workload to zero. By default this is not
168+
# shutdown when set scales the entire workload to zero. By default, this is not
169169
# set.
170170
# shutdown: true
171171

@@ -191,15 +191,15 @@ postgresVersion: 14
191191
# # endpoint specifies the S3 endpoint to use.
192192
# endpoint: ""
193193
# # region specifies the S3 region to use. If your S3 storage system does not
194-
# # use "region", fill this in with a random vaule.
194+
# # use "region", fill this in with a random value.
195195
# region: ""
196196
# # key is the S3 key. This is stored in a Secret.
197197
# key: ""
198-
# # keySecret is the S3 key secret. This is tored in a Secret.
198+
# # keySecret is the S3 key secret. This is stored in a Secret.
199199
# keySecret: ""
200200
# # encryptionPassphrase is an optional parameter to enable encrypted backups
201201
# # with pgBackRest. This is encrypted by pgBackRest and does not use S3's
202-
# # built-in encrpytion system.
202+
# # built-in encryption system.
203203
# encryptionPassphrase: ""
204204

205205
# gcs allows for Google Cloud Storage (GCS) to be used for backups. This allows
@@ -219,7 +219,7 @@ postgresVersion: 14
219219
# azure:
220220
# # account is the name of the Azure account to be used.
221221
# account: ""
222-
# # key is the Secret key used associated with the Azure acount.
222+
# # key is the Secret key used associated with the Azure account.
223223
# key: ""
224224
# # container is the Azure container that the backups will be stored in.
225225
# container: ""
@@ -232,7 +232,7 @@ postgresVersion: 14
232232
# You can't set "multiBackupRepos" and any of the individual quickstarts at the
233233
# same time. "multiBackupRepos" will take precedence.
234234
#
235-
# Below is an example that enables one of each backup type. Note all of the
235+
# Below is an example that enables one of each backup type. Not all
236236
# available quickstart options are presented below; please see the backup types
237237
# if you want to see how each option works.
238238
# multiBackupRepos:
@@ -261,15 +261,15 @@ postgresVersion: 14
261261
# Pooling / pgBouncer Settings #
262262
################################
263263

264-
# pgBouncerConfig sets all of the pgBouncer portion of the spec except for
264+
# pgBouncerConfig sets all the pgBouncer portion of the spec except for
265265
# image. To set image, you need to set the "pgBouncer" setting.
266266
# pgBouncerConfig: {}
267267

268268
#######################
269269
# Monitoring Settings #
270270
#######################
271271

272-
# monitoringConfig sets all of the monitoring portion of the spec except for the
272+
# monitoringConfig sets all the monitoring portion of the spec except for the
273273
# image. To set the image, which also enables monitoring, you need to set the
274274
# "monitoring" setting.
275275
# monitoringConfig: {}
@@ -280,7 +280,7 @@ postgresVersion: 14
280280

281281
# metadata contains any metadata that should be applied to all PGO managed
282282
# objects in this Postgres cluster. This includes "annotations" and "labels" as
283-
# subkeys.
283+
# sub-keys.
284284
# metadata: {}
285285

286286
# service customizes the Service that exposes the Postgres primary.
@@ -296,7 +296,7 @@ postgresVersion: 14
296296
# imagePullSecrets: []
297297

298298
# supplementalGroups sets any group IDs that should be assigned to
299-
# Pods, particularly around file system contraints within a system
299+
# Pods, particularly around file system constraints within a system
300300
# supplementalGroups: []
301301

302302
# disableDefaultPodScheduling if set to true, will disable any of the default
@@ -307,6 +307,6 @@ postgresVersion: 14
307307

308308
# openshift can set explicitly if this is an OpenShift cluster, or a cluster
309309
# that uses a SecurityContextConstraint. This usually does not need to be set,
310-
# but you may want to explicitly set it to "false" when using a SCC like
310+
# but you may want to explicitly set it to "false" when using an SCC like
311311
# "anyuid"
312312
# openshift: false

kustomize/certmanager/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This example shows how to use custom self-signed certificates generated by Cert-
1111
The first step is to deploy Cert-Manager to the Kubernetes cluster. To do this, follow the instructions on the Cert-Manager website (https://cert-manager.io/docs/installation/).
1212

1313
## Setup Certificate Issuer
14-
After Cert-Manager has been deployed, the next step used in this example is to setup a Certificate Issuer. The Certificate Issuer can be configured to be local to a namespace or cluster wide. In the examples provided here, a cluster wide issuer is created.
14+
After Cert-Manager has been deployed, the next step used in this example is to set up a Certificate Issuer. The Certificate Issuer can be configured to be local to a namespace or cluster wide. In the examples provided here, a cluster wide issuer is created.
1515

1616
### Configure Issuer
1717

@@ -25,7 +25,7 @@ This Kustomize deployment performs the following actions:
2525
* Generates a common CA certificate.
2626
* Creates a cluster wide (ClusterIssuer) CA certificate issuer using the generated CA certificate.
2727

28-
By default the issues are created in the cert-manager namespace which is the default namespace for Cert-Manager.
28+
By default, the issues are created in the cert-manager namespace which is the default namespace for Cert-Manager.
2929

3030
The CA certificate issuer is important as the Postgres components require that the ca.crt be the same for the certificates generated to support Postgres.
3131

0 commit comments

Comments
 (0)