Skip to content

Commit 25e02ad

Browse files
authored
Minor change to helm section in quickstart guide (zalando#549)
* updated helm section in quickstart
1 parent c1d108a commit 25e02ad

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

docs/quickstart.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,19 @@ kubectl create -f manifests/postgres-operator.yaml # deployment
3232

3333
## Helm chart
3434

35-
Another possibility is using a provided [Helm](https://helm.sh/) chart which
36-
saves you these steps. Therefore, you would need to install the helm CLI on your
37-
machine. After initializing helm (and its server component Tiller) in your local
38-
cluster you can install the operator chart.
35+
Alternatively, the operator can be installed by using the provided [Helm](https://helm.sh/)
36+
chart which saves you the manual steps. Therefore, you would need to install
37+
the helm CLI on your machine. After initializing helm (and its server
38+
component Tiller) in your local cluster you can install the operator chart.
39+
You can define a release name that is prepended to the operator resource's
40+
names. Use `--name zalando` to match with the default service account name
41+
as older operator versions do not support custom names for service accounts.
3942

4043
```bash
4144
# 1) initialize helm
4245
helm init
4346
# 2) install postgres-operator chart
44-
helm install --name postgres-operator ./charts/postgres-operator
47+
helm install --name zalando ./charts/postgres-operator
4548
```
4649

4750
## Create a Postgres cluster

0 commit comments

Comments
 (0)