Skip to content

Commit 2bae209

Browse files
author
jmccormick2001
committed
update version numbers to 3.0"
1 parent 403fc12 commit 2bae209

28 files changed

+34
-34
lines changed

README.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
image::docs/crunchy_logo.png[Hyla Arborea,width="40%",height="40%", align="center"]
33
= PostgreSQL Operator
44

5-
v2.7, {docdate}
5+
v3.0, {docdate}
66

77
The *postgres-operator* is a controller that runs within a Kubernetes cluster that provides a means to deploy and manage PostgreSQL clusters.
88

apiserver/versionservice/versionimpl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func Version() msgs.VersionResponse {
2525
resp := msgs.VersionResponse{}
2626
resp.Status.Code = msgs.Ok
2727
resp.Status.Msg = "apiserver version"
28-
resp.Version = "2.7"
28+
resp.Version = "3.0"
2929

3030
return resp
3131
}

bin/pull.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# limitations under the License.
1515

1616
export P_IMAGE_PREFIX=registry-dev.crunchydata.com/crunchydata
17-
export CO_IMAGE_TAG=centos7-2.7
17+
export CO_IMAGE_TAG=centos7-3.0
1818

1919
docker pull $P_IMAGE_PREFIX/pgo-lspvc:$CO_IMAGE_TAG
2020
docker tag $P_IMAGE_PREFIX/pgo-lspvc:$CO_IMAGE_TAG $CO_IMAGE_PREFIX/pgo-lspvc:$CO_IMAGE_TAG

centos7/Dockerfile.pgo-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.7" Vendor="Crunchy Data Solutions"
3+
LABEL Release="3.0" Vendor="Crunchy Data Solutions"
44

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

centos7/Dockerfile.pgo-load.centos7

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ LABEL name="crunchydata/pgo-load" \
55
PostgresVersion="9.6" \
66
PostgresFullVersion="9.6.9" \
77
version="7.3" \
8-
release="2.7" \
9-
build-date="2018-05-09" \
8+
release="3.0" \
9+
build-date="2018-05-14" \
1010
url="https://crunchydata.com" \
1111
summary="loads a CSV or json file into a database" \
1212
description="executed by the operator, loads a CSV or json file." \

centos7/Dockerfile.pgo-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.7" Vendor="Crunchy Data Solutions"
3+
LABEL Release="3.0" Vendor="Crunchy Data Solutions"
44

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

centos7/Dockerfile.pgo-rmdata.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.7" Vendor="Crunchy Data Solutions"
3+
LABEL Release="3.0" 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.7" Vendor="Crunchy Data Solutions"
3+
LABEL Release="3.0" 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.7
5+
appVersion: 3.0
66
keywords:
77
- postgres
88
- database

chart/postgres-operator/files/apiserver/pgo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ Pgo:
4343
LSPVCTemplate: /config/pgo.lspvc-template.json
4444
LoadTemplate: /config/pgo.load-template.json
4545
COImagePrefix: crunchydata
46-
COImageTag: centos7-2.7
46+
COImageTag: centos7-3.0

chart/postgres-operator/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ replicaCount: 1
55

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

1111
env:
1212
debug: "true"
1313
ccp_image_prefix: "crunchydata"
1414
co_image_prefix: "crunchydata"
15-
co_image_tag: "centos7-2.7"
15+
co_image_tag: "centos7-3.0"
1616

1717
resources:
1818
limits:

conf/apiserver/pgo.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Cluster:
22
CCPImagePrefix: crunchydata
3-
CCPImageTag: centos7-10.4-1.8.3-rc3
3+
CCPImageTag: centos7-10.4-1.8.3
44
Port: 5432
55
User: testuser
66
Database: userdb
@@ -44,4 +44,4 @@ Pgo:
4444
LSPVCTemplate: /config/pgo.lspvc-template.json
4545
LoadTemplate: /config/pgo.load-template.json
4646
COImagePrefix: crunchydata
47-
COImageTag: centos7-2.7-rc3
47+
COImageTag: centos7-3.0

examples/pgo.yaml.emptydir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ Pgo:
2525
LSPVCTemplate: /config/pgo.lspvc-template.json
2626
LoadTemplate: /config/pgo.load-template.json
2727
COImagePrefix: crunchydata
28-
COImageTag: centos7-2.7
28+
COImageTag: centos7-3.0

examples/pgo.yaml.hostpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ Pgo:
2222
LSPVCTemplate: /config/pgo.lspvc-template.json
2323
LoadTemplate: /config/pgo.load-template.json
2424
COImagePrefix: crunchydata
25-
COImageTag: centos7-2.7
25+
COImageTag: centos7-3.0

examples/pgo.yaml.nfs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ Pgo:
2525
LSPVCTemplate: /config/pgo.lspvc-template.json
2626
LoadTemplate: /config/pgo.load-template.json
2727
COImagePrefix: crunchydata
28-
COImageTag: centos7-2.7
28+
COImageTag: centos7-3.0

