Skip to content

Commit 407d01c

Browse files
author
Jeff McCormick
committed
update version numbers for next release
1 parent 89c9cad commit 407d01c

13 files changed

+31
-31
lines changed

README.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= PostgreSQL Operator
2-
v2.1, {docdate}
2+
v2.3, {docdate}
33

44
== Table of Contents
55

@@ -174,7 +174,7 @@ or modifying PostgreSQL databases deployed within the Kubernetes cluster.
174174

175175
image::docs/operator-diagram.png?raw=true[]
176176

177-
The *pgo* client, as of release 2.1, is now a REST client which interacts
177+
The *pgo* client is a REST client which interacts
178178
with the *apiserver*. The *apiserver* is a REST API that interacts
179179
with the Kube API including creating Custom Resource Definition resources
180180
implemented by the PostgreSQL Operator.

centos7/Dockerfile.apiserver.centos7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM centos:7
22

3-
LABEL Release="2.2" Vendor="Crunchy Data Solutions"
3+
LABEL Release="2.3" Vendor="Crunchy Data Solutions"
44

55
ENV PGVERSION="9.6" PGDG_REPO="pgdg-centos96-9.6-3.noarch.rpm"
66

centos7/Dockerfile.csvload.centos7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LABEL name="crunchydata/csvload" \
55
PostgresVersion="9.6" \
66
PostgresFullVersion="9.6.6" \
77
version="7.3" \
8-
release="2.2" \
8+
release="2.3" \
99
build-date="2017-11-28" \
1010
url="https://crunchydata.com" \
1111
summary="loads a CSV file into a database" \

centos7/Dockerfile.lspvc.centos7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM centos:7
22

3-
LABEL Release="2.2" Vendor="Crunchy Data Solutions"
3+
LABEL Release="2.3" Vendor="Crunchy Data Solutions"
44

55
RUN yum -y update && yum -y clean all
66

centos7/Dockerfile.postgres-operator.centos7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM centos:7
22

3-
LABEL Release="2.2" Vendor="Crunchy Data Solutions"
3+
LABEL Release="2.3" Vendor="Crunchy Data Solutions"
44

55
ENV PGVERSION="9.6" PGDG_REPO="pgdg-centos96-9.6-3.noarch.rpm"
66

chart/postgres-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
description: CrunchyData Postgres Operator Helm chart
33
name: postgres-operator
44
version: 0.1.3
5-
appVersion: 2.1.0
5+
appVersion: 2.3
66
keywords:
77
- postgres
88
- database

chart/postgres-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ replicaCount: 1
55

66
image:
77
repository: crunchydata/postgres-operator
8-
tag: centos7-2.1
8+
tag: centos7-2.3
99
pullPolicy: IfNotPresent
1010

1111
env:

conf/apiserver/pgo.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Namespace: demo
22
Cluster:
33
CCPImagePrefix: crunchydata
4-
CCPImageTag: centos7-9.6.5-1.6.0
4+
CCPImageTag: centos7-10.1-1.7.0
55
Port: 5432
66
PrimaryPassword: password
77
User: testuser
@@ -28,4 +28,4 @@ Pgo:
2828
LSPVCTemplate: /config/pgo.lspvc-template.json
2929
CSVLoadTemplate: /config/pgo.csvload-template.json
3030
COImagePrefix: crunchydata
31-
COImageTag: centos7-2.2
31+
COImageTag: centos7-2.3

docs/build.asciidoc

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export GOBIN=$GOPATH/bin
8282
export PATH=$PATH:$GOBIN
8383
export COROOT=$GOPATH/src/github.com/crunchydata/postgres-operator
8484
export CO_BASEOS=centos7
85-
export CO_VERSION=2.2
85+
export CO_VERSION=2.3
8686
export CO_IMAGE_TAG=$CO_BASEOS-$CO_VERSION
8787
export CO_NAMESPACE=demo
8888
export CO_CMD=kubectl
@@ -117,36 +117,36 @@ itself:
117117
The Operator works with the Crunchy Container Suite
118118
containers, you can pre-pull them as follows:
119119

