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

0 commit comments

Comments
 (0)