Skip to content

Commit 78ba095

Browse files
author
Jonathan S. Katz
committed
Bump to version v4.2.2
1 parent 4c782bd commit 78ba095

36 files changed

+109
-103
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PGO_CMD ?= kubectl
88
PGO_IMAGE_PREFIX ?= crunchydata
99
PGO_IMAGE_TAG ?= $(PGO_BASEOS)-$(PGO_VERSION)
1010
PGO_OPERATOR_NAMESPACE ?= pgo
11-
PGO_VERSION ?= 4.3.0
11+
PGO_VERSION ?= 4.2.2
1212

1313
RELTMPDIR=/tmp/release.$(PGO_VERSION)
1414
RELFILE=/tmp/postgres-operator.$(PGO_VERSION).tar.gz

ansible/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<img src="crunchy_logo.png?raw=false" alt="Mr. Crunchy" width="150"/>
55
</p>
66

7-
Latest Release: 4.2.1
7+
Latest Release: 4.2.2
88

99
## General
1010

ansible/inventory

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ namespace='pgouser1,pgouser2'
7575
# CentOS7 images can be found in dockerhub: https://hub.docker.com/u/crunchydata
7676
# RHEL7 images are available to Crunchy customers: https://access.crunchydata.com/login/
7777
ccp_image_prefix='crunchydata'
78-
ccp_image_tag='centos7-12.1-4.2.1'
78+
ccp_image_tag='centos7-12.1-4.2.2'
7979

8080
# Name of a Secret containing credentials for container image registries.
8181
# Provide a path to the Secret manifest to be installed in each namespace. (optional)
@@ -84,7 +84,7 @@ ccp_image_pull_secret_manifest=''
8484

8585
# Crunchy PostgreSQL Operator images to use. The tags centos7 and rhel7 are acceptable.
8686
pgo_image_prefix='crunchydata'
87-
pgo_image_tag='centos7-4.2.1'
87+
pgo_image_tag='centos7-4.2.2'
8888

8989
# Name of a Secret containing credentials for container image registries.
9090
# Provide a path to the Secret manifest to be installed in each namespace. (optional)
@@ -93,7 +93,7 @@ pgo_image_tag='centos7-4.2.1'
9393

9494
# PGO Client Install
9595
pgo_client_install='true'
96-
pgo_client_version='v4.2.1'
96+
pgo_client_version='v4.2.2'
9797

9898
# PGO Apiserver TLS Settings
9999
#pgo_tls_no_verify='false'

apiservermsgs/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717

1818
import ()
1919

20-
const PGO_VERSION = "4.2.1"
20+
const PGO_VERSION = "4.2.2"
2121

2222
// Ok status
2323
const Ok = "ok"

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.1-4.2.1
19+
CCP_IMAGE_TAG=centos7-12.1-4.2.2
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
@@ -4,7 +4,7 @@ Cluster:
44
CCPImagePrefix: crunchydata
55
Metrics: false
66
Badger: false
7-
CCPImageTag: centos7-12.1-4.2.1
7+
CCPImageTag: centos7-12.1-4.2.2
88
Port: 5432
99
PGBadgerPort: 10000
1010
ExporterPort: 9187
@@ -101,4 +101,4 @@ Pgo:
101101
PreferredFailoverNode:
102102
Audit: false
103103
PGOImagePrefix: crunchydata
104-
PGOImageTag: centos7-4.2.1
104+
PGOImageTag: centos7-4.2.2

examples/create-by-resource/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ The Operator should show the new cluster started:
4141

4242
jeffmc@~ > pgo show cluster fromcrd
4343

44-
cluster : fromcrd (centos7-12.1-4.2.1)
44+
cluster : fromcrd (centos7-12.1-4.2.2)
4545
pod : fromcrd-6b4d69df46-4s7bn (Running) on doppio-kube (1/1) (primary)
4646
pvc : fromcrd
4747
resources : CPU Limit= Memory Limit=, CPU Request= Memory Request=
4848
storage : Primary=1G Replica=1G
4949
deployment : fromcrd
5050
service : fromcrd - ClusterIP (10.97.101.79)
51-
labels : pg-cluster=fromcrd pgo-backrest=false primary=true archive=false deployment-name=fromcrd name=fromcrd current-primary=fromcrd pgo-version=4.2.1 archive-timeout=60 crunchy-pgbadger=false crunchy_collect=false
51+
labels : pg-cluster=fromcrd pgo-backrest=false primary=true archive=false deployment-name=fromcrd name=fromcrd current-primary=fromcrd pgo-version=4.2.2 archive-timeout=60 crunchy-pgbadger=false crunchy_collect=false
5252

5353
Notice the user credentials we created:
5454

examples/create-by-resource/fromcrd.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"pg-cluster": "fromcrd",
1414
"pg-pod-anti-affinity": "",
1515
"pgo-backrest": "true",
16-
"pgo-version": "4.2.1",
16+
"pgo-version": "4.2.2",
1717
"pgouser": "pgoadmin",
1818
"primary": "true"
1919
},
@@ -68,7 +68,7 @@
6868
"supplementalgroups": ""
6969
},
7070
"ccpimage": "crunchy-postgres-ha",
71-
"ccpimagetag": "centos7-12.1-4.2.1",
71+
"ccpimagetag": "centos7-12.1-4.2.2",
7272
"clustername": "fromcrd",
7373
"customconfig": "",
7474
"database": "userdb",
@@ -92,7 +92,7 @@
9292
"userlabels": {
9393
"crunchy_collect": "false",
9494
"pg-pod-anti-affinity": "",
95-
"pgo-version": "4.2.1",
95+
"pgo-version": "4.2.2",
9696
"pgouser": "pgoadmin",
9797
"pgo-backrest": "true"
9898
},

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=crunchydata
2222
export PGO_BASEOS=centos7
23-
export PGO_VERSION=4.2.1
23+
export PGO_VERSION=4.2.2
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: crunchydata
2-
PGOImageTag: centos7-4.2.1
2+
PGOImageTag: centos7-4.2.2
33
DbDatabase: userdb
44
DbUser: postgres
55
DbPort: 5432

0 commit comments

Comments
 (0)