Skip to content

Commit

Permalink
Update INSTALL.md
Browse files Browse the repository at this point in the history
Signed-off-by: Anushka Mittal <[email protected]>
  • Loading branch information
anushkamittal2001 authored Jun 8, 2024
1 parent 246efd2 commit e83ec1f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,24 @@ helm install reports-server -n reports-server --create-namespace --wait ./charts
--set config.db.password=$(kubectl get secret -n reports-server reports-server-cluster-app --template={{.data.password}} | base64 -d)
```

To run without cnpg:
```bash
helm install reports-server -n reports-server --create-namespace --wai
t ./charts/reports-server \
--set image.tag=latest \
--set config.db.name=reportsdb
```
NOTE: to check where the reports are stored you can then exec into the postgres pod
```bash
kubectl exec -it reports-server-postgresql-0 -n reports-server -- bash
```
then connect to the db
```
\c reportsdb
```
and query for speicifc data. (psql -h database-2.cgfhp1exibuy.us-west-1.rds.amazonaws.com -p 5432 -U postgres # p: r6fhNMa4wZtNzjAoOV1M)


## 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:

Expand Down

0 comments on commit e83ec1f

Please sign in to comment.