Skip to content

Commit d16b11c

Browse files
committed
Updated images to the latest versions and updated to postgres 15
Issue [sc-17991]
1 parent 1e1f95d commit d16b11c

File tree

17 files changed

+64
-64
lines changed

17 files changed

+64
-64
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ Please provide the following details:
2929

3030
- Platform: (`Kubernetes`, `OpenShift`, `Rancher`, `GKE`, `EKS`, `AKS` etc.)
3131
- Platform Version: (e.g. `1.20.3`, `4.7.0`)
32-
- PGO Image Tag: (e.g. `ubi8-5.3.0-0`)
33-
- Postgres Version (e.g. `14`)
32+
- PGO Image Tag: (e.g. `ubi8-5.3.1-0`)
33+
- Postgres Version (e.g. `15`)
3434
- Storage: (e.g. `hostpath`, `nfs`, or the name of your storage class)
3535

3636
## Steps to Reproduce

.github/ISSUE_TEMPLATE/feature_request.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Please provide the following details:
3232

3333
- Platform: (`Kubernetes`, `OpenShift`, `Rancher`, `GKE`, `EKS`, `AKS` etc.)
3434
- Platform Version: (e.g. `1.20.3`, `4.7.0`)
35-
- PGO Image Tag: (e.g. `ubi8-5.3.0-0`)
36-
- Postgres Version (e.g. `14`)
35+
- PGO Image Tag: (e.g. `ubi8-5.3.1-0`)
36+
- Postgres Version (e.g. `15`)
3737
- Storage: (e.g. `hostpath`, `nfs`, or the name of your storage class)
3838
- Number of Postgres clusters: (`XYZ`)
3939

.github/ISSUE_TEMPLATE/support---question-and-answer.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ Please provide the following details:
3131
- Platform: (`Kubernetes`, `OpenShift`, `Rancher`, `GKE`, `EKS`, `AKS` etc.)
3232
- Platform Version: (e.g. `1.20.3`, `4.7.0`)
3333
- PGO Image Tag: (e.g. `ubi8-5.1.0-0`)
34-
- Postgres Version (e.g. `14`)
34+
- Postgres Version (e.g. `15`)
3535
- Storage: (e.g. `hostpath`, `nfs`, or the name of your storage class)

Makefile

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ CRUNCHY_POSTGRES_EXPORTER_DESCRIPTION ?= \
1313
and has a SQL interface to a database to allow for metrics collection.
1414
CRUNCHY_POSTGRES_EXPORTER_URL ?= https://www.crunchydata.com/products/crunchy-postgresql-for-kubernetes
1515
CRUNCHY_POSTGRES_EXPORTER_IMAGE_PREFIX ?= $(PGO_IMAGE_PREFIX)
16-
CRUNCHY_POSTGRES_EXPORTER_PG_VERSION ?= 14
17-
CRUNCHY_POSTGRES_EXPORTER_PG_FULL_VERSION ?= 14.6
16+
CRUNCHY_POSTGRES_EXPORTER_PG_VERSION ?= 15
17+
CRUNCHY_POSTGRES_EXPORTER_PG_FULL_VERSION ?= 15.2
1818

1919
PGMONITOR_DIR ?= hack/tools/pgmonitor
2020
PGMONITOR_VERSION ?= 'v4.8.0'
@@ -268,11 +268,11 @@ check-kuttl: ## example command: make check-kuttl KUTTL_TEST='
268268
--config testing/kuttl/kuttl-test.yaml
269269

270270
.PHONY: generate-kuttl
271-
generate-kuttl: export KUTTL_PG_UPGRADE_FROM_VERSION ?= 13
272-
generate-kuttl: export KUTTL_PG_UPGRADE_TO_VERSION ?= 14
273-
generate-kuttl: export KUTTL_PG_VERSION ?= 14
274-
generate-kuttl: export KUTTL_POSTGIS_VERSION ?= 3.1
275-
generate-kuttl: export KUTTL_PSQL_IMAGE ?= registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.6-2
271+
generate-kuttl: export KUTTL_PG_UPGRADE_FROM_VERSION ?= 14
272+
generate-kuttl: export KUTTL_PG_UPGRADE_TO_VERSION ?= 15
273+
generate-kuttl: export KUTTL_PG_VERSION ?= 15
274+
generate-kuttl: export KUTTL_POSTGIS_VERSION ?= 3.3
275+
generate-kuttl: export KUTTL_PSQL_IMAGE ?= registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-15.2-0
276276
generate-kuttl: ## Generate kuttl tests
277277
[ ! -d testing/kuttl/e2e-generated ] || rm -r testing/kuttl/e2e-generated
278278
[ ! -d testing/kuttl/e2e-generated-other ] || rm -r testing/kuttl/e2e-generated-other

