https://github.com/michaelcade/upthestack-argocd
GitOps
https://github.com/michaelcade/upthestack-argocd
Last synced: 5 months ago
JSON representation
GitOps
- Host: GitHub
- URL: https://github.com/michaelcade/upthestack-argocd
- Owner: MichaelCade
- Created: 2025-03-03T09:41:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-12T15:32:44.000Z (10 months ago)
- Last Synced: 2025-11-16T23:27:07.366Z (8 months ago)
- Size: 229 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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