Skip to content

Commit

Permalink
Add compatibility for PostgreSQL Operator v4.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jkatz committed Nov 19, 2020
1 parent b05fcc2 commit a54b2b7
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img width="300" src="./docs/assets/images/crunchy_logo.png?raw=true"/>
</p>

Latest Release: v4.5.0, 2020-10-13
Latest Release: v4.5.1, 2020-10-13

## General

Expand Down Expand Up @@ -40,8 +40,8 @@ schedule and version number for the the
Therefore, to ensure compatibility between **pgo-osb** and the PostgreSQL
Operator, please ensure the version number for **pgo-osb** matches the
version number of the PostgreSQL Operator deployed in your environment. For
instance, if you are using **pgo-osb** v4.5.0, please ensure the Crunchy
PostgreSQL Operator v4.5.0 is also deployed in your environment.
instance, if you are using **pgo-osb** v4.5.1, please ensure the Crunchy
PostgreSQL Operator v4.5.1 is also deployed in your environment.

## Prerequisites

Expand Down Expand Up @@ -171,7 +171,7 @@ export OSB_NAMESPACE=demo
export OSB_CMD=kubectl
export OSB_ROOT=$GOPATH/src/github.com/crunchydata/pgo-osb
export OSB_BASEOS=centos7
export OSB_VERSION=4.5.0
export OSB_VERSION=4.5.1
export OSB_IMAGE_TAG=$OSB_BASEOS-$OSB_VERSION
export OSB_IMAGE_PREFIX=crunchydata
```
Expand Down
4 changes: 2 additions & 2 deletions centos7/Dockerfile.pgo-osb.centos7
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM centos:7

LABEL Vendor="Crunchy Data Solutions" \
Version="4.5.0" \
Release="4.5.0" \
Version="4.5.1" \
Release="4.5.1" \
summary="Crunchy Data pgo-osb open service broker " \
description="Crunchy Data PostgreSQL Operator - pgo-osb "

Expand Down
2 changes: 1 addition & 1 deletion deploy/deploy_notls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
- --PGO_APISERVER_URL
- "https://postgres-operator:8443"
- --PGO_APISERVER_VERSION
- "4.5.0"
- "4.5.1"
- --insecure
- "true"
- --logtostderr
Expand Down
2 changes: 1 addition & 1 deletion deploy/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
- --PGO_APISERVER_URL
- "https://postgres-operator:8443"
- --PGO_APISERVER_VERSION
- "4.5.0"
- "4.5.1"
- --logtostderr
- --tls-cert-file
- "/var/run/pgo-osb/server.crt"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.13
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/blang/expenv v1.2.0 // indirect
github.com/crunchydata/postgres-operator v4.5.0+incompatible
github.com/crunchydata/postgres-operator v4.5.1+incompatible
github.com/docker/spdystream v0.0.0-20181023171402-6480d4af844c // indirect
github.com/emicklei/go-restful v2.10.0+incompatible // indirect
github.com/evanphx/json-patch v4.5.0+incompatible // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ github.com/blang/expenv v1.2.0 h1:K4ioZx3YtMZGzviMn1/3sjt9dc/TaFWPCoBfTVGZ3m4=
github.com/blang/expenv v1.2.0/go.mod h1:QaWOoKNTB+PuI3HYcVRKd964gW8OMgiVyuTQUmMKBtU=
github.com/crunchydata/postgres-operator v4.5.0+incompatible h1:lBjfQELcDXs1n/x9Kd/QhUtNXy4xuNhx2ob6UavGoC8=
github.com/crunchydata/postgres-operator v4.5.0+incompatible/go.mod h1:oFjQzSNSrG0cUtqahIQDPO32bqCbg3hpwOMVJofNSyM=
github.com/crunchydata/postgres-operator v4.5.1+incompatible h1:zM8goMWCNmwbAn6e4DvykD4SQBPbn3G0id+Vx1UBgZY=
github.com/crunchydata/postgres-operator v4.5.1+incompatible/go.mod h1:oFjQzSNSrG0cUtqahIQDPO32bqCbg3hpwOMVJofNSyM=
github.com/davecgh/go-spew v0.0.0-20151105211317-5215b55f46b2/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
Expand Down

0 comments on commit a54b2b7

Please sign in to comment.