Commit 850e3697 authored by Chris Bandy's avatar Chris Bandy Committed by andrewlecuyer
Browse files

Add pgupgrade to related images

Issue: [sc-13269]
parent 2c2cec26
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2,5 +2,5 @@ apiVersion: v2
name: pgo
description: Installer for PGO, the open source Postgres Operator from Crunchy Data
type: application
version: 0.2.3
appVersion: 5.0.4
version: 0.2.4
appVersion: 5.1.0
+10 −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.4-0
  image: registry.developers.crunchydata.com/crunchydata/postgres-operator:ubi8-5.1.0-0

relatedImages:
  postgres_14:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-14.1-0
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-14.1-1
  postgres_14_gis_3.1:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-14.1-3.1-0
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-14.1-3.1-1
  postgres_13:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-1
  postgres_13_gis_3.1:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-13.5-3.1-0
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-13.5-3.1-1
  pgadmin:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:centos8-4.20-0
  pgbackrest:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36-0
    image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36-1
  pgbouncer:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-0
    image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-1
  pgexporter:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.0.4-0
    image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.0-0
  pgupgrade:
    image: registry.developers.crunchydata.com/crunchydata/crunchy-upgrade:ubi8-5.1.0-0

# singleNamespace determines how to install PGO to watch namesapces. If set to
# false, PGO will watch for Postgres clusters in all namesapces Setting to
+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.1
appVersion: 5.0.4
version: 0.2.2
appVersion: 5.1.0
+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.5-0
# imagePostgres: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-1

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

# 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.16-0
# imagePgBouncer: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-1

# 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.4-0
# imageExporter: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.0-0

###########################
# Basic Postgres Settings #
+3 −3
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@ kind: PostgresCluster
metadata:
  name: hippo-azure
spec:
  image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0
  postgresVersion: 13
  image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-14.1-1
  postgresVersion: 14
  instances:
    - dataVolumeClaimSpec:
        accessModes:
@@ -14,7 +14,7 @@ spec:
            storage: 1Gi
  backups:
    pgbackrest:
      image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36-0
      image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36-1
      configuration:
      - secret:
          name: pgo-azure-creds
Loading