build/crd/pgupgrades/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ patches:
3434
path: "/metadata/labels"
3535
value:
3636
app.kubernetes.io/name: pgo
37-
app.kubernetes.io/version: 5.3.0
37+
app.kubernetes.io/version: 5.3.1

build/crd/postgresclusters/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ patchesJson6902:
3939
path: "/metadata/labels"
4040
value:
4141
app.kubernetes.io/name: pgo
42-
app.kubernetes.io/version: 5.3.0
42+
app.kubernetes.io/version: 5.3.1

config/crd/bases/postgres-operator.crunchydata.com_pgupgrades.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
creationTimestamp: null
77
labels:
88
app.kubernetes.io/name: pgo
9-
app.kubernetes.io/version: 5.3.0
9+
app.kubernetes.io/version: 5.3.1
1010
name: pgupgrades.postgres-operator.crunchydata.com
1111
spec:
1212
group: postgres-operator.crunchydata.com

config/crd/bases/postgres-operator.crunchydata.com_postgresclusters.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
creationTimestamp: null
77
labels:
88
app.kubernetes.io/name: pgo
9-
app.kubernetes.io/version: 5.3.0
9+
app.kubernetes.io/version: 5.3.1
1010
name: postgresclusters.postgres-operator.crunchydata.com
1111
spec:
1212
group: postgres-operator.crunchydata.com

config/manager/manager.yaml

+11-11
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,27 @@ spec:
1919
- name: CRUNCHY_DEBUG
2020
value: "true"
2121
- name: RELATED_IMAGE_POSTGRES_14
22-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.6-2"
22+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.7-0"
2323
- name: RELATED_IMAGE_POSTGRES_14_GIS_3.1
24-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.6-3.1-2"
24+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.7-3.1-0"
2525
- name: RELATED_IMAGE_POSTGRES_14_GIS_3.2
26-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.6-3.2-2"
26+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.7-3.2-0"
2727
- name: RELATED_IMAGE_POSTGRES_14_GIS_3.3
28-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.6-3.3-2"
28+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.7-3.3-0"
2929
- name: RELATED_IMAGE_POSTGRES_15
30-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-15.1-0"
30+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-15.2-0"
3131
- name: RELATED_IMAGE_POSTGRES_15_GIS_3.3
32-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-15.1-3.3-0"
32+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-15.2-3.3-0"
3333
- name: RELATED_IMAGE_PGADMIN
34-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-8"
34+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-10"
3535
- name: RELATED_IMAGE_PGBACKREST
36-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.41-2"
36+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.41-4"
3737
- name: RELATED_IMAGE_PGBOUNCER
38-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.17-5"
38+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.18-0"
3939
- name: RELATED_IMAGE_PGEXPORTER
40-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.3.0-0"
40+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.3.1-0"
4141
- name: RELATED_IMAGE_PGUPGRADE
42-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-upgrade:ubi8-5.3.0-0"
42+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-upgrade:ubi8-5.3.1-0"
4343
securityContext:
4444
allowPrivilegeEscalation: false
4545
capabilities: { drop: [ALL] }

docs/config.toml

