Unverified Commit b97aa00b authored by andrewlecuyer's avatar andrewlecuyer Committed by GitHub
Browse files

Updates to CRDs & Component Versions

Various CRD and component version updates.

[sc-13037]
parent e0d6196b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,4 +3,4 @@ name: pgo
description: A Helm chart for Kubernetes
type: application
version: 0.2.1
appVersion: 5.0.3
appVersion: 5.0.4
+7 −0
Original line number Diff line number Diff line
@@ -3394,6 +3394,8 @@ spec:
                  type: object
                type: array
              instances:
                description: Specifies one or more sets of PostgreSQL pods that replicate
                  data for this cluster.
                items:
                  properties:
                    affinity:
@@ -4172,6 +4174,10 @@ spec:
                      type: object
                    name:
                      default: ""
                      description: Name that associates this set of PostgreSQL pods.
                        This field is optional when only one instance set is defined.
                        Each instance set in a cluster must have a unique name.
                      pattern: ^([a-z0-9]([-a-z0-9]*[a-z0-9])?)?$
                      type: string
                    priorityClassName:
                      description: 'Priority class name for the PostgreSQL pod. Changing
@@ -4179,6 +4185,7 @@ spec:
                      type: string
                    replicas:
                      default: 1
                      description: Number of desired PostgreSQL pods.
                      format: int32
                      minimum: 1
                      type: integer
+8 −8
Original line number Diff line number Diff line
---
## Provide image repository and tag
image:
  image: registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi8-5.0.3-0
  image: registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi8-5.0.4-0

relatedImages:
  postgres_14:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-14.0-0
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-14.1-0
  postgres_14_gis_3.1:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-14.0-3.1-0
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-14.1-3.1-0
  postgres_13:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
  postgres_13_gis_3.1:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-13.4-3.1-1
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-13.5-3.1-0
  pgbackrest:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35-0
    image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36-0
  pgbouncer:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-3
    image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-0
  pgexporter:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.3-0
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.4-0

## Install in default or single namespace mode
singleNamespace: false
+2 −2
Original line number Diff line number Diff line
@@ -2,5 +2,5 @@ apiVersion: v2
name: postgrescluster
description: A Helm chart for Kubernetes
type: application
version: 0.2.0
appVersion: 5.0.3
version: 0.2.1
appVersion: 5.0.4
+4 −4
Original line number Diff line number Diff line
@@ -47,19 +47,19 @@
# below value. "postgresVersion" needs to match the version of Postgres that is
# used here. If using the GIS-enabled Postgres image, you need to ensure
# "postGISVersion" matches the version of PostGIS used.
# imagePostgres: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.4-1
# imagePostgres: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0

# imagePgBackRest is the pgBackRest backup utility image. This defaults to the
# below value.
# imagePgBackRest: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.35-0
# imagePgBackRest: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36-0

# imagePgBouncer is the image for the PgBouncer connection pooler. This defaults
# to the below value.
# imagePgBouncer: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.15-3
# imagePgBouncer: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-0

# imageExporter is the image name for the exporter used as a part of monitoring.
# This defaults to the value below.
# imageExporter: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.3-0
# imageExporter: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.4-0

###########################
# Basic Postgres Settings #
Loading