Skip to content

Commit bcff5d5

Browse files
authored
Version bump for 4.4.1
This adds in the information for the PostgreSQL 2020-08-13 cumulative update release.
1 parent 639324a commit bcff5d5

File tree

28 files changed

+56
-50
lines changed

28 files changed

+56
-50
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.4.0
12+
PGO_VERSION ?= 4.4.1
1313
PGO_PG_VERSION ?= 12
14-
PGO_PG_FULLVERSION ?= 12.3
14+
PGO_PG_FULLVERSION ?= 12.4
1515
PGO_BACKREST_VERSION ?= 2.27
1616

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Based on your storage settings in your Kubernetes environment, you may be able t
128128

129129
```shell
130130
kubectl create namespace pgo
131-
kubectl apply -f https://raw.githubusercontent.com/CrunchyData/postgres-operator/v4.4.0/installers/kubectl/postgres-operator.yml
131+
kubectl apply -f https://raw.githubusercontent.com/CrunchyData/postgres-operator/v4.4.1/installers/kubectl/postgres-operator.yml
132132
```
133133

134134
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=centos7-12.3-4.4.0
19+
CCP_IMAGE_TAG=centos7-12.4-4.4.1
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: centos7-12.3-4.4.0
5+
CCPImageTag: centos7-12.4-4.4.1
66
Port: 5432
77
PGBadgerPort: 10000
88
ExporterPort: 9187
@@ -81,4 +81,4 @@ Storage:
8181
Pgo:
8282
Audit: false
8383
PGOImagePrefix: registry.developers.crunchydata.com/crunchydata
84-
PGOImageTag: centos7-4.4.0
84+
PGOImageTag: centos7-4.4.1

docs/config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ 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.4.0"
29-
postgresVersion = "12.3"
28+
operatorVersion = "4.4.1"
29+
postgresVersion = "12.4"
3030
postgisVersion = "3.0"
3131
centosBase = "centos7"
3232

docs/content/Configuration/compatibility.md

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

1313
| Operator Release | Container Release | Postgres | PgBackrest Version
1414
|:----------|:-------------|:------------|:--------------
15+
| 4.4.1 | 4.4.1 | 12.4 | 2.27 |
16+
|||11.9|2.27|
17+
|||10.14|2.27|
18+
|||9.6.19|2.27|
19+
|||9.5.23|2.27|
20+
||||
1521
| 4.4.0 | 4.4.0 | 12.3 | 2.27 |
1622
|||11.8|2.27|
1723
|||10.13|2.27|

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.4.0",
19+
"pgo-version": "4.4.1",
2020
"pgouser": "pgoadmin",
2121
"primary": "true"
2222
},
@@ -62,7 +62,7 @@
6262
},
6363
"backrestResources": {},
6464
"ccpimage": "crunchy-postgres-ha",
65-
"ccpimagetag": "centos7-12.3-4.4.0",
65+
"ccpimagetag": "centos7-12.4-4.4.1",
6666
"clustername": "fromcrd",
6767
"customconfig": "",
6868
"database": "userdb",
@@ -95,7 +95,7 @@
9595
"userlabels": {
9696
"crunchy_collect": "false",
9797
"pg-pod-anti-affinity": "",
98-
"pgo-version": "4.4.0",
98+
"pgo-version": "4.4.1",
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
@@ -20,7 +20,7 @@ export PGOROOT=$GOPATH/src/github.com/crunchydata/postgres-operator
2020
# the version of the Operator you run is set by these vars
2121
export PGO_IMAGE_PREFIX=registry.developers.crunchydata.com/crunchydata
2222
export PGO_BASEOS=centos7
23-
export PGO_VERSION=4.4.0
23+
export PGO_VERSION=4.4.1
2424
export PGO_IMAGE_TAG=$PGO_BASEOS-$PGO_VERSION
2525

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

examples/load/sample-json-load-config-sc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PGOImagePrefix: registry.developers.crunchydata.com/crunchydata
2-
PGOImageTag: centos7-4.4.0
2+
PGOImageTag: centos7-4.4.1
33
DbDatabase: userdb
44
DbUser: postgres
55
DbPort: 5432

examples/load/sample-json-load-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PGOImagePrefix: registry.developers.crunchydata.com/crunchydata
2-
PGOImageTag: centos7-4.4.0
2+
PGOImageTag: centos7-4.4.1
33
DbDatabase: userdb
44
DbUser: postgres
55
DbPort: 5432

0 commit comments

Comments
 (0)