diff --git a/docs/administrator.md b/docs/administrator.md index 208e9ddb9..095a26364 100644 --- a/docs/administrator.md +++ b/docs/administrator.md @@ -22,6 +22,17 @@ Next deploy the postgres-operator from the docker image Zalando is using: If you prefer to build the image yourself follow up down below. +### - Helm chart + +You can install postgres-operator with also with a [Helm](https://helm.sh/) +chart. This requires installing the Helm CLI, first and then initializing it +in the cluster. + +```bash + $ helm init + $ helm install --name my-release ./charts/postgres-operator +``` + ## Check if CustomResourceDefinition has been registered ```bash @@ -312,7 +323,7 @@ generated from the current cluster manifest. There are two types of scans: * `sync scan`, running every `resync_period` seconds for every cluster * `repair scan`, coming every `repair_period` only for those clusters that didn't -report success as a result of the last operation applied to them. +report success as a result of the last operation applied to them. ## Postgres roles supported by the operator @@ -329,8 +340,8 @@ Postgres database cluster: ## Understanding rolling update of Spilo pods -The operator logs reasons for a rolling update with the `info` level and -a diff between the old and new StatefulSet specs with the `debug` level. +The operator logs reasons for a rolling update with the `info` level and +a diff between the old and new StatefulSet specs with the `debug` level. To read the latter log entry with the escaped characters rendered, view it in CLI with `echo -e`. Note that the resultant message will contain some noise because the `PodTemplate` used by the operator is yet to be updated diff --git a/docs/developer.md b/docs/developer.md index 5857c2266..760caeae1 100644 --- a/docs/developer.md +++ b/docs/developer.md @@ -29,14 +29,6 @@ ConfigMap is used to store the configuration of the operator ## Deploying the operator -### - Helm chart - -You can install postgres-operator with helm chart. - -```bash - $ helm install --name my-release ./charts/postgres-operator -``` - ### - Kubernetes manifest First you need to install the service account definition in your Minikube cluster. @@ -53,6 +45,17 @@ Next deploy the postgres-operator from the docker image Zalando is using: If you prefer to build the image yourself follow up down below. +### - Helm chart + +You can install postgres-operator with also with a [Helm](https://helm.sh/) +chart. This requires installing the Helm CLI, first and then initializing it +in the cluster. + +```bash + $ helm init + $ helm install --name my-release ./charts/postgres-operator +``` + ## Check if CustomResourceDefinition has been registered ```bash