Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: install incluster #7

Merged
merged 1 commit into from
Jun 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions docs/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,23 @@ 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 --wait ./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 -- psql -U postgres
```
then connect to the db
```
\c reportsdb
```
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:

Expand Down
Loading