File tree Expand file tree Collapse file tree 2 files changed +18
-11
lines changed Expand file tree Collapse file tree 2 files changed +18
-11
lines changed Original file line number Diff line number Diff line change @@ -58,22 +58,16 @@ are documented in detail in link:docs/strategies.asciidoc[Deployment Strategies]
58
58
* link:https://hub.docker.com/r/crunchydata/crunchy-upgrade/[PostgreSQL Upgrade Container]
59
59
* For OpenShift deployments, Openshift Origin 1.5.1+ or Openshift Container Platform 3.5
60
60
61
- [#Build and Setup Instructions]
62
- == Build and Setup Instructions
61
+ [#Build and Install Instructions]
62
+ == Build and Install Instructions
63
63
64
- You deploy the Postgres Operator to your Kube cluster by running the following command:
65
- ....
66
- make deploy
67
- ....
64
+ To build and deploy the Operator on your Kube system, follow
65
+ the instructions documented on the link:docs/build.asciidoc[Build and Install] page.
68
66
69
67
With the operator deployed, the *pgo* command line
70
68
interface can execute commands that the *postgres-operator* understands
71
69
and reacts to.
72
70
73
- You can download a pre-built *pgo* CLI binary from
74
- the link:https://github.com/CrunchyData/postgres-operator/releases[Releases] page on the github repository or build
75
- it yourself using the build instructions, documented on the link:docs/build.asciidoc[Build and Setup] page.
76
-
77
71
[#Configuration]
78
72
== Configuration
79
73
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ sudo chmod +r /etc/kubernetes/admin.conf
57
57
Once you have your Kube VM created, install some of the
58
58
required dependencies:
59
59
....
60
- yum -y install git
60
+ yum -y install git gettext
61
61
....
62
62
63
63
*NOTE* - as of Kube 1.6, RBAC security is enabled on most Kube
@@ -239,6 +239,19 @@ kubectl get pod -l 'name=postgres-operator'
239
239
kubectl get thirdpartyresources
240
240
....
241
241
242
+ You can also deploy the operator by running the following command:
243
+ ....
244
+ make deploy
245
+ ....
246
+
247
+ There are example scripts that will create PV and PVC resources
248
+ that can be used in your testing. See the following scripts:
249
+ ....
250
+ examples/operator/create-pv-nfs.sh
251
+ examples/operator/create-pv.sh
252
+ kubectl create -f examples/operator/crunchy-pvc.json
253
+ ....
254
+
242
255
Note that this example will create a PVC called *crunchy-pvc* that is
243
256
referenced in the examples and *pgo* configuration file as the
244
257
desired PVC to use when databases and clusters are created.
You can’t perform that action at this time.
0 commit comments