11= PostgreSQL Operator Build and Setup
2- v1.2 .0, {docdate}
2+ v1.3 .0, {docdate}
33
44== Overview
55
@@ -117,7 +117,7 @@ export GOBIN=$GOPATH/bin
117117export PATH=$PATH:$GOBIN
118118export COROOT=$GOPATH/src/github.com/crunchydata/postgres-operator
119119export CO_BASEOS=centos7
120- export CO_VERSION=1.2 .0
120+ export CO_VERSION=1.3 .0
121121export CO_IMAGE_TAG=$CO_BASEOS-$CO_VERSION
122122....
123123
@@ -134,16 +134,16 @@ cd postgres-operator
134134At this point if you want to avoid building the images and binary
135135from source, you can pull down the Docker images as follows:
136136....
137- docker pull crunchydata/lspvc:centos7-1.2 .0
138- docker pull crunchydata/postgres-operator:centos7-1.2 .0
137+ docker pull crunchydata/lspvc:centos7-1.3 .0
138+ docker pull crunchydata/postgres-operator:centos7-1.3 .0
139139....
140140
141141Then to get the *pgo* client, go to the Releases page and download the tar ball, uncompress
142142it into your $HOME directory:
143143....
144144cd $HOME
145- wget https://github.com/CrunchyData/postgres-operator/releases/download/v1.2 .0/postgres-operator.1.2 .0.tar.gz
146- tar xvzf ./postgres-operator.1.2 .0.tar.gz
145+ wget https://github.com/CrunchyData/postgres-operator/releases/download/v1.3 .0/postgres-operator.1.3 .0.tar.gz
146+ tar xvzf ./postgres-operator.1.3 .0.tar.gz
147147....
148148
149149Lastly, add the *pgo* client into your PATH.
@@ -253,8 +253,11 @@ the following:
253253 * show all clusters (*pgo show cluster all*)
254254 * backup a cluster (*pgo backup testcluster*)
255255 * show backup of cluster (*pgo show backup testcluster*)
256+ * show backup pvc of cluster (*pgo show backup testcluster --show-pvc-true*)
257+ * restore a cluster (*pgo create cluster restoredcluster --backup-pvc=testcluster-backup-pvc --backup-path=testcluster-backups/2017-01-01-01-01-01 --secret-from=testcluster*)
258+ * test a cluster (*pgo test restoredcluster*)
259+ * minor upgrade a cluster (*pgo upgrade testcluster*)
260+ * major upgrade a cluster (*pgo upgrade testcluster --upgrade-type=major*)
261+ * clone a cluster (*pgo clone testcluster --name=cloneexample*)
256262 * delete a cluster (*pgo delete cluster testcluster*)
257- * restore a cluster (*pgo create cluster restoredcluster --backup-pvc=testcluster-backup-pvc --backup-path=testcluster-backups/2017-01-01-01-01-01*)
258- * minor upgrade a cluster (*pgo create upgrade testcluster*)
259- * major upgrade a cluster (*pgo create upgrade testcluster --upgrade-type=major*)
260263
0 commit comments