From 9e54b7022733cfc38ff6b46142880cc5e50ec472 Mon Sep 17 00:00:00 2001 From: Felix Kunde Date: Tue, 29 Oct 2019 11:31:56 +0100 Subject: [PATCH] update docs to use opconfig --- docs/administrator.md | 3 ++- docs/developer.md | 3 ++- docs/quickstart.md | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/administrator.md b/docs/administrator.md index 5cde06ade..44686a25e 100644 --- a/docs/administrator.md +++ b/docs/administrator.md @@ -103,7 +103,8 @@ to function under access control restrictions. To deploy the operator with this RBAC policy use: ```bash -kubectl create -f manifests/configmap.yaml +kubectl create -f manifests/operatorconfiguration.crd.yaml +kubectl create -f manifests/postgresql-operator-default-configuration.yaml kubectl create -f manifests/operator-service-account-rbac.yaml kubectl create -f manifests/postgres-operator.yaml kubectl create -f manifests/minimal-postgres-manifest.yaml diff --git a/docs/developer.md b/docs/developer.md index f8351e28a..4d0ea2e12 100644 --- a/docs/developer.md +++ b/docs/developer.md @@ -80,7 +80,8 @@ manifest but replace the version and tag. Don't forget to also apply configuration and RBAC manifests first, e.g.: ```bash -kubectl create -f manifests/configmap.yaml +kubectl create -f manifests/operatorconfiguration.crd.yaml +kubectl create -f manifests/postgresql-operator-default-configuration.yaml kubectl create -f manifests/operator-service-account-rbac.yaml sed -e "s/\(image\:.*\:\).*$/\1$TAG/" manifests/postgres-operator.yaml | kubectl create -f - diff --git a/docs/quickstart.md b/docs/quickstart.md index 2da2cab7c..9425bf418 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -49,7 +49,8 @@ git clone https://github.com/zalando/postgres-operator.git cd postgres-operator # apply the manifests in the following order -kubectl create -f manifests/configmap.yaml # configuration +kubectl create -f manifests/operatorconfiguration.crd.yaml # registers the CRD +kubectl create -f manifests/postgresql-operator-default-configuration.yaml # configuration kubectl create -f manifests/operator-service-account-rbac.yaml # identity and permissions kubectl create -f manifests/postgres-operator.yaml # deployment ```