examples/pgo.yaml.storageclass

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ Pgo:
2626
LSPVCTemplate: /config/pgo.lspvc-template.json
2727
LoadTemplate: /config/pgo.load-template.json
2828
COImagePrefix: crunchydata
29-
COImageTag: centos7-2.7
29+
COImageTag: centos7-3.0

examples/quickstart-for-gke.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
LOG="pgo-installer.log"
1717

18-
export PGORELEASE=2.7
18+
export PGORELEASE=3.0
1919

2020
echo "Testing for dependencies..." | tee -a $LOG
2121

@@ -57,7 +57,7 @@ export GOPATH=$HOME/odev
5757
export GOBIN=$GOPATH/bin
5858
export PATH=$PATH:$GOPATH/bin
5959
export CO_IMAGE_PREFIX=crunchydata
60-
export CO_IMAGE_TAG=centos7-2.7
60+
export CO_IMAGE_TAG=centos7-3.0
6161
export COROOT=$GOPATH/src/github.com/crunchydata/postgres-operator
6262
export CO_APISERVER_URL=https://127.0.0.1:18443
6363
export PGO_CA_CERT=$COROOT/conf/apiserver/server.crt

examples/quickstart-for-ocp.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
LOG="pgo-installer.log"
1717

18-
export PGORELEASE=2.7
18+
export PGORELEASE=3.0
1919

2020
echo "Testing for dependencies..." | tee -a $LOG
2121

@@ -57,7 +57,7 @@ export GOPATH=$HOME/odev
5757
export GOBIN=$GOPATH/bin
5858
export PATH=$PATH:$GOPATH/bin
5959
export CO_IMAGE_PREFIX=crunchydata
60-
export CO_IMAGE_TAG=centos7-2.7
60+
export CO_IMAGE_TAG=centos7-3.0
6161
export COROOT=$GOPATH/src/github.com/crunchydata/postgres-operator
6262
export CO_APISERVER_URL=https://127.0.0.1:18443
6363
export PGO_CA_CERT=$COROOT/conf/apiserver/server.crt

examples/sample-json-load-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
COImagePrefix: crunchydata
2-
COImageTag: centos7-2.7-rc3
2+
COImageTag: centos7-3.0
33
DbDatabase: userdb
44
DbUser: postgres
55
DbPort: 5432

examples/sample-load-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
COImagePrefix: crunchydata
2-
COImageTag: centos7-2.7-rc1
2+
COImageTag: centos7-3.0
33
DbDatabase: userdb
44
DbUser: postgres
55
DbPort: 5432

golang-examples/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func main() {
7777
thisconfig.PgoDef.LSPVCTemplate = "this lspvc template"
7878
thisconfig.PgoDef.LoadTemplate = "loadtempaltepath"
7979
thisconfig.PgoDef.COImagePrefix = "crunchydata"
80-
thisconfig.PgoDef.COImageTag = "centos7-2.7"
80+
thisconfig.PgoDef.COImageTag = "centos7-3.0"
8181

8282
//json.Unmarshal(buf, &c)
8383

golang-examples/pgo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@
5353
"LSPVCTemplate": "/config/pgo.lspvc-template.json",
5454
"LoadTemplate": "/config/pgo.load-template.json",
5555
"COImagePrefix": "crunchydata",
56-
"COImageTag": "centos7-2.7"
56+
"COImageTag": "centos7-3.0"
5757
}
5858
}

pgo/cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
"os"
2727
)
2828

29-
const ClientVersion = "2.7"
29+
const ClientVersion = "3.0"
3030

3131
var versionCmd = &cobra.Command{
3232
Use: "version",

rhel7/Dockerfile.pgo-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
22

33

4-
LABEL Release="2.7" Vendor="Crunchy Data Solutions"
4+
LABEL Release="3.0" Vendor="Crunchy Data Solutions"
55

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

rhel7/Dockerfile.pgo-load.rhel7

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ LABEL name="crunchydata/pgo-load" \
55
PostgresVersion="9.6" \
66
PostgresFullVersion="9.6.9" \
77
version="7.3" \
8-
release="2.7" \
9-
build-date="2018-05-09" \
8+
release="3.0" \
9+
build-date="2018-05-14" \
1010
url="https://crunchydata.com" \
1111
summary="loads a CSV or json file into a database" \
1212
description="executed by the operator, loads a CSV or json file." \

rhel7/Dockerfile.pgo-lspvc.rhel7

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

3-
LABEL Release="2.7" Vendor="Crunchy Data Solutions"
3+
LABEL Release="3.0" Vendor="Crunchy Data Solutions"
44

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

rhel7/Dockerfile.pgo-rmdata.rhel7

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

3-
LABEL Release="2.7" Vendor="Crunchy Data Solutions"
3+
LABEL Release="3.0" Vendor="Crunchy Data Solutions"
44

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

rhel7/Dockerfile.postgres-operator.rhel7

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

3-
LABEL Release="2.7" Vendor="Crunchy Data Solutions"
3+
LABEL Release="3.0" Vendor="Crunchy Data Solutions"
44

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

0 commit comments

Comments
 (0)