Skip to content

Commit 9c03b42

Browse files
committed
Fix off-by-one in related images
Issue: [sc-15680]
1 parent af16152 commit 9c03b42

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

config/manager/manager.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@ spec:
1919
- name: CRUNCHY_DEBUG
2020
value: "true"
2121
- name: RELATED_IMAGE_POSTGRES_13
22-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.8-0"
22+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.8-1"
2323
- name: RELATED_IMAGE_POSTGRES_13_GIS_3.0
24-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.8-3.0-0"
24+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.8-3.0-1"
2525
- name: RELATED_IMAGE_POSTGRES_13_GIS_3.1
26-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.8-3.1-0"
26+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.8-3.1-1"
2727
- name: RELATED_IMAGE_POSTGRES_14
28-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.5-0"
28+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.5-1"
2929
- name: RELATED_IMAGE_POSTGRES_14_GIS_3.1
30-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.5-3.1-0"
30+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.5-3.1-1"
3131
- name: RELATED_IMAGE_POSTGRES_14_GIS_3.2
32-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.5-3.2-0"
32+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.5-3.2-1"
3333
- name: RELATED_IMAGE_PGADMIN
34-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-3"
34+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-4"
3535
- name: RELATED_IMAGE_PGBACKREST
36-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.40-0"
36+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.40-1"
3737
- name: RELATED_IMAGE_PGBOUNCER
38-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.17-0"
38+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.17-1"
3939
- name: RELATED_IMAGE_PGEXPORTER
4040
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.2.0-0"
4141
securityContext:

docs/config.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ menushortcutsnewtab = true # set true to open shortcuts links to a new tab/windo
2828
enableGitInfo = true
2929
operatorVersion = "5.2.0"
3030
operatorVersionLatestRel5_0 = "5.0.8"
31-
imageCrunchyPostgres = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.5-0"
32-
imageCrunchyPostgresPrivate = "registry.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.5-0"
33-
imageCrunchyPGBackrest = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.40-0"
34-
imageCrunchyPGBackrestPrivate = "registry.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.40-0"
35-
imageCrunchyPGBouncer = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.17-0"
31+
imageCrunchyPostgres = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.5-1"
32+
imageCrunchyPostgresPrivate = "registry.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.5-1"
33+
imageCrunchyPGBackrest = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.40-1"
34+
imageCrunchyPGBackrestPrivate = "registry.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.40-1"
35+
imageCrunchyPGBouncer = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.17-1"
3636
imageCrunchyExporter = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.2.0-0"
37-
imageCrunchyPGAdmin = "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-3"
37+
imageCrunchyPGAdmin = "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-4"
3838
imageCrunchyPGUpgrade = ""
3939
operatorRepository = "registry.developers.crunchydata.com/crunchydata/postgres-operator"
4040
operatorRepositoryPrivate = "registry.crunchydata.com/crunchydata/postgres-operator"
4141
postgresOperatorTag = "ubi8-5.2.0-0"
42-
PGBouncerComponentTagUbi8 = "ubi8-1.17-0"
42+
PGBouncerComponentTagUbi8 = "ubi8-1.17-1"
4343
PGBouncerTagUbi8 = "ubi8-5.2.0-0"
44-
postgres14GIS32ComponentTagUbi8 = "ubi8-14.5-3.2-0"
44+
postgres14GIS32ComponentTagUbi8 = "ubi8-14.5-3.2-1"
4545
postgres14GIS32TagUbi8 = "ubi8-14.5-3.2-5.2.0-0"
46-
postgres14GIS31ComponentTagUbi8 = "ubi8-14.5-3.1-0"
46+
postgres14GIS31ComponentTagUbi8 = "ubi8-14.5-3.1-1"
4747
postgres14GIS31TagUbi8 = "ubi8-14.5-3.1-5.2.0-0"
4848
fromPostgresVersion = "13"
4949
postgresVersion = "14"

examples/postgrescluster/postgrescluster.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: PostgresCluster
33
metadata:
44
name: hippo
55
spec:
6-
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.5-0
6+
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.5-1
77
postgresVersion: 14
88
instances:
99
- name: instance1
@@ -15,7 +15,7 @@ spec:
1515
storage: 1Gi
1616
backups:
1717
pgbackrest:
18-
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.40-0
18+
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.40-1
1919
repos:
2020
- name: repo1
2121
volume:
@@ -35,4 +35,4 @@ spec:
3535
storage: 1Gi
3636
proxy:
3737
pgBouncer:
38-
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.17-0
38+
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.17-1

0 commit comments

Comments
 (0)