Skip to content

Commit fd5c247

Browse files
committed
Update Version 5.2.0 to 5.3.0
Update PGO and Postgres versions for 5.3.0. Issue: [sc-16943]
1 parent 3163d08 commit fd5c247

File tree

15 files changed

+104
-45
lines changed

15 files changed

+104
-45
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ 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.2.0-0`)
32+
- PGO Image Tag: (e.g. `ubi8-5.3.0-0`)
3333
- Postgres Version (e.g. `14`)
3434
- Storage: (e.g. `hostpath`, `nfs`, or the name of your storage class)
3535

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ 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.2.0-0`)
35+
- PGO Image Tag: (e.g. `ubi8-5.3.0-0`)
3636
- Postgres Version (e.g. `14`)
3737
- Storage: (e.g. `hostpath`, `nfs`, or the name of your storage class)
3838
- Number of Postgres clusters: (`XYZ`)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PGO_IMAGE_PREFIX ?= crunchydata
66
PGO_IMAGE_TAG ?= $(PGO_BASEOS)-$(PGO_VERSION)
77
PGO_VERSION ?= $(shell git describe --tags)
88
PGO_PG_VERSION ?= 14
9-
PGO_PG_FULLVERSION ?= 14.5
9+
PGO_PG_FULLVERSION ?= 14.6
1010
PGO_KUBE_CLIENT ?= kubectl
1111

1212
RELTMPDIR=/tmp/release.$(PGO_VERSION)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ For more information about which versions of the PostgreSQL Operator include whi
176176

177177
PGO, the Postgres Operator from Crunchy Data, is tested on the following platforms:
178178

179-
- Kubernetes 1.21-1.24
180-
- OpenShift 4.6+
179+
- Kubernetes 1.22-1.25
180+
- OpenShift 4.8-4.11
181181
- Rancher
182182
- Google Kubernetes Engine (GKE), including Anthos
183183
- Amazon EKS

build/crd/pgupgrades/kustomization.yaml

Lines changed: 1 addition & 1 deletion
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.2.0
37+
app.kubernetes.io/version: 5.3.0

build/crd/postgresclusters/kustomization.yaml

Lines changed: 1 addition & 1 deletion
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.2.0
42+
app.kubernetes.io/version: 5.3.0

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

Lines changed: 1 addition & 1 deletion
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.2.0
9+
app.kubernetes.io/version: 5.3.0
1010
name: pgupgrades.postgres-operator.crunchydata.com
1111
spec:
1212
group: postgres-operator.crunchydata.com

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

Lines changed: 1 addition & 1 deletion
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.2.0
9+
app.kubernetes.io/version: 5.3.0
1010
name: postgresclusters.postgres-operator.crunchydata.com
1111
spec:
1212
group: postgres-operator.crunchydata.com

config/default/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ bases:
1111
images:
1212
- name: postgres-operator
1313
newName: registry.developers.crunchydata.com/crunchydata/postgres-operator
14-
newTag: ubi8-5.2.0-0
14+
newTag: ubi8-5.3.0-0

config/manager/manager.yaml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,29 @@ 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-1"
22+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.9-2"
2323
- name: RELATED_IMAGE_POSTGRES_13_GIS_3.0
24-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.8-3.0-1"
24+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.9-3.0-2"
2525
- name: RELATED_IMAGE_POSTGRES_13_GIS_3.1
26-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.8-3.1-1"
26+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.9-3.1-2"
2727
- name: RELATED_IMAGE_POSTGRES_14
28-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.5-1"
28+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.6-2"
2929
- name: RELATED_IMAGE_POSTGRES_14_GIS_3.1
30-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.5-3.1-1"
30+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.6-3.1-2"
3131
- name: RELATED_IMAGE_POSTGRES_14_GIS_3.2
32-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.5-3.2-1"
32+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.6-3.2-2"
33+
- name: RELATED_IMAGE_POSTGRES_14_GIS_3.3
34+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.6-3.3-0"
35+
- name: RELATED_IMAGE_POSTGRES_15_GIS_3.3
36+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-15.0-3.3-0"
3337
- name: RELATED_IMAGE_PGADMIN
34-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-4"
38+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-8"
3539
- name: RELATED_IMAGE_PGBACKREST
36-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.40-1"
40+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.41-2"
3741
- name: RELATED_IMAGE_PGBOUNCER
38-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.17-1"
42+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.17-5"
3943
- name: RELATED_IMAGE_PGEXPORTER
40-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.2.0-0"
44+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.3.0-0"
4145
securityContext:
4246
allowPrivilegeEscalation: false
4347
capabilities: { drop: [ALL] }

0 commit comments

Comments
 (0)