Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion labs/lab16.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ kubectl get pods -n monitoring
**Access Grafana:**
```bash
kubectl port-forward svc/monitoring-grafana -n monitoring 3000:80
# Default: admin / prom-operator
# Default login: admin
# To get password:
kubectl -n monitoring get secret monitoring-grafana -o jsonpath="{.data.admin-password}" | base64 -d ; echo
```

**Answer these questions using dashboards:**
Expand Down
Loading