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

Update README.md


Signed-off-by: Jonas Baude's avatarJonas Baude <jonas.baude@eonerc.rwth-aachen.de>
parent a70e63dd
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,34 @@ $ helm repo update
$ helm install influxdb influxdata/influxdb -n dsotp -f ts-database/influxdb-helm-values.yaml
```
Find pod
```bash
$ kubectl --namespace dsotp get pods
```
Login to the pod
```bashh
# kubectl --namespace dsotp exec -i -t [pod name] /bin/sh
```
Run influxdb CLI
```bash
$ influx
```
Create database and user telegraf and grant access
```sql
> CREATE DATABASE telegraf
> SHOW Databases
> CREATE USER telegraf WITH PASSWORD 'telegraf'
> GRANT ALL ON "telegraf" TO "telegraf"
```
### TS-DB Adapter
Create configmaps and deploy telegraf using the configmap
......
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