Skip to content

Commit 21021ab

Browse files
authored
Updated pgversions and updated components in prep for (CrunchyData#3117)
v5.1.0 release [sc-13932]
1 parent 10289f2 commit 21021ab

File tree

10 files changed

+56
-47
lines changed

10 files changed

+56
-47
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ jobs:
7272
- name: Prefetch container images
7373
run: |
7474
{
75-
echo '"registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0"'
76-
echo '"registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36-0"'
77-
echo '"registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-0"'
75+
echo '"registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.6-1"'
76+
echo '"registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-0"'
77+
echo '"registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-2"'
7878
} |
7979
jq --slurp --arg name 'image-prefetch' --argjson labels '{"name":"image-prefetch"}' '{
8080
apiVersion: "apps/v1", kind: "DaemonSet",

README.md

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

183183
PGO, the Postgres Operator from Crunchy Data, is tested on the following platforms:
184184

185-
- Kubernetes 1.18+
186-
- OpenShift 4.5+
185+
- Kubernetes 1.20+
186+
- OpenShift 4.6+
187187
- Rancher
188188
- Google Kubernetes Engine (GKE), including Anthos
189189
- Amazon EKS

config/manager/manager.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ spec:
1919
- name: CRUNCHY_DEBUG
2020
value: "true"
2121
- name: RELATED_IMAGE_POSTGRES_13
22-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-1"
22+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.6-1"
2323
- name: RELATED_IMAGE_POSTGRES_13_GIS_3.1
24-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-13.5-3.1-1"
24+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-13.6-3.1-1"
2525
- name: RELATED_IMAGE_POSTGRES_14
26-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-14.1-1"
26+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.2-1"
2727
- name: RELATED_IMAGE_POSTGRES_14_GIS_3.1
28-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:centos8-14.1-3.1-1"
28+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-gis:ubi8-14.2-3.1-1"
2929
- name: RELATED_IMAGE_PGADMIN
30-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:centos8-4.30-0"
30+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-0"
3131
- name: RELATED_IMAGE_PGBACKREST
32-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36-1"
32+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-0"
3333
- name: RELATED_IMAGE_PGBOUNCER
34-
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-1"
34+
value: "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-2"
3535
- name: RELATED_IMAGE_PGEXPORTER
3636
value: "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.0-0"
3737
securityContext:

docs/config.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,27 @@ menushortcutsnewtab = true # set true to open shortcuts links to a new tab/windo
2828
enableGitInfo = true
2929
operatorVersion = "5.1.0"
3030
operatorVersionLatestRel5_0 = "5.0.5"
31-
imageCrunchyPostgres = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.1-1"
32-
imageCrunchyPostgresPrivate = "registry.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.1-1"
33-
imageCrunchyPGBackrest = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.36-1"
34-
imageCrunchyPGBackrestPrivate = "registry.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.36-1"
35-
imageCrunchyPGBouncer = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-1"
31+
imageCrunchyPostgres = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.2-1"
32+
imageCrunchyPostgresPrivate = "registry.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.2-1"
33+
imageCrunchyPGBackrest = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-0"
34+
imageCrunchyPGBackrestPrivate = "registry.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-0"
35+
imageCrunchyPGBouncer = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-2"
3636
imageCrunchyExporter = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.0-0"
37-
imageCrunchyPGAdmin = "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.20-0"
37+
imageCrunchyPGAdmin = "registry.developers.crunchydata.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-0"
3838
operatorRepository = "registry.developers.crunchydata.com/crunchydata/postgres-operator"
3939
operatorRepositoryPrivate = "registry.crunchydata.com/crunchydata/postgres-operator"
4040
postgresOperatorTag = "ubi8-5.1.0-0"
41-
PGBouncerComponentTagUbi8 = "ubi8-1.16-1"
41+
PGBouncerComponentTagUbi8 = "ubi8-1.16-2"
4242
PGBouncerTagUbi8 = "ubi8-5.1.0-0"
43-
postgres14GIS31ComponentTagUbi8 = "ubi8-14.1-3.1-1"
44-
postgres14GIS31TagUbi8 = "ubi8-14.1-3.1-5.1.0-0"
43+
postgres14GIS31ComponentTagUbi8 = "ubi8-14.2-3.1-1"
44+
postgres14GIS31TagUbi8 = "ubi8-14.2-3.1-5.1.0-0"
4545
fromPostgresVersion = "13"
4646
postgresVersion = "14"
47-
postgresVersion14 = "14.1"
48-
postgresVersion13 = "13.5"
49-
postgresVersion12 = "12.9"
50-
postgresVersion11 = "11.14"
51-
postgresVersion10 = "10.19"
47+
postgresVersion14 = "14.2"
48+
postgresVersion13 = "13.6"
49+
postgresVersion12 = "12.10"
50+
postgresVersion11 = "11.15"
51+
postgresVersion10 = "10.20"
5252

5353
[outputs]
5454
home = [ "HTML", "RSS", "JSON"]

docs/content/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ PGO is developed with many years of production experience in automating Postgres
2424

2525
PGO, the Postgres Operator from Crunchy Data, is tested on the following platforms:
2626

27-
- Kubernetes 1.19+
27+
- Kubernetes 1.20+
2828
- OpenShift 4.6+
2929
- Rancher
3030
- Google Kubernetes Engine (GKE), including Anthos

docs/content/references/components.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ weight: 110
99

1010
PGO, the Postgres Operator from Crunchy Data, is tested on the following platforms:
1111

12-
- Kubernetes 1.19+
12+
- Kubernetes 1.20+
1313
- OpenShift 4.6+
1414
- Rancher
1515
- Google Kubernetes Engine (GKE), including Anthos
@@ -28,10 +28,12 @@ Note that for the 5.0.3 release and beyond, the Postgres containers were renamed
2828

2929
| Component | Version | PGO Version Min. | PGO Version Max. |
3030
|-----------|---------|------------------|------------------|
31+
| `crunchy-pgadmin4` | 4.30 | 5.1.0 | {{< param operatorVersion >}} |
3132
| `crunchy-pgbackrest` | 2.38 | 5.1.0 | {{< param operatorVersion >}} |
3233
| `crunchy-pgbackrest` | 2.36 | 5.0.4 | {{< param operatorVersionLatestRel5_0 >}} |
3334
| `crunchy-pgbackrest` | 2.35 | 5.0.3 | 5.0.3 |
3435
| `crunchy-pgbackrest` | 2.33 | 5.0.0 | 5.0.2 |
36+
| `crunchy-pgbouncer` | 1.16.2 | 5.1.0 | {{< param operatorVersion >}} |
3537
| `crunchy-pgbouncer` | 1.16.1 | 5.0.4 | {{< param operatorVersion >}} |
3638
| `crunchy-pgbouncer` | 1.15 | 5.0.0 | {{< param operatorVersion >}} |
3739
| `crunchy-postgres` | {{< param postgresVersion14 >}} | 5.0.3 | {{< param operatorVersion >}} |
@@ -49,7 +51,7 @@ Note that for the 5.0.3 release and beyond, the Postgres containers were renamed
4951
| `crunchy-postgres-gis` | {{< param postgresVersion10 >}}-2.4 | 5.0.3 | {{< param operatorVersion >}} |
5052
| `crunchy-postgres-gis` | {{< param postgresVersion10 >}}-2.3 | 5.0.3 | {{< param operatorVersion >}} |
5153

52-
The latest Postgres containers include Patroni 2.1.2.
54+
The latest Postgres containers include Patroni 2.1.3.
5355

5456
The following are the Postgres containers available for version 5.0.2 of PGO and older:
5557

@@ -97,23 +99,30 @@ The table also lists the initial PGO version that the version of the extension i
9799

98100
| Extension | Version | Postgres Versions | Initial PGO Version |
99101
|-----------|---------|-------------------|---------------------|
102+
| `pgAudit` | 1.6.2 | 14 | 5.1.0 |
100103
| `pgAudit` | 1.6.1 | 14 | 5.0.4 |
101104
| `pgAudit` | 1.6.0 | 14 | 5.0.3 |
105+
| `pgAudit` | 1.5.2 | 13 | 5.1.0 |
102106
| `pgAudit` | 1.5.0 | 13 | 5.0.0 |
107+
| `pgAudit` | 1.4.3 | 12 | 5.1.0 |
103108
| `pgAudit` | 1.4.1 | 12 | 5.0.0 |
109+
| `pgAudit` | 1.3.4 | 11 | 5.1.0 |
104110
| `pgAudit` | 1.3.2 | 11 | 5.0.0 |
111+
| `pgAudit` | 1.2.4 | 10 | 5.1.0 |
105112
| `pgAudit` | 1.2.2 | 10 | 5.0.0 |
106113
| `pgAudit Analyze` | 1.0.8 | 14, 13, 12, 11, 10 | 5.0.3 |
107114
| `pgAudit Analyze` | 1.0.7 | 13, 12, 11, 10 | 5.0.0 |
108115
| `pg_cron` | 1.3.1 | 14, 13, 12, 11, 10 | 5.0.0 |
109116
| `pg_partman` | 4.6.0 | 14, 13, 12, 11, 10 | 5.0.4 |
110117
| `pg_partman` | 4.5.1 | 13, 12, 11, 10 | 5.0.0 |
118+
| `pgnodemx` | 1.3.0 | 14, 13, 12, 11, 10 | 5.1.0 |
111119
| `pgnodemx` | 1.2.0 | 14, 13, 12, 11, 10 | 5.0.4 |
112120
| `pgnodemx` | 1.0.5 | 14, 13, 12, 11, 10 | 5.0.3 |
113121
| `pgnodemx` | 1.0.4 | 13, 12, 11, 10 | 5.0.0 |
114122
| `set_user` | 3.0.0 | 14, 13, 12, 11, 10 | 5.0.3 |
115123
| `set_user` | 2.0.1 | 13, 12, 11, 10 | 5.0.2 |
116124
| `set_user` | 2.0.0 | 13, 12, 11, 10 | 5.0.0 |
125+
| `TimescaleDB` | 2.6.0 | 14, 13, 12 | 5.1.0 |
117126
| `TimescaleDB` | 2.5.0 | 14, 13, 12 | 5.0.3 |
118127
| `TimescaleDB` | 2.4.2 | 13, 12 | 5.0.3 |
119128
| `TimescaleDB` | 2.4.0 | 13, 12 | 5.0.2 |

docs/content/releases/5.1.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Crunchy Postgres for Kubernetes is powered by [PGO](https://github.com/CrunchyDa
1111

1212
Crunchy Postgres for Kubernetes 5.1.0 includes the following software versions upgrades:
1313

14-
- [Patroni](https://patroni.readthedocs.io/) is now at 2.1.2.
14+
- [Patroni](https://patroni.readthedocs.io/) is now at 2.1.3.
1515

1616
Read more about how you can [get started]({{< relref "quickstart/_index.md" >}}) with Crunchy Postgres for Kubernetes. We recommend [forking the Postgres Operator examples](https://github.com/CrunchyData/postgres-operator-examples/fork) repo.
1717

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:centos8-14.1-1
6+
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.2-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:centos8-2.36-1
18+
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-0
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:centos8-1.16-1
38+
image: registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-2

installers/olm/config/redhat/related-images.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ spec:
1313
containers:
1414
- name: operator
1515
env:
16-
- { name: RELATED_IMAGE_PGADMIN, value: 'registry.connect.redhat.com/crunchydata/crunchy-pgadmin4:ubi8-4.20-0' }
17-
- { name: RELATED_IMAGE_PGBACKREST, value: 'registry.connect.redhat.com/crunchydata/crunchy-pgbackrest:ubi8-2.36-1' }
18-
- { name: RELATED_IMAGE_PGBOUNCER, value: 'registry.connect.redhat.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-1' }
16+
- { name: RELATED_IMAGE_PGADMIN, value: 'registry.connect.redhat.com/crunchydata/crunchy-pgadmin4:ubi8-4.30-0' }
17+
- { name: RELATED_IMAGE_PGBACKREST, value: 'registry.connect.redhat.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-0' }
18+
- { name: RELATED_IMAGE_PGBOUNCER, value: 'registry.connect.redhat.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-2' }
1919
- { name: RELATED_IMAGE_PGEXPORTER, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres-exporter:ubi8-5.1.0-0' }
2020

21-
- { name: RELATED_IMAGE_POSTGRES_12, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres:ubi8-12.9-1' }
22-
- { name: RELATED_IMAGE_POSTGRES_13, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres:ubi8-13.5-1' }
23-
- { name: RELATED_IMAGE_POSTGRES_14, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres:ubi8-14.1-1' }
21+
- { name: RELATED_IMAGE_POSTGRES_12, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres:ubi8-12.10-1' }
22+
- { name: RELATED_IMAGE_POSTGRES_13, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres:ubi8-13.6-1' }
23+
- { name: RELATED_IMAGE_POSTGRES_14, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres:ubi8-14.2-1' }
2424

25-
- { name: RELATED_IMAGE_POSTGRES_12_GIS_2.5, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres-gis:ubi8-12.9-2.5-1' }
26-
- { name: RELATED_IMAGE_POSTGRES_12_GIS_3.0, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres-gis:ubi8-12.9-3.0-1' }
27-
- { name: RELATED_IMAGE_POSTGRES_13_GIS_3.0, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres-gis:ubi8-13.5-3.0-1' }
28-
- { name: RELATED_IMAGE_POSTGRES_13_GIS_3.1, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres-gis:ubi8-13.5-3.1-1' }
29-
- { name: RELATED_IMAGE_POSTGRES_14_GIS_3.1, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres-gis:ubi8-14.1-3.1-1' }
25+
- { name: RELATED_IMAGE_POSTGRES_12_GIS_2.5, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres-gis:ubi8-12.10-2.5-1' }
26+
- { name: RELATED_IMAGE_POSTGRES_12_GIS_3.0, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres-gis:ubi8-12.10-3.0-1' }
27+
- { name: RELATED_IMAGE_POSTGRES_13_GIS_3.0, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres-gis:ubi8-13.6-3.0-1' }
28+
- { name: RELATED_IMAGE_POSTGRES_13_GIS_3.1, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres-gis:ubi8-13.6-3.1-1' }
29+
- { name: RELATED_IMAGE_POSTGRES_14_GIS_3.1, value: 'registry.connect.redhat.com/crunchydata/crunchy-postgres-gis:ubi8-14.2-3.1-1' }

internal/controller/postgrescluster/helpers_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ import (
4343
var (
4444
//TODO(tjmoore4): With the new RELATED_IMAGES defaulting behavior, tests could be refactored
4545
// to reference those environment variables instead of hard coded image values
46-
CrunchyPostgresHAImage = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:centos8-13.5-0"
47-
CrunchyPGBackRestImage = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:centos8-2.36-0"
48-
CrunchyPGBouncerImage = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:centos8-1.16-0"
46+
CrunchyPostgresHAImage = "registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-13.6-1"
47+
CrunchyPGBackRestImage = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbackrest:ubi8-2.38-0"
48+
CrunchyPGBouncerImage = "registry.developers.crunchydata.com/crunchydata/crunchy-pgbouncer:ubi8-1.16-2"
4949
)
5050

5151
// Scale extends d according to PGO_TEST_TIMEOUT_SCALE.

0 commit comments

Comments
 (0)