Skip to content

Commit 4b1e997

Browse files
committed
added/updated Helm chart description in other docs
1 parent 0ac4afe commit 4b1e997

File tree

2 files changed

+25
-11
lines changed

2 files changed

+25
-11
lines changed

docs/administrator.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ Next deploy the postgres-operator from the docker image Zalando is using:
2222

2323
If you prefer to build the image yourself follow up down below.
2424

25+
### - Helm chart
26+
27+
You can install postgres-operator with also with a [Helm](https://helm.sh/)
28+
chart. This requires installing the Helm CLI, first and then initializing it
29+
in the cluster.
30+
31+
```bash
32+
$ helm init
33+
$ helm install --name my-release ./charts/postgres-operator
34+
```
35+
2536
## Check if CustomResourceDefinition has been registered
2637

2738
```bash
@@ -312,7 +323,7 @@ generated from the current cluster manifest. There are two types of scans:
312323
* `sync scan`, running every `resync_period` seconds for every cluster
313324

314325
* `repair scan`, coming every `repair_period` only for those clusters that didn't
315-
report success as a result of the last operation applied to them.
326+
report success as a result of the last operation applied to them.
316327

317328
## Postgres roles supported by the operator
318329

@@ -329,8 +340,8 @@ Postgres database cluster:
329340

330341
## Understanding rolling update of Spilo pods
331342

332-
The operator logs reasons for a rolling update with the `info` level and
333-
a diff between the old and new StatefulSet specs with the `debug` level.
343+
The operator logs reasons for a rolling update with the `info` level and
344+
a diff between the old and new StatefulSet specs with the `debug` level.
334345
To read the latter log entry with the escaped characters rendered, view it
335346
in CLI with `echo -e`. Note that the resultant message will contain some
336347
noise because the `PodTemplate` used by the operator is yet to be updated

docs/developer.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,6 @@ ConfigMap is used to store the configuration of the operator
2929

3030
## Deploying the operator
3131

32-
### - Helm chart
33-
34-
You can install postgres-operator with helm chart.
35-
36-
```bash
37-
$ helm install --name my-release ./charts/postgres-operator
38-
```
39-
4032
### - Kubernetes manifest
4133

4234
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:
5345

5446
If you prefer to build the image yourself follow up down below.
5547

48+
### - Helm chart
49+
50+
You can install postgres-operator with also with a [Helm](https://helm.sh/)
51+
chart. This requires installing the Helm CLI, first and then initializing it
52+
in the cluster.
53+
54+
```bash
55+
$ helm init
56+
$ helm install --name my-release ./charts/postgres-operator
57+
```
58+
5659
## Check if CustomResourceDefinition has been registered
5760

5861
```bash

0 commit comments

Comments
 (0)