120-
For PostgreSQL version 9.6:
121-
....
122-
docker pull crunchydata/crunchy-postgres:centos7-9.6.6-1.7.0
123-
docker pull crunchydata/crunchy-backup:centos7-9.6.6-1.7.0
124-
docker pull crunchydata/crunchy-upgrade:centos7-9.6.6-1.7.0
125-
....
126-
127120
For PostgreSQL version 10.1:
128121
....
129122
docker pull crunchydata/crunchy-postgres:centos7-10.1-1.7.0
130123
docker pull crunchydata/crunchy-backup:centos7-10.1-1.7.0
131124
docker pull crunchydata/crunchy-upgrade:centos7-10.1-1.7.0
132125
....
133126

127+
For PostgreSQL version 9.6:
128+
....
129+
docker pull crunchydata/crunchy-postgres:centos7-9.6.6-1.7.0
130+
docker pull crunchydata/crunchy-backup:centos7-9.6.6-1.7.0
131+
docker pull crunchydata/crunchy-upgrade:centos7-9.6.6-1.7.0
132+
....
133+
134134
=== Get Prebuilt Images
135135

136136
At this point if you want to avoid building the images and binary
137137
from source, you can pull down the Docker images as follows:
138138
....
139-
docker pull crunchydata/lspvc:centos7-2.2
140-
docker pull crunchydata/csvload:centos7-2.2
141-
docker pull crunchydata/postgres-operator:centos7-2.2
142-
docker pull crunchydata/apiserver:centos7-2.2
139+
docker pull crunchydata/lspvc:centos7-2.3
140+
docker pull crunchydata/csvload:centos7-2.3
141+
docker pull crunchydata/postgres-operator:centos7-2.3
142+
docker pull crunchydata/apiserver:centos7-2.3
143143
....
144144

145145
Next get the *pgo* client, go to the Releases page and download the tar ball, uncompress it into your $HOME directory:
146146
....
147147
cd $HOME
148-
wget https://github.com/CrunchyData/postgres-operator/releases/download/2.1/postgres-operator.2.2.tar.gz
149-
tar xvzf ./postgres-operator.2.2.tar.gz
148+
wget https://github.com/CrunchyData/postgres-operator/releases/download/2.1/postgres-operator.2.3.tar.gz
149+
tar xvzf ./postgres-operator.2.3.tar.gz
150150
....
151151

152152
Lastly, add the *pgo* client into your PATH.
@@ -249,10 +249,10 @@ desired PVC to use when databases and clusters are created.
249249

250250
=== Configure Basic Authentication
251251

252-
In Operator version 2.2, Basic Authentication is required by the *apiserver*.
252+
In Operator version 2.3, Basic Authentication is required by the *apiserver*.
253253
You will configure the *pgo* client to specify a basic authentication
254254
username and password by creating a file in the user's home
255-
directory named *.pgouser* that looks similar to this:
255+
directory named *.pgouser* that looks similar to this, containing only a single line:
256256
....
257257
testuser:testpass
258258
....
@@ -274,7 +274,7 @@ username:password
274274
testuser:testpass
275275
....
276276

277-
Modify these values to be unique to your environment.
277+
Modify these values to be unique to your environment.
278278

279279
If the username and password passed by clients to the *apiserver* do
280280
not match, the REST call will fail and a log message will be produced

rhel7/Dockerfile.apiserver.rhel7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM registry.access.redhat.com/rhel7.3
22

33

4-
LABEL Release="2.2" Vendor="Crunchy Data Solutions"
4+
LABEL Release="2.3" Vendor="Crunchy Data Solutions"
55

66
ENV PGVERSION="9.6" PGDG_REPO="pgdg-centos96-9.6-3.noarch.rpm"
77

0 commit comments

Comments
 (0)