Skip to content

Commit d5bcfee

Browse files
author
Jonathan S. Katz
committed
Version bump v4.7.0
1 parent bdd8fbd commit d5bcfee

File tree

19 files changed

+29
-29
lines changed

19 files changed

+29
-29
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ CCP_PGVERSION ?= 13
99
CCP_PG_FULLVERSION ?= 13.3
1010
CCP_PATRONI_VERSION ?= 2.0.2
1111
CCP_BACKREST_VERSION ?= 2.33
12-
CCP_VERSION ?= 4.7.0-rc.1
12+
CCP_VERSION ?= 4.7.0
1313
CCP_POSTGIS_VERSION ?= 3.1
1414
PACKAGER ?= yum
1515

docs/content/contributing/building.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export CCP_BASEOS=centos8 # centos8 for CentOS, ubi8 for Red Hat Universal
5252
export CCP_PGVERSION=12 # The PostgreSQL major version
5353
export CCP_PG_FULLVERSION=13.3
5454
export CCP_POSTGIS_VERSION=3.1
55-
export CCP_VERSION=4.7.0-rc.1
55+
export CCP_VERSION=4.7.0
5656
export CCP_IMAGE_PREFIX=crunchydata # Prefix to put before all the container image names
5757
export CCP_IMAGE_TAG=$CCP_BASEOS-$CCP_PG_FULLVERSION-$CCP_VERSION # Used to tag the images
5858
export CCP_POSTGIS_IMAGE_TAG=$CCP_BASEOS-$CCP_PG_FULLVERSION-$CCP_POSTGIS_VERSION-$CCP_VERSION # Used to tag images that include PostGIS
@@ -71,7 +71,7 @@ export CCP_BASEOS=centos8
7171
export CCP_PGVERSION=12
7272
export CCP_PG_FULLVERSION=13.3
7373
export CCP_POSTGIS_VERSION=3.1
74-
export CCP_VERSION=4.7.0-rc.1
74+
export CCP_VERSION=4.7.0
7575
export CCP_IMAGE_PREFIX=crunchydata
7676
export CCP_IMAGE_TAG=$CCP_BASEOS-$CCP_PG_FULLVERSION-$CCP_VERSION
7777
export CCP_POSTGIS_IMAGE_TAG=$CCP_BASEOS-$CCP_PG_FULLVERSION-$CCP_POSTGIS_VERSION-$CCP_VERSION

docs/content/examples/administration/upgrade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ weight: 81
99

1010
{{% notice tip %}}
1111
This example assumes you have run *primary* using a PostgreSQL 12 or 13 image
12-
such as `centos8-13.3-4.7.0-rc.1` prior to running this upgrade.
12+
such as `centos8-13.3-4.7.0` prior to running this upgrade.
1313
{{% /notice %}}
1414

1515
The upgrade container will let you perform a `pg_upgrade` from a PostgreSQL version 9.5, 9.6, 10, 11, 12, or 13 database to the available any of the higher versions of PostgreSQL versions that are currently support which are 9.6, 10, 11, 12, and 13. It does not do multi-version upgrades so you will need to for example do a 10 to 11 and then a 11 to 12 to get to version 12.
1616

1717
Prior to running this example, make sure your `CCP_IMAGE_TAG`
1818
environment variable is using the next major version of PostgreSQL that you
1919
want to upgrade to. For example, if you're upgrading from 12 to 13, make
20-
sure the variable references a PostgreSQL 13 image such as `centos8-13.3-4.7.0-rc.1`.
20+
sure the variable references a PostgreSQL 13 image such as `centos8-13.3-4.7.0`.
2121

2222
This will create the following in your Kubernetes environment:
2323

docs/content/installation-guide/installation-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Make directories to hold the GitHub clone that also work with the Go workspace s
7171
$ cd $HOME/cdev/src/github.com/crunchydata
7272
$ git clone https://github.com/crunchydata/crunchy-containers
7373
$ cd crunchy-containers
74-
$ git checkout v4.7.0-rc.1
74+
$ git checkout v4.7.0
7575

7676
# Your Shell Environment
7777

@@ -93,7 +93,7 @@ line starting with #:
9393
export CCP_PGVERSION=12 # The PostgreSQL major version
9494
export CCP_PG_FULLVERSION=13.3
9595
export CCP_POSTGIS_VERSION=3.1 # The PostGIS version
96-
export CCP_VERSION=4.7.0-rc.1
96+
export CCP_VERSION=4.7.0
9797
export CCP_IMAGE_PREFIX=crunchydata # Prefix to put before all the container image names
9898
export CCP_IMAGE_TAG=$CCP_BASEOS-$CCP_PG_FULLVERSION-$CCP_VERSION # Used to tag the images
9999
export CCP_POSTGIS_IMAGE_TAG=$CCP_BASEOS-$CCP_PG_FULLVERSION-$CCP_POSTGIS_VERSION-$CCP_VERSION # Used to tag images that include PostGIS

