Skip to content

Commit a2d8828

Browse files
committed
Version Bump for PG Updates & PGO v4.5.6
[sc-13826]
1 parent 4f5a140 commit a2d8828

File tree

33 files changed

+63
-59
lines changed

33 files changed

+63
-59
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ PGO_CMD ?= kubectl
99
PGO_IMAGE_PREFIX ?= crunchydata
1010
PGO_IMAGE_TAG ?= $(PGO_BASEOS)-$(PGO_VERSION)
1111
PGO_OPERATOR_NAMESPACE ?= pgo
12-
PGO_VERSION ?= 4.5.5
12+
PGO_VERSION ?= 4.5.6
1313
PGO_PG_VERSION ?= 12
14-
PGO_PG_FULLVERSION ?= 12.9
14+
PGO_PG_FULLVERSION ?= 12.10
1515
PGO_BACKREST_VERSION ?= 2.29
1616
PACKAGER ?= yum
1717

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ to start as quickly as:
182182

183183
```shell
184184
kubectl create namespace pgo
185-
kubectl apply -f https://raw.githubusercontent.com/CrunchyData/postgres-operator/v4.5.5/installers/kubectl/postgres-operator.yml
185+
kubectl apply -f https://raw.githubusercontent.com/CrunchyData/postgres-operator/v4.5.6/installers/kubectl/postgres-operator.yml
186186
```
187187

188188
Otherwise, we highly recommend following the instructions from our [Quickstart](https://access.crunchydata.com/documentation/postgres-operator/latest/quickstart/).

bin/push-ccp-to-gcr.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
GCR_IMAGE_PREFIX=gcr.io/crunchy-dev-test
1717

1818
CCP_IMAGE_PREFIX=crunchydata
19-
CCP_IMAGE_TAG=centos8-12.9-4.5.5
19+
CCP_IMAGE_TAG=centos8-12.10-4.5.6
2020

2121
IMAGES=(
2222
crunchy-prometheus

conf/postgres-operator/pgo.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Cluster:
22
CCPImagePrefix: registry.developers.crunchydata.com/crunchydata
33
Metrics: false
44
Badger: false
5-
CCPImageTag: centos8-12.9-4.5.5
5+
CCPImageTag: centos8-12.10-4.5.6
66
Port: 5432
77
PGBadgerPort: 10000
88
ExporterPort: 9187
@@ -82,4 +82,4 @@ Storage:
8282
Pgo:
8383
Audit: false
8484
PGOImagePrefix: registry.developers.crunchydata.com/crunchydata
85-
PGOImageTag: centos8-4.5.5
85+
PGOImageTag: centos8-4.5.6

docs/config.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,12 @@ disableNavChevron = false # set true to hide next/prev chevron, default is false
2525
highlightClientSide = false # set true to use highlight.pack.js instead of the default hugo chroma highlighter
2626
menushortcutsnewtab = true # set true to open shortcuts links to a new tab/window
2727
enableGitInfo = true
28-
operatorVersion = "4.5.5"
29-
postgresVersion = "12.9"
30-
postgresVersion13 = "13.5"
31-
postgresVersion12 = "12.9"
32-
postgresVersion11 = "11.14"
33-
postgresVersion10 = "10.19"
34-
postgresVersion96 = "9.6.24"
28+
operatorVersion = "4.5.6"
29+
postgresVersion = "12.10"
30+
postgresVersion13 = "13.6"
31+
postgresVersion12 = "12.10"
32+
postgresVersion11 = "11.15"
33+
postgresVersion10 = "10.20"
3534
postgisVersion = "3.0"
3635
centosBase = "centos8"
3736

docs/content/Configuration/compatibility.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ version dependencies between the two projects. Below are the operator releases a
1212

1313
| Operator Release | Container Release | Postgres | PgBackrest Version
1414
|:----------|:-------------|:------------|:--------------
15+
| 4.5.6 | 4.5.6 | 13.6 | 2.29 |
16+
|||12.10|2.29|
17+
|||11.15|2.29|
18+
|||10.20|2.29|
19+
||||
1520
| 4.5.5 | 4.5.5 | 13.5 | 2.29 |
1621
|||12.9|2.29|
1722
|||11.14|2.29|

docs/content/advanced/crunchy-postgres-exporter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ can be specified for the API to collect. For an example of a queries.yml file, s
2323

2424
The crunchy-postgres-exporter Docker image contains the following packages (versions vary depending on PostgreSQL version):
2525

26-
* PostgreSQL ({{< param postgresVersion13 >}}, {{< param postgresVersion12 >}}, {{< param postgresVersion11 >}}, {{< param postgresVersion10 >}}, and {{< param postgresVersion96 >}}
26+
* PostgreSQL ({{< param postgresVersion13 >}}, {{< param postgresVersion12 >}}, {{< param postgresVersion11 >}}, and {{< param postgresVersion10 >}}
2727
* CentOS 7, 8 - publicly available
2828
* UBI 7, 8 - customers only
2929
* [PostgreSQL Exporter](https://github.com/wrouesnel/postgres_exporter)

docs/content/tutorial/pgbouncer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ PGPASSWORD=randompassword psql -h localhost -p 5432 -U pgbouncer pgbouncer
116116
You should see something similar to this:
117117

118118
```
119-
psql (12.9, server 1.14.0/bouncer)
119+
psql (12.10, server 1.14.0/bouncer)
120120
Type "help" for help.
121121
122122
pgbouncer=#

examples/create-by-resource/fromcrd.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"pg-cluster": "fromcrd",
1717
"pg-pod-anti-affinity": "",
1818
"pgo-backrest": "true",
19-
"pgo-version": "4.5.5",
19+
"pgo-version": "4.5.6",
2020
"pgouser": "pgoadmin",
2121
"primary": "true"
2222
},
@@ -62,7 +62,7 @@
6262
},
6363
"backrestResources": {},
6464
"ccpimage": "crunchy-postgres-ha",
65-
"ccpimagetag": "centos8-12.9-4.5.5",
65+
"ccpimagetag": "centos8-12.10-4.5.6",
6666
"clustername": "fromcrd",
6767
"customconfig": "",
6868
"database": "userdb",
@@ -95,7 +95,7 @@
9595
"userlabels": {
9696
"crunchy-postgres-exporter": "false",
9797
"pg-pod-anti-affinity": "",
98-
"pgo-version": "4.5.5",
98+
"pgo-version": "4.5.6",
9999
"pgouser": "pgoadmin",
100100
"pgo-backrest": "true"
101101
},

examples/envs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export PGO_CONF_DIR=$PGOROOT/installers/ansible/roles/pgo-operator/files
2323
# the version of the Operator you run is set by these vars
2424
export PGO_IMAGE_PREFIX=registry.developers.crunchydata.com/crunchydata
2525
export PGO_BASEOS=centos8
26-
export PGO_VERSION=4.5.5
26+
export PGO_VERSION=4.5.6
2727
export PGO_IMAGE_TAG=$PGO_BASEOS-$PGO_VERSION
2828

2929
# for setting the pgo apiserver port, disabling TLS or not verifying TLS

0 commit comments

Comments
 (0)