+23-23
Original file line numberDiff line numberDiff line change
@@ -26,32 +26,32 @@ disableNavChevron = false # set true to hide next/prev chevron, default is false
2626
highlightClientSide = false # set true to use highlight.pack.js instead of the default hugo chroma highlighter
2727
menushortcutsnewtab = true # set true to open shortcuts links to a new tab/window
2828
enableGitInfo = true
29-
operatorVersion = "5.3.0"
29+
operatorVersion = "5.3.1"
3030
operatorVersionLatestRel5_0 = "5.0.8"
31-
imageCrunchyPostgres = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.6-2"
32-
imageCrunchyPostgresPrivate = "registry.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.6-2"
33-
imageCrunchyPGBackrest = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.41-2"
34-
imageCrunchyPGBackrestPrivate = "registry.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.41-2"
35-
imageCrunchyPGBouncer = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.17-5"
36-
imageCrunchyExporter = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.3.0-0"
37-
imageCrunchyPGAdmin = "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-4"
38-
imageCrunchyPGUpgrade = "registry.developers.crunchydata.com/crunchydata/crunchy-upgrade:ubi8-5.3.0-0"
31+
imageCrunchyPostgres = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-15.2-0"
32+
imageCrunchyPostgresPrivate = "registry.crunchydata.com/crunchydata/crunchy-postgres:ubi8-15.2-0"
33+
imageCrunchyPGBackrest = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.41-4"
34+
imageCrunchyPGBackrestPrivate = "registry.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.41-4"
35+
imageCrunchyPGBouncer = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.18-0"
36+
imageCrunchyExporter = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.3.1-0"
37+
imageCrunchyPGAdmin = "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-10"
38+
imageCrunchyPGUpgrade = "registry.developers.crunchydata.com/crunchydata/crunchy-upgrade:ubi8-5.3.1-0"
3939
operatorRepository = "registry.developers.crunchydata.com/crunchydata/postgres-operator"
4040
operatorRepositoryPrivate = "registry.crunchydata.com/crunchydata/postgres-operator"
41-
postgresOperatorTag = "ubi8-5.3.0-0"
42-
PGBouncerComponentTagUbi8 = "ubi8-1.17-1"
43-
PGBouncerTagUbi8 = "ubi8-5.3.0-0"
44-
postgres14GIS32ComponentTagUbi8 = "ubi8-14.6-3.2-2"
45-
postgres14GIS32TagUbi8 = "ubi8-14.6-3.2-5.3.0-0"
46-
postgres14GIS31ComponentTagUbi8 = "ubi8-14.6-3.1-2"
47-
postgres14GIS31TagUbi8 = "ubi8-14.6-3.1-5.3.0-0"
48-
fromPostgresVersion = "13"
49-
postgresVersion = "14"
50-
postgresVersion15 = "15.1"
51-
postgresVersion14 = "14.6"
52-
postgresVersion13 = "13.9"
53-
postgresVersion12 = "12.13"
54-
postgresVersion11 = "11.18"
41+
postgresOperatorTag = "ubi8-5.3.1-0"
42+
PGBouncerComponentTagUbi8 = "ubi8-1.18-0"
43+
PGBouncerTagUbi8 = "ubi8-5.3.1-0"
44+
postgres14GIS32ComponentTagUbi8 = "ubi8-14.7-3.2-0"
45+
postgres14GIS32TagUbi8 = "ubi8-14.7-3.2-5.3.1-0"
46+
postgres14GIS31ComponentTagUbi8 = "ubi8-14.7-3.1-0"
47+
postgres14GIS31TagUbi8 = "ubi8-14.7-3.1-5.3.1-0"
48+
fromPostgresVersion = "14"
49+
postgresVersion = "15"
50+
postgresVersion15 = "15.2"
51+
postgresVersion14 = "14.7"
52+
postgresVersion13 = "13.10"
53+
postgresVersion12 = "12.14"
54+
postgresVersion11 = "11.19"
5555
operatorHelmRepository = "oci://registry.developers.crunchydata.com/crunchydata/pgo"
5656

5757
[outputs]

docs/content/guides/huge-pages.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ kind: PostgresCluster
2626
metadata:
2727
name: hippo
2828
spec:
29-
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.6-2
30-
postgresVersion: 14
29+
image: {{< param imageCrunchyPostgres >}}
30+
postgresVersion: {{< param postgresVersion >}}
3131
instances:
3232
- name: instance1
3333
resources:

examples/postgrescluster/postgrescluster.yaml

+3-3
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-1
6+
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-15.2-0
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-1
18+
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.41-4
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-1
38+
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.18-0

installers/olm/config/examples/pgupgrade.example.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ metadata:
44
name: example-upgrade
55
spec:
66
postgresClusterName: example
7-
fromPostgresVersion: 13
8-
toPostgresVersion: 14
7+
fromPostgresVersion: 14
8+
toPostgresVersion: 15

installers/olm/config/examples/postgrescluster.example.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: PostgresCluster
33
metadata:
44
name: example
55
spec:
6-
postgresVersion: 13
6+
postgresVersion: 15
77
instances:
88
- replicas: 1
99
dataVolumeClaimSpec:

testing/kuttl/e2e-other/exporter-upgrade/00--cluster.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ kind: PostgresCluster
33
metadata:
44
name: exporter
55
spec:
6-
postgresVersion: 14
7-
image: us.gcr.io/container-suite/crunchy-postgres:ubi8-14.0-5.0.3-0
6+
postgresVersion: 15
7+
image: us.gcr.io/container-suite/crunchy-postgres:ubi8-15.2-5.3.1-0
88
instances:
99
- name: instance1
1010
dataVolumeClaimSpec:
@@ -27,4 +27,4 @@ spec:
2727
monitoring:
2828
pgmonitor:
2929
exporter:
30-
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.2.0-0
30+
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.3.1-0

testing/kuttl/e2e-other/exporter-upgrade/02--update-cluster.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ kind: PostgresCluster
33
metadata:
44
name: exporter
55
spec:
6-
postgresVersion: 14
7-
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.5-1
6+
postgresVersion: 15
7+
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-15.2-0

testing/kuttl/kuttl-test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: kuttl.dev/v1beta1
22
kind: TestSuite
33
testDirs:
44
- testing/kuttl/e2e-generated/
5-
timeout: 180
5+
timeout: 300
66
parallel: 2
77
# by default kuttl will run in a generated namespace to override
88
# that functionality simply uncomment the line below and replace

0 commit comments

Comments
 (0)