examples/docker/swarm-service/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: "3.3"
44
services:
55
primary:
66
hostname: 'primary'
7-
image: crunchydata/crunchy-postgres:centos8-13.3-4.7.0-rc.1
7+
image: crunchydata/crunchy-postgres:centos8-13.3-4.7.0
88
environment:
99
- PGHOST=/tmp
1010
- MAX_CONNECTIONS=10
@@ -29,7 +29,7 @@ services:
2929
- node.labels.type == primary
3030
- node.role == worker
3131
replica:
32-
image: crunchydata/crunchy-postgres:centos8-13.3-4.7.0-rc.1
32+
image: crunchydata/crunchy-postgres:centos8-13.3-4.7.0
3333
environment:
3434
- PGHOST=/tmp
3535
- MAX_CONNECTIONS=10

examples/helm/custom-config/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
name: custom-config
33
description: Deploys a basic single PostgreSQL primary database with custom configurations.
44
version: 1
5-
appVersion: 4.7.0-rc.1
5+
appVersion: 4.7.0
66
keywords:
77
- postgresql
88
- postgres

examples/helm/custom-config/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ See `values.yaml` for configuration notes. Specify each parameter using the `--s
6666

6767
```console
6868
$ helm install custom-config --name custom-config \
69-
--set Image.tag=centos8-13.3-4.7.0-rc.1
69+
--set Image.tag=centos8-13.3-4.7.0
7070
```
7171

72-
The above command changes the image tag of the container to of `centos8-13.3-4.7.0-rc.1`.
72+
The above command changes the image tag of the container to of `centos8-13.3-4.7.0`.
7373

7474
> **Tip**: You can use the default [values.yaml](values.yaml)
7575
@@ -84,7 +84,7 @@ The above command changes the image tag of the container to of `centos8-13.3-4.7
8484
| `.serviceType` | The type of service | `ClusterIP`
8585
| `.image.repository` | The repository on DockerHub where the images are found. | `crunchydata` |
8686
| `.image.container` | The container to be pulled from the repository. | `crunchy-postgres` |
87-
| `.image.tag` | The image tag to be used. | `centos8-13.3-4.7.0-rc.1` |
87+
| `.image.tag` | The image tag to be used. | `centos8-13.3-4.7.0` |
8888
| `.resources.cpu` | Defines a limit for CPU | `200m` |
8989
| `.resources.memory` | Defines a limit for memory | `512Mi` |
9090

examples/helm/custom-config/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ serviceType: ClusterIP
1010
image:
1111
repository: crunchydata
1212
container: crunchy-postgres
13-
tag: centos8-13.3-4.7.0-rc.1
13+
tag: centos8-13.3-4.7.0
1414
resources:
1515
cpu: 200m
1616
memory: 512Mi

examples/helm/primary-replica/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
name: primary-replica
33
description: Deploy a basic crunchy primary and replica cluster
44
version: 1
5-
appVersion: 4.7.0-rc.1
5+
appVersion: 4.7.0
66
keywords:
77
- postgresql
88
- postgres

examples/helm/primary-replica/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ See `values.yaml` for configuration notes. Specify each parameter using the `--s
102102

103103
```console
104104
$ helm install primary-replica --name primary-replica \
105-
--set Image.tag=centos8-13.3-4.7.0-rc.1
105+
--set Image.tag=centos8-13.3-4.7.0
106106
```
107107

108-
The above command changes the image tag of the container to `centos8-13.3-4.7.0-rc.1`.
108+
The above command changes the image tag of the container to `centos8-13.3-4.7.0`.
109109

110110
> **Tip**: You can use the default [values.yaml](values.yaml)
111111
@@ -121,7 +121,7 @@ The above command changes the image tag of the container to `centos8-13.3-4.7.0-
121121
| `.serviceType` | The type of service | `ClusterIP`
122122
| `.image.repository` | The repository on DockerHub where the images are found. | `crunchydata` |
123123
| `.image.container` | The container to be pulled from the repository. | `crunchy-postgres` |
124-
| `.image.tag` | The image tag to be used. | `centos8-13.3-4.7.0-rc.1` |
124+
| `.image.tag` | The image tag to be used. | `centos8-13.3-4.7.0` |
125125
| `.pv.storage` | Size of persistent volume | 400M |
126126
| `.pv.name` | Name of persistent volume | `primary-pv` |
127127
| `.pv.mode` | The storage mode for the persistent volume | `ReadWriteMany` |

0 commit comments

Comments
 (0)