@@ -58,7 +58,26 @@ git clone https://github.com/CrunchyData/postgres-operator.git
5858cd postgres-operator
5959....
6060
61- == Get the dependencies:
61+ == Get Pre-built Images
62+ At this point if you want to avoid building the images and binary
63+ from source, you can pull down the Docker images as follows:
64+ ....
65+ docker pull crunchydata/lspvc:centos7-1.0.0
66+ docker pull crunchydata/postgres-operator:centos7-1.0.0
67+ ....
68+
69+ Then to get the *pgo* client, go to the Releases page and download the tar ball, uncompress
70+ it into your $HOME directory:
71+ ....
72+ cd $HOME
73+ wget https://github.com/CrunchyData/postgres-operator/releases/download/v1.0/postgres-operator.1.0.0.tar.gz
74+ tar xvzf ./postgres-operator.1.0.0.tar.gz
75+ ....
76+
77+ Lastly, add the *pgo* client into your PATH.
78+
79+
80+ == Source Dependencies
6281
6382Install a golang compiler, this can be done with either
6483your package manager or by following directions
@@ -82,14 +101,14 @@ sudo systemctl restart docker
82101newgrp docker
83102....
84103
85- == Compile the CLI:
104+ == Compile *pgo*
86105....
87106cd $COROOT
88107make pgo
89108which pgo
90109....
91110
92- == Compile and build the operator Docker images:
111+ == Build the Docker Images
93112....
94113cd $COROOT
95114make operatorimage
@@ -116,7 +135,7 @@ desired PVC to use when databases and clusters are created.
116135When you first run the operator, it will create the required
117136ThirdPartyResources.
118137
119- == Setup initial configuration file for the postgres operator CLI
138+ == Setup *pgo* Configuration File
120139
121140The *pgo* client requires two configuration files be copied
122141to your $HOME as follows:
0 commit comments