Skip to content

Commit d15b89c

Browse files
author
Jonathan S. Katz
committed
Version bump v4.5.0
1 parent 9f4c42a commit d15b89c

File tree

28 files changed

+46
-46
lines changed

28 files changed

+46
-46
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ 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.0-rc.1
12+
PGO_VERSION ?= 4.5.0
1313
PGO_PG_VERSION ?= 12
1414
PGO_PG_FULLVERSION ?= 12.4
1515
PGO_BACKREST_VERSION ?= 2.29

README.md

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

162162
```shell
163163
kubectl create namespace pgo
164-
kubectl apply -f https://raw.githubusercontent.com/CrunchyData/postgres-operator/v4.5.0-rc.1/installers/kubectl/postgres-operator.yml
164+
kubectl apply -f https://raw.githubusercontent.com/CrunchyData/postgres-operator/v4.5.0/installers/kubectl/postgres-operator.yml
165165
```
166166

167167
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.4-4.5.0-rc.1
19+
CCP_IMAGE_TAG=centos7-12.4-4.5.0
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.4-4.5.0-rc.1
5+
CCPImageTag: centos7-12.4-4.5.0
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: centos7-4.5.0-rc.1
85+
PGOImageTag: centos7-4.5.0

docs/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ 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.0-rc.1"
28+
operatorVersion = "4.5.0"
2929
postgresVersion = "12.4"
3030
postgresVersion13 = "13.0"
3131
postgresVersion12 = "12.4"

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.0-rc.1",
19+
"pgo-version": "4.5.0",
2020
"pgouser": "pgoadmin",
2121
"primary": "true"
2222
},
@@ -62,7 +62,7 @@
6262
},
6363
"backrestResources": {},
6464
"ccpimage": "crunchy-postgres-ha",
65-
"ccpimagetag": "centos7-12.4-4.5.0-rc.1",
65+
"ccpimagetag": "centos7-12.4-4.5.0",
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.0-rc.1",
98+
"pgo-version": "4.5.0",
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=centos7
26-
export PGO_VERSION=4.5.0-rc.1
26+
export PGO_VERSION=4.5.0
2727
export PGO_IMAGE_TAG=$PGO_BASEOS-$PGO_VERSION
2828

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

installers/ansible/README.md

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

7-
Latest Release: 4.5.0-rc.1
7+
Latest Release: 4.5.0
88

99
## General
1010

installers/ansible/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ badger: "false"
1717
ccp_image_prefix: "registry.developers.crunchydata.com/crunchydata"
1818
ccp_image_pull_secret: ""
1919
ccp_image_pull_secret_manifest: ""
20-
ccp_image_tag: "centos7-12.4-4.5.0-rc.1"
20+
ccp_image_tag: "centos7-12.4-4.5.0"
2121
create_rbac: "true"
2222
crunchy_debug: "false"
2323
db_name: ""
@@ -50,14 +50,14 @@ pgo_apiserver_url: "https://postgres-operator"
5050
pgo_client_cert_secret: "pgo.tls"
5151
pgo_client_container_install: "false"
5252
pgo_client_install: "true"
53-
pgo_client_version: "4.5.0-rc.1"
53+
pgo_client_version: "4.5.0"
5454
pgo_cluster_admin: "false"
5555
pgo_disable_eventing: "false"
5656
pgo_disable_tls: "false"
5757
pgo_image_prefix: "registry.developers.crunchydata.com/crunchydata"
5858
pgo_image_pull_secret: ""
5959
pgo_image_pull_secret_manifest: ""
60-
pgo_image_tag: "centos7-4.5.0-rc.1"
60+
pgo_image_tag: "centos7-4.5.0"
6161
pgo_installation_name: "devtest"
6262
pgo_noauth_routes: ""
6363
pgo_operator_namespace: "pgo"

installers/gcp-marketplace/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ MARKETPLACE_TOOLS ?= gcr.io/cloud-marketplace-tools/k8s/dev:$(MARKETPLACE_VERSIO
66
MARKETPLACE_VERSION ?= 0.9.4
77
KUBECONFIG ?= $(HOME)/.kube/config
88
PARAMETERS ?= {}
9-
PGO_VERSION ?= 4.5.0-rc.1
9+
PGO_VERSION ?= 4.5.0
1010

1111
IMAGE_BUILD_ARGS = --build-arg MARKETPLACE_VERSION='$(MARKETPLACE_VERSION)' \
1212
--build-arg PGO_VERSION='$(PGO_VERSION)'

0 commit comments

Comments
 (0)