Skip to content

Commit

Permalink
fix: etcd install docs
Browse files Browse the repository at this point in the history
Signed-off-by: Vishal Choudhary <[email protected]>
  • Loading branch information
vishal-chdhry committed Nov 4, 2024
1 parent 0d85004 commit 8a3f5b4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,15 @@ helm repo update
Optionally, show all available chart versions for reports-server.

```bash
helm search repo reports-server --l
helm search repo reports-server --devel
```

Install the reports-server chart:

```bash
helm install reports-server -n reports-server --create-namespace --wait reports-server/reports-server
helm install reports-server -n reports-server --create-namespace --wait reports-server/reports-server \
--set config.etcd.enabled=false \
--set postgresql.enabled=true
```
<!---->
<!-- To run without cnpg: -->
Expand All @@ -104,8 +106,8 @@ helm install reports-server -n reports-server --create-namespace --wait reports-
<!-- and query for specific data. -->
<!---->
<!---->
## With inmemory storage
Reports server can be installed without any database as well. In this case, reports will be stored in the memory of reports-server pod. You can install reports-server with inmemory configuration as follows:
## With embedded etcd storage
Reports server can be installed with embedded etcd as well. In this case, reports will be stored in an HA etcd instance. You can install reports-server with etcd database as follows:

<!-- In order to install reports-server with Helm, first add the Reports-server Helm repository: -->
<!-- ```bash -->
Expand All @@ -126,9 +128,7 @@ Reports server can be installed without any database as well. In this case, repo
Install the reports-server chart:

```bash
helm install reports-server --namespace reports-server --create-namespace --wait ./charts/reports-server \
--set config.debug=true \
--set postgresql.enabled=false
helm install reports-server --namespace reports-server --create-namespace --wait ./charts/reports-server
```
### Testing

Expand Down

0 comments on commit 8a3f5b4

Please sign in to comment.