Skip to content

Commit e5ed4e6

Browse files
author
Jonathan S. Katz
committed
Update version to 4.1.1
This brings the documentation and example configurations up-to-date with the version numbering. Issue: [ch6302]
1 parent 18276d1 commit e5ed4e6

File tree

81 files changed

+385
-237
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+385
-237
lines changed

ansible/README.md

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

7-
Latest Release: 4.1.0
7+
Latest Release: 4.1.1
88

99
## General
1010

11-
This repository contains Ansible Roles for deploying the Crunchy PostgreSQL Operator
11+
This repository contains Ansible Roles for deploying the Crunchy PostgreSQL Operator
1212
for Kubernetes and OpenShift.
1313

14-
See the [official documentation for more information](https://crunchydata.github.io/postgres-operator/stable/)
14+
See the [official documentation for more information](https://crunchydata.github.io/postgres-operator/stable/)
1515
on installing Crunchy PostgreSQL Operator.

ansible/inventory

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ create_rbac='true'
3535

3636
# ===================
3737
# PGO Settings
38-
# The following settings configure the Crunchy PostgreSQL Operator
38+
# The following settings configure the Crunchy PostgreSQL Operator
3939
# functionality.
4040
# ===================
4141

@@ -62,15 +62,15 @@ namespace='pgouser1,pgouser2'
6262
# CentOS7 images can be found in dockerhub: https://hub.docker.com/u/crunchydata
6363
# RHEL7 images are available to Crunchy customers: https://access.crunchydata.com/login/
6464
ccp_image_prefix='crunchydata'
65-
ccp_image_tag='centos7-11.5-2.4.2'
65+
ccp_image_tag='centos7-12.1-4.1.1'
6666

6767
# Crunchy PostgreSQL Operator images to use. The tags centos7 and rhel7 are acceptable.
6868
pgo_image_prefix='crunchydata'
69-
pgo_image_tag='centos7-4.1.0'
69+
pgo_image_tag='centos7-4.1.1'
7070

7171
# PGO Client Install
7272
pgo_client_install='true'
73-
pgo_client_version='v4.1.0'
73+
pgo_client_version='v4.1.1'
7474

7575
# PGO Apiserver TLS Settings
7676
#pgo_tls_no_verify='false'
@@ -203,7 +203,7 @@ storage9_fs_group=26
203203
# ==================
204204
# Container Resource Configurations
205205
# ==================
206-
# Define container resource configurations that can be used to set CPU & memory requirements and limits
206+
# Define container resource configurations that can be used to set CPU & memory requirements and limits
207207
# for containers created by the PGO. Also set default resource configs for various PGO container types.
208208

209209
#default_container_resources=''
@@ -256,10 +256,10 @@ prometheus_install='false'
256256
# ==================
257257
# Namespace Cleanup
258258
# ==================
259-
# The following settings determine whether or not the PGO and metrics namespaces (defined using
259+
# The following settings determine whether or not the PGO and metrics namespaces (defined using
260260
# inventory variables 'pgo_operator_namespace', 'namespace' and 'metrics_namespace') are deleted
261261
# when deprovisioning. Please note that this will also result in the deletion of any non-PGO
262-
# resources deployed in these namespaces, and cannot be undone. By default (and unless otherwise
262+
# resources deployed in these namespaces, and cannot be undone. By default (and unless otherwise
263263
# specified using the variables below), all namespaces will be preserved when deprovisioning.
264264

265265
#delete_operator_namespace='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.1.0"
20+
const PGO_VERSION = "4.1.1"
2121

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

bin/push-ccp-to-gcr.sh

Lines changed: 1 addition & 2 deletions
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-11.5-2.4.2
19+
CCP_IMAGE_TAG=centos7-12.1-4.1.1
2020

2121
IMAGES=(
2222
crunchy-prometheus
@@ -35,4 +35,3 @@ do
3535
$GCR_IMAGE_PREFIX/$image:$CCP_IMAGE_TAG
3636
gcloud docker -- push $GCR_IMAGE_PREFIX/$image:$CCP_IMAGE_TAG
3737
done
38-

centos7/Dockerfile.pgo-apiserver.centos7

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM centos:7
22

33
LABEL Vendor="Crunchy Data Solutions" \
4-
PostgresVersion="11" \
5-
PostgresFullVersion="11.5" \
4+
PostgresVersion="12" \
5+
PostgresFullVersion="12.1" \
66
Version="7.7" \
7-
Release="4.1.0" \
7+
Release="4.1.1" \
88
summary="Crunchy Data PostgreSQL Operator - Apiserver" \
99
description="Crunchy Data PostgreSQL Operator - Apiserver"
1010

centos7/Dockerfile.pgo-backrest-repo.centos7

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM centos:7
22

33
LABEL Vendor="Crunchy Data Solutions" \
4-
PostgresVersion="11" \
5-
PostgresFullVersion="11.5" \
4+
PostgresVersion="12" \
5+
PostgresFullVersion="12.1" \
66
Version="7.7" \
7-
Release="4.1.0" \
7+
Release="4.1.1" \
88
summary="Crunchy Data PostgreSQL Operator - Apiserver" \
99
description="Crunchy Data PostgreSQL Operator - Apiserver"
1010

centos7/Dockerfile.pgo-backrest-restore.centos7

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM centos:7
22

33
LABEL Vendor="Crunchy Data Solutions" \
4-
PostgresVersion="11" \
5-
PostgresFullVersion="11.5" \
4+
PostgresVersion="12" \
5+
PostgresFullVersion="12.1" \
66
Version="7.7" \
7-
Release="4.1.0" \
7+
Release="4.1.1" \
88
summary="Crunchy Data PostgreSQL Operator - pgBackRest" \
99
description="pgBackRest image that is integrated for use with Crunchy Data's PostgreSQL Operator."
1010

centos7/Dockerfile.pgo-backrest.centos7

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM centos:7
22

33
LABEL Vendor="Crunchy Data Solutions" \
4-
PostgresVersion="11" \
5-
PostgresFullVersion="11.5" \
4+
PostgresVersion="12" \
5+
PostgresFullVersion="12.1" \
66
Version="7.7" \
7-
Release="4.1.0" \
7+
Release="4.1.1" \
88
summary="Crunchy Data PostgreSQL Operator - pgBackRest" \
99
description="pgBackRest image that is integrated for use with Crunchy Data's PostgreSQL Operator."
1010

centos7/Dockerfile.pgo-event.centos7

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM centos:7
22

33
LABEL Vendor="Crunchy Data Solutions" \
4-
PostgresVersion="11" \
5-
PostgresFullVersion="11.5" \
4+
PostgresVersion="12" \
5+
PostgresFullVersion="12.1" \
66
Version="7.7" \
7-
Release="4.1.0" \
7+
Release="4.1.1" \
88
summary="Crunchy Data PostgreSQL Operator - pgo-event" \
99
description="Crunchy Data PostgreSQL Operator - pgo-event"
1010

centos7/Dockerfile.pgo-load.centos7

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ FROM centos:7
22

33
LABEL name="crunchydata/pgo-load" \
44
vendor="crunchy data" \
5-
PostgresVersion="11" \
6-
PostgresFullVersion="11.5" \
5+
PostgresVersion="12" \
6+
PostgresFullVersion="12.1" \
77
Version="7.7" \
8-
Release="4.1.0" \
8+
Release="4.1.1" \
99
url="https://crunchydata.com" \
1010
summary="Crunchy Data PostgreSQL Operator - Load Data" \
1111
description="Loads a CSV or JSON file into the database." \

0 commit comments

Comments
 (0)