Skip to content

Commit dc78e8c

Browse files
authored
Update Postgres version reference for 4.7.2 release
Ensure the references are for Postgres 13.4.
1 parent 05b45d0 commit dc78e8c

File tree

17 files changed

+20
-20
lines changed

17 files changed

+20
-20
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PGO_IMAGE_PREFIX ?= crunchydata
88
PGO_VERSION ?= 4.7.2
99
PGO_IMAGE_TAG ?= $(PGO_BASEOS)-$(PGO_VERSION)
1010
PGO_PG_VERSION ?= 13
11-
PGO_PG_FULLVERSION ?= 13.3
11+
PGO_PG_FULLVERSION ?= 13.4
1212
PGO_BACKREST_VERSION ?= 2.33
1313
PACKAGER ?= yum
1414

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-13.3-4.7.2
19+
CCP_IMAGE_TAG=centos8-13.4-4.7.2
2020

2121
IMAGES=(
2222
crunchy-prometheus

conf/postgres-operator/pgo.yaml

Lines changed: 1 addition & 1 deletion
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-13.3-4.7.2
5+
CCPImageTag: centos8-13.4-4.7.2
66
Port: 5432
77
PGBadgerPort: 10000
88
ExporterPort: 9187

examples/create-by-resource/fromcrd.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"supplementalgroups": ""
4646
},
4747
"ccpimage": "crunchy-postgres-ha",
48-
"ccpimagetag": "centos8-13.3-4.7.2",
48+
"ccpimagetag": "centos8-13.4-4.7.2",
4949
"clustername": "fromcrd",
5050
"database": "userdb",
5151
"exporterport": "9187",

examples/helm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The following values can also be set:
6464
- `ha`: Whether or not to deploy a high availability PostgreSQL cluster. Can be either `true` or `false`, defaults to `false`.
6565
- `imagePrefix`: The prefix of the container images to use for this PostgreSQL cluster. Default to `registry.developers.crunchydata.com/crunchydata`.
6666
- `image`: The name of the container image to use for the PostgreSQL cluster. Defaults to `crunchy-postgres-ha`.
67-
- `imageTag`: The container image tag to use. Defaults to `centos8-13.3-4.7.2`.
67+
- `imageTag`: The container image tag to use. Defaults to `centos8-13.4-4.7.2`.
6868
- `memory`: The memory limit for the PostgreSQL cluster. Follows standard Kubernetes formatting.
6969
- `monitoring`: Whether or not to enable monitoring / metrics collection for this PostgreSQL instance. Can either be `true` or `false`, defaults to `false`.
7070

examples/helm/postgres/templates/pgcluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
storagetype: dynamic
2929
ccpimage: {{ .Values.image | default "crunchy-postgres-ha" | quote }}
3030
ccpimageprefix: {{ .Values.imagePrefix | default "registry.developers.crunchydata.com/crunchydata" | quote }}
31-
ccpimagetag: {{ .Values.imageTag | default "centos8-13.3-4.7.2" | quote }}
31+
ccpimagetag: {{ .Values.imageTag | default "centos8-13.4-4.7.2" | quote }}
3232
clustername: {{ .Values.name | quote }}
3333
database: {{ .Values.name | quote }}
3434
{{- if .Values.monitoring }}

examples/helm/postgres/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ password: W4tch0ut4hippo$
1010
# ha: true
1111
# imagePrefix: registry.developers.crunchydata.com/crunchydata
1212
# image: crunchy-postgres-ha
13-
# imageTag: centos8-13.3-4.7.2
13+
# imageTag: centos8-13.4-4.7.2
1414
# memory: 1Gi

examples/kustomize/createcluster/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ pgo show cluster hippo -n pgo
4444
```
4545
You will see something like this if successful:
4646
```
47-
cluster : hippo (crunchy-postgres-ha:centos8-13.3-4.7.2)
47+
cluster : hippo (crunchy-postgres-ha:centos8-13.4-4.7.2)
4848
pod : hippo-8fb6bd96-j87wq (Running) on gke-xxxx-default-pool-38e946bd-257w (1/1) (primary)
4949
pvc: hippo (1Gi)
5050
deployment : hippo
@@ -79,7 +79,7 @@ pgo show cluster dev-hippo -n pgo
7979
```
8080
You will see something like this if successful:
8181
```
82-
cluster : dev-hippo (crunchy-postgres-ha:centos8-13.3-4.7.2)
82+
cluster : dev-hippo (crunchy-postgres-ha:centos8-13.4-4.7.2)
8383
pod : dev-hippo-588d4cb746-bwrxb (Running) on gke-xxxx-default-pool-95cba91c-0ppp (1/1) (primary)
8484
pvc: dev-hippo (1Gi)
8585
deployment : dev-hippo
@@ -113,7 +113,7 @@ pgo show cluster staging-hippo -n pgo
113113
```
114114
You will see something like this if successful, (Notice one of the replicas is a different size):
115115
```
116-
cluster : staging-hippo (crunchy-postgres-ha:centos8-13.3-4.7.2)
116+
cluster : staging-hippo (crunchy-postgres-ha:centos8-13.4-4.7.2)
117117
pod : staging-hippo-85cf6dcb65-9h748 (Running) on gke-xxxx-default-pool-95cba91c-0ppp (1/1) (primary)
118118
pvc: staging-hippo (1Gi)
119119
pod : staging-hippo-lnxw-cf47d8c8b-6r4wn (Running) on gke-xxxx-default-pool-21b7282d-rqkj (1/1) (replica)
@@ -154,7 +154,7 @@ pgo show cluster prod-hippo -n pgo
154154
```
155155
You will see something like this if successful, (Notice one of the replicas is a different size):
156156
```
157-
cluster : prod-hippo (crunchy-postgres-ha:centos8-13.3-4.7.2)
157+
cluster : prod-hippo (crunchy-postgres-ha:centos8-13.4-4.7.2)
158158
pod : prod-hippo-5d6dd46497-rr67c (Running) on gke-xxxx-default-pool-21b7282d-rqkj (1/1) (primary)
159159
pvc: prod-hippo (1Gi)
160160
pod : prod-hippo-flty-84d97c8769-2pzbh (Running) on gke-xxxx-default-pool-95cba91c-0ppp (1/1) (replica)

examples/kustomize/createcluster/base/pgcluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ spec:
4646
postgres: {}
4747
ccpimage: crunchy-postgres-ha
4848
ccpimageprefix: registry.developers.crunchydata.com/crunchydata
49-
ccpimagetag: centos8-13.3-4.7.2
49+
ccpimagetag: centos8-13.4-4.7.2
5050
clustername: hippo
5151
customconfig: ""
5252
database: hippo

installers/ansible/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ badger: "false"
2020
ccp_image_prefix: "registry.developers.crunchydata.com/crunchydata"
2121
ccp_image_pull_secret: ""
2222
ccp_image_pull_secret_manifest: ""
23-
ccp_image_tag: "centos8-13.3-4.7.2"
23+
ccp_image_tag: "centos8-13.4-4.7.2"
2424
create_rbac: "true"
2525
crunchy_debug: "false"
2626
db_name: ""

0 commit comments

Comments
 (0)