1515# available as one of the "RELATED_IMAGE_POSTGRES_..." images as part of the PGO
1616# installation if you want to deploy the image without setting the "postgres"
1717# image variable. This value is required.
18- postgresVersion : 14
18+ postgresVersion : 15
1919
20- # postGISVersion if sets and coupled with a PostGIS enabled container, enables
20+ # postGISVersion if set and coupled with a PostGIS enabled container, enables
2121# PostGIS. This version number needs to be available as one of the
2222# "RELATED_IMAGE_POSTGRES_..." images as part of the PGO installation if you
2323# want to deploy the image without setting the "postgres" image variable.
@@ -35,7 +35,7 @@ postgresVersion: 14
3535# pgBouncerReplicas: 1
3636
3737# monitoring enables the ability to monitor the Postgres cluster through a
38- # metrics exporter than can be scraped by Prometheus. This defaults to the value
38+ # metrics exporter that can be scraped by Prometheus. This defaults to the value
3939# below.
4040# monitoring: false
4141
@@ -47,19 +47,19 @@ postgresVersion: 14
4747# below value. "postgresVersion" needs to match the version of Postgres that is
4848# used here. If using the GIS-enabled Postgres image, you need to ensure
4949# "postGISVersion" matches the version of PostGIS used.
50- # imagePostgres: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.8-1
50+ # imagePostgres: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-15.2-0
5151
5252# imagePgBackRest is the pgBackRest backup utility image. This defaults to the
5353# below value.
54- # imagePgBackRest: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.41-2
54+ # imagePgBackRest: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.41-4
5555
5656# imagePgBouncer is the image for the PgBouncer connection pooler. This defaults
5757# to the below value.
58- # imagePgBouncer: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.17-5
58+ # imagePgBouncer: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.18-0
5959
6060# imageExporter is the image name for the exporter used as a part of monitoring.
6161# This defaults to the value below.
62- # imageExporter: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.3.0 -0
62+ # imageExporter: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.3.1 -0
6363
6464# ##########################
6565# Basic Postgres Settings #
@@ -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,21 +149,23 @@ 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. Both of the
159- # values below are required to enable a standby cluster. Setting "enabled" to
160- # "true" eunables the standby cluster while "repoName" points to a pgBackRest
161- # archive to replay WAL files from .
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
160+ # archive to replay WAL files from, and "host" and "port" point to a primary
161+ # cluster from which to stream data .
162162# standby:
163163# enabled: false
164164# repoName: repo1
165+ # host: "192.0.2.2"
166+ # port: 5432
165167
166- # 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
167169# set.
168170# shutdown: true
169171
@@ -189,15 +191,17 @@ postgresVersion: 14
189191# # endpoint specifies the S3 endpoint to use.
190192# endpoint: ""
191193# # region specifies the S3 region to use. If your S3 storage system does not
192- # # use "region", fill this in with a random vaule .
194+ # # use "region", fill this in with a random value .
193195# region: ""
194196# # key is the S3 key. This is stored in a Secret.
195197# key: ""
196- # # 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.
197199# keySecret: ""
200+ # # keyType can be configured to enable IAM integration via AssumeRole
201+ # keyType: ""
198202# # encryptionPassphrase is an optional parameter to enable encrypted backups
199203# # with pgBackRest. This is encrypted by pgBackRest and does not use S3's
200- # # built-in encrpytion system.
204+ # # built-in encryption system.
201205# encryptionPassphrase: ""
202206
203207# gcs allows for Google Cloud Storage (GCS) to be used for backups. This allows
@@ -217,7 +221,7 @@ postgresVersion: 14
217221# azure:
218222# # account is the name of the Azure account to be used.
219223# account: ""
220- # # key is the Secret key used associated with the Azure acount .
224+ # # key is the Secret key used associated with the Azure account .
221225# key: ""
222226# # container is the Azure container that the backups will be stored in.
223227# container: ""
@@ -230,8 +234,8 @@ postgresVersion: 14
230234# You can't set "multiBackupRepos" and any of the individual quickstarts at the
231235# same time. "multiBackupRepos" will take precedence.
232236#
233- # Below is an example that enables one of each backup type. Note all of the
234- # available quickstart options are presented below; please see the backup types
237+ # Below is an example that enables one of each backup type.
238+ # All available quickstart options are presented below; please see the backup types
235239# if you want to see how each option works.
236240# multiBackupRepos:
237241# - volume:
@@ -242,6 +246,7 @@ postgresVersion: 14
242246# region: ""
243247# key: ""
244248# keySecret: ""
249+ # keyType: ""
245250# - gcs:
246251# bucket: ""
247252# key: |
@@ -259,15 +264,15 @@ postgresVersion: 14
259264# Pooling / pgBouncer Settings #
260265# ###############################
261266
262- # pgBouncerConfig sets all of the pgBouncer portion of the spec except for
267+ # pgBouncerConfig sets all of the pgBouncer portions of the spec except for
263268# image. To set image, you need to set the "pgBouncer" setting.
264269# pgBouncerConfig: {}
265270
266271# ######################
267272# Monitoring Settings #
268273# ######################
269274
270- # monitoringConfig sets all of the monitoring portion of the spec except for the
275+ # monitoringConfig sets all of the monitoring portions of the spec except for the
271276# image. To set the image, which also enables monitoring, you need to set the
272277# "monitoring" setting.
273278# monitoringConfig: {}
@@ -278,7 +283,7 @@ postgresVersion: 14
278283
279284# metadata contains any metadata that should be applied to all PGO managed
280285# objects in this Postgres cluster. This includes "annotations" and "labels" as
281- # subkeys .
286+ # sub-keys .
282287# metadata: {}
283288
284289# service customizes the Service that exposes the Postgres primary.
@@ -294,7 +299,7 @@ postgresVersion: 14
294299# imagePullSecrets: []
295300
296301# supplementalGroups sets any group IDs that should be assigned to
297- # Pods, particularly around file system contraints within a system
302+ # Pods, particularly around file system constraints within a system
298303# supplementalGroups: []
299304
300305# disableDefaultPodScheduling if set to true, will disable any of the default
@@ -303,8 +308,8 @@ postgresVersion: 14
303308# be used in addition to any customizations that are added in.
304309# disableDefaultPodScheduling: false
305310
306- # openshift can set explicitly if this is an OpenShift cluster, or a cluster
311+ # openshift can be set explicitly if this is an OpenShift cluster or a cluster
307312# that uses a SecurityContextConstraint. This usually does not need to be set,
308- # but you may want to explicitly set it to "false" when using a SCC like
313+ # but you may want to explicitly set it to "false" when using an SCC like
309314# "anyuid"
310315# openshift: false
0 commit comments