16 lines
403 B
Markdown
16 lines
403 B
Markdown
|
|
# services/monitoring
|
||
|
|
|
||
|
|
## Grafana admin secret
|
||
|
|
|
||
|
|
The Grafana Helm release expects a pre-existing secret named `grafana-admin`
|
||
|
|
in the `monitoring` namespace. Create or rotate it with:
|
||
|
|
|
||
|
|
```bash
|
||
|
|
kubectl create secret generic grafana-admin \
|
||
|
|
--namespace monitoring \
|
||
|
|
--from-literal=admin-user=admin \
|
||
|
|
--from-literal=admin-password='REPLACE_ME'
|
||
|
|
```
|
||
|
|
|
||
|
|
Update the password whenever you rotate credentials.
|