Skip to content

Commit

Permalink
Version Update v4.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlecuyer committed Aug 9, 2021
1 parent 36d8366 commit 44d2824
Show file tree
Hide file tree
Showing 19 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CCP_PGVERSION ?= 13
CCP_PG_FULLVERSION ?= 13.3
CCP_PATRONI_VERSION ?= 2.1.0
CCP_BACKREST_VERSION ?= 2.33
CCP_VERSION ?= 4.7.1
CCP_VERSION ?= 4.7.2
CCP_POSTGIS_VERSION ?= 3.1
PACKAGER ?= yum

Expand Down
4 changes: 2 additions & 2 deletions docs/content/contributing/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export CCP_BASEOS=centos8 # centos8 for CentOS, ubi8 for Red Hat Universal
export CCP_PGVERSION=12 # The PostgreSQL major version
export CCP_PG_FULLVERSION=13.3
export CCP_POSTGIS_VERSION=3.1
export CCP_VERSION=4.7.1
export CCP_VERSION=4.7.2
export CCP_IMAGE_PREFIX=crunchydata # Prefix to put before all the container image names
export CCP_IMAGE_TAG=$CCP_BASEOS-$CCP_PG_FULLVERSION-$CCP_VERSION # Used to tag the images
export CCP_POSTGIS_IMAGE_TAG=$CCP_BASEOS-$CCP_PG_FULLVERSION-$CCP_POSTGIS_VERSION-$CCP_VERSION # Used to tag images that include PostGIS
Expand All @@ -71,7 +71,7 @@ export CCP_BASEOS=centos8
export CCP_PGVERSION=12
export CCP_PG_FULLVERSION=13.3
export CCP_POSTGIS_VERSION=3.1
export CCP_VERSION=4.7.1
export CCP_VERSION=4.7.2
export CCP_IMAGE_PREFIX=crunchydata
export CCP_IMAGE_TAG=$CCP_BASEOS-$CCP_PG_FULLVERSION-$CCP_VERSION
export CCP_POSTGIS_IMAGE_TAG=$CCP_BASEOS-$CCP_PG_FULLVERSION-$CCP_POSTGIS_VERSION-$CCP_VERSION
Expand Down
4 changes: 2 additions & 2 deletions docs/content/examples/administration/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ weight: 81

{{% notice tip %}}
This example assumes you have run *primary* using a PostgreSQL 12 or 13 image
such as `centos8-13.3-4.7.1` prior to running this upgrade.
such as `centos8-13.3-4.7.2` prior to running this upgrade.
{{% /notice %}}

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.

Prior to running this example, make sure your `CCP_IMAGE_TAG`
environment variable is using the next major version of PostgreSQL that you
want to upgrade to. For example, if you're upgrading from 12 to 13, make
sure the variable references a PostgreSQL 13 image such as `centos8-13.3-4.7.1`.
sure the variable references a PostgreSQL 13 image such as `centos8-13.3-4.7.2`.

This will create the following in your Kubernetes environment:

Expand Down
4 changes: 2 additions & 2 deletions docs/content/installation-guide/installation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Make directories to hold the GitHub clone that also work with the Go workspace s
$ cd $HOME/cdev/src/github.com/crunchydata
$ git clone https://github.com/crunchydata/crunchy-containers
$ cd crunchy-containers
$ git checkout v4.7.1
$ git checkout v4.7.2

# Your Shell Environment

