Skip to content
Snippets Groups Projects
Commit 5b110b90 authored by Jonas Baude's avatar Jonas Baude
Browse files

Add first draft of manual to README


Signed-off-by: Jonas Baude's avatarJonas Baude <jonas.baude@eonerc.rwth-aachen.de>
parent e3b1cc49
No related branches found
No related tags found
No related merge requests found
......@@ -4,3 +4,41 @@ This repository contains deployment instructions and corresponding configuration
The core platform is based on the SOGNO platform.
We assume you have a full-fleged or light-weight kubernetes cluster up and running.
Please ensure you setup is in line with [this](https://sogno-platform.github.io/docs/getting-started/single-node/) base setup.
## Visualization Stack
### Databus
```bash
$ helm repo add bitnami https://charts.bitnami.com/bitnami
$ helm repo update
$ helm install -n dsotp --create-namespace -f databus/rabbitmq_values.yaml rabbitmq bitnami/rabbitmq
```
### Timeseries Database
```bash
$ helm repo add influxdata https://influxdata.github.io/helm-charts
$ helm repo update
$ helm install influxdb influxdata/influxdb -n dsotp -f ts-database/influxdb-helm-values.yaml
```
### TS-DB Adapter
Create configmaps and deploy telegraf using the configmap
```bash
$ kubectl apply -k ts-adapter/
$ kubectl apply -f ts-adapter/telegraf-deployment.yaml
```
### Grafana
```bash
$ helm install grafana stable/grafana -f visualization/grafana_values.yaml
```
Get admin password
```bash
$ kubectl get secret -n dsotp grafana -o jsonpath="{.data.admin-password}" | base64 --decode ; echo
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment