An open API service indexing awesome lists of open source software.

https://github.com/michaelcade/upthestack-argocd

GitOps
https://github.com/michaelcade/upthestack-argocd

Last synced: 5 months ago
JSON representation

GitOps

Awesome Lists containing this project

README

          

# UpTheStack-ArgoCD
GitOps

You get this token from your influxdb installation

```
kubectl get secret -n monitoring influxdb-influxdb2-auth -o jsonpath="{.data.admin-token}" | base64 --decode; echo
```

We will then take this token and create a secret that is used by Grafana and Telegraf to connect with InfluxDB

```
kubectl create secret generic telegraf-influx-token \
--namespace monitoring \
--from-literal=influx-token=
```

I also made the change here for

kubectl create secret generic grafana-admin-secret \
--namespace monitoring \
--from-literal=admin-password=your-secure-password