Expand All @@ -93,7 +93,7 @@ line starting with #:
export CCP_PGVERSION=12 # The PostgreSQL major version
export CCP_PG_FULLVERSION=13.3
export CCP_POSTGIS_VERSION=3.1 # The PostGIS version
export CCP_VERSION=4.7.1
export CCP_VERSION=4.7.2
export CCP_IMAGE_PREFIX=crunchydata # Prefix to put before all the container image names
export CCP_IMAGE_TAG=$CCP_BASEOS-$CCP_PG_FULLVERSION-$CCP_VERSION # Used to tag the images
export CCP_POSTGIS_IMAGE_TAG=$CCP_BASEOS-$CCP_PG_FULLVERSION-$CCP_POSTGIS_VERSION-$CCP_VERSION # Used to tag images that include PostGIS
Expand Down
4 changes: 2 additions & 2 deletions examples/docker/swarm-service/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: "3.3"
services:
primary:
hostname: 'primary'
image: crunchydata/crunchy-postgres:centos8-13.3-4.7.1
image: crunchydata/crunchy-postgres:centos8-13.3-4.7.2
environment:
- PGHOST=/tmp
- MAX_CONNECTIONS=10
Expand All @@ -29,7 +29,7 @@ services:
- node.labels.type == primary
- node.role == worker
replica:
image: crunchydata/crunchy-postgres:centos8-13.3-4.7.1
image: crunchydata/crunchy-postgres:centos8-13.3-4.7.2
environment:
- PGHOST=/tmp
- MAX_CONNECTIONS=10
Expand Down
2 changes: 1 addition & 1 deletion examples/helm/custom-config/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
name: custom-config
description: Deploys a basic single PostgreSQL primary database with custom configurations.
version: 1
appVersion: 4.7.1
appVersion: 4.7.2
keywords:
- postgresql
- postgres
Expand Down
6 changes: 3 additions & 3 deletions examples/helm/custom-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ See `values.yaml` for configuration notes. Specify each parameter using the `--s

```console
$ helm install custom-config --name custom-config \
--set Image.tag=centos8-13.3-4.7.1
--set Image.tag=centos8-13.3-4.7.2
```

The above command changes the image tag of the container to of `centos8-13.3-4.7.1`.
The above command changes the image tag of the container to of `centos8-13.3-4.7.2`.

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

Expand Down
2 changes: 1 addition & 1 deletion examples/helm/custom-config/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ serviceType: ClusterIP
image:
repository: crunchydata
container: crunchy-postgres
tag: centos8-13.3-4.7.1
tag: centos8-13.3-4.7.2
resources:
cpu: 200m
memory: 512Mi
Expand Down
2 changes: 1 addition & 1 deletion examples/helm/primary-replica/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
name: primary-replica
description: Deploy a basic crunchy primary and replica cluster
version: 1
appVersion: 4.7.1
appVersion: 4.7.2
keywords:
- postgresql
- postgres
Expand Down
6 changes: 3 additions & 3 deletions examples/helm/primary-replica/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ See `values.yaml` for configuration notes. Specify each parameter using the `--s

```console
$ helm install primary-replica --name primary-replica \
--set Image.tag=centos8-13.3-4.7.1
--set Image.tag=centos8-13.3-4.7.2
```

The above command changes the image tag of the container to `centos8-13.3-4.7.1`.
The above command changes the image tag of the container to `centos8-13.3-4.7.2`.

