6 lines
266 B
Bash
Executable file
6 lines
266 B
Bash
Executable file
# Benutzername:
|
|
kubectl get secret kube-prometheus-stack-grafana -n monitoring -o jsonpath="{.data.admin-user}" | base64 -d && echo
|
|
|
|
# Passwort:
|
|
kubectl get secret kube-prometheus-stack-grafana -n monitoring -o jsonpath="{.data.admin-password}" | base64 -d && echo
|
|
|