File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -54,9 +54,13 @@ kubectl create -f manifests/operator-service-account-rbac.yaml # identity and p
5454kubectl create -f manifests/postgres-operator.yaml # deployment
5555```
5656
57- When using kubectl 1.14 or newer the mentioned manifests could be also be
58- bundled in one [ Kustomization] ( https://github.com/kubernetes-sigs/kustomize )
59- manifest.
57+ There is a [ Kustomization] ( https://github.com/kubernetes-sigs/kustomize )
58+ manifest that [ combines the mentioned resources] ( ../manifests/kustomization.yaml ) -
59+ it can be used with kubectl 1.14 or newer as easy as:
60+
61+ ``` bash
62+ kubectl apply -k github.com/zalando/postgres-operator/manifests
63+ ```
6064
6165For convenience, we have automated starting the operator with minikube using the
6266` run_operator_locally ` script. It applies the [ ` acid-minimal-cluster ` ] ( ../manifests/minimal-postgres-manifest ) .
Original file line number Diff line number Diff line change 1+ apiVersion : kustomize.config.k8s.io/v1beta1
2+ kind : Kustomization
3+ resources :
4+ - configmap.yaml
5+ - operator-service-account-rbac.yaml
6+ - postgres-operator.yaml
You can’t perform that action at this time.
0 commit comments