> **Tip**: You can use the default [values.yaml](values.yaml)
Expand All @@ -121,7 +121,7 @@ The above command changes the image tag of the container to `centos8-13.3-4.7.1`
| `.serviceType` | The type of service | `ClusterIP`
| `.image.repository` | The repository on DockerHub where the images are found. | `crunchydata` |
| `.image.container` | The container to be pulled from the repository. | `crunchy-postgres` |
| `.image.tag` | The image tag to be used. | `centos8-13.3-4.7.1` |
| `.image.tag` | The image tag to be used. | `centos8-13.3-4.7.2` |
| `.pv.storage` | Size of persistent volume | 400M |
| `.pv.name` | Name of persistent volume | `primary-pv` |
| `.pv.mode` | The storage mode for the persistent volume | `ReadWriteMany` |
Expand Down
2 changes: 1 addition & 1 deletion examples/helm/primary-replica/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ serviceType: ClusterIP
image:
repository: crunchydata
container: crunchy-postgres
tag: centos8-11.12-4.7.1
tag: centos8-11.12-4.7.2
pv:
storage: 400M
name: primary-pv
Expand Down
2 changes: 1 addition & 1 deletion examples/helm/primary/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
name: basic
description: Deploys a single PostgreSQL primary database
version: 1
appVersion: 4.7.1
appVersion: 4.7.2
keywords:
- postgresql
- postgres
Expand Down
4 changes: 2 additions & 2 deletions examples/helm/primary/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ See `values.yaml` for configuration notes. Specify each parameter using the `--s

```console
$ helm install primary --name primary \
--set Image.tag=centos8-13.3-4.7.1
--set Image.tag=centos8-13.3-4.7.2
```

> **Tip**: You can use the default [values.yaml](values.yaml)
Expand All @@ -81,7 +81,7 @@ $ helm install primary --name primary \
| `.serviceType` | The type of service | `ClusterIP`
| `.image.repository` | The repository on DockerHub where the images are found. | `crunchydata` |
| `.image.container` | The container to be pulled from the repository. | `crunchy-postgres` |
| `.image.tag` | The image tag to be used. | `centos8-13.3-4.7.1` |
| `.image.tag` | The image tag to be used. | `centos8-13.3-4.7.2` |
| `.resources.cpu` | Defines a limit for CPU | `200m` |
| `.resources.memory` | Defines a limit for memory | `512Mi` |

Expand Down
2 changes: 1 addition & 1 deletion examples/helm/primary/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ serviceType: ClusterIP
image:
repository: crunchydata
container: crunchy-postgres
tag: centos8-13.3-4.7.1
tag: centos8-13.3-4.7.2
resources:
cpu: 200m
memory: 512Mi
2 changes: 1 addition & 1 deletion examples/helm/template-small/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
name: template-small
description: The Crunchy template-small configuration includes a single primary with limited CPU and memory, suitable for development purposes.
version: 1
appVersion: 4.7.1
appVersion: 4.7.2
keywords:
- postgresql
- postgres
Expand Down
4 changes: 2 additions & 2 deletions examples/helm/template-small/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ See `values.yaml` for configuration notes. Specify each parameter using the `--s

```console
$ helm install template-small --name template-small \
--set Image.tag=centos8-13.3-4.7.1
--set Image.tag=centos8-13.3-4.7.2
```

> **Tip**: You can use the default [values.yaml](values.yaml)
Expand All @@ -91,7 +91,7 @@ $ helm install template-small --name template-small \
| `.serviceType` | The type of service | `ClusterIP`
| `.image.repository` | The repository on DockerHub where the images are found. | `crunchydata` |
| `.image.container` | The container to be pulled from the repository. | `crunchy-postgres` |
| `.image.tag` | The image tag to be used. | `centos8-13.3-4.7.1` |
| `.image.tag` | The image tag to be used. | `centos8-13.3-4.7.2` |
| `.resources.cpu` | Defines a limit for CPU | `200m` |
| `.resources.memory` | Defines a limit for memory | `512Mi` |

Expand Down
2 changes: 1 addition & 1 deletion examples/helm/template-small/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ serviceType: ClusterIP
image:
repository: crunchydata
container: crunchy-postgres
tag: centos8-13.3-4.7.1
tag: centos8-13.3-4.7.2
resources:
cpu: 200m
memory: 512Mi
Expand Down
2 changes: 1 addition & 1 deletion redhat/atomic/help.1
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ The Red Hat Enterprise Linux version from which the container was built. For exa
\fB\fCRelease=\fR

.PP
The specific release number of the container. For example, Release="4.7.1"
The specific release number of the container. For example, Release="4.7.2"
2 changes: 1 addition & 1 deletion redhat/atomic/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ The Red Hat Enterprise Linux version from which the container was built. For exa

`Release=`

The specific release number of the container. For example, Release="4.7.1"
The specific release number of the container. For example, Release="4.7.2"

0 comments on commit 44d2824

Please sign in to comment.