Skip to content
This repository was archived by the owner on Mar 17, 2026. It is now read-only.

Latest commit

 

History

History
20 lines (14 loc) · 727 Bytes

File metadata and controls

20 lines (14 loc) · 727 Bytes

Grafana

Grafana provides dashboard to monitor all the kubernetes resources. It also queries Loki for logs.

Grafana service is used to expose grafana to public domain via ingress nginx.

You can change the URL on which grafana will be accessible with changing host in the service file.

  - host: "grafana.example.com"

Then deploy using the following commands:

kubectl apply -f monitoring/grafana/grafana-configmap.yaml -n kube-system
kubectl apply -f monitoring/grafana/grafana-deployment.yaml -n kube-system
kubectl apply -f monitoring/grafana/grafana-job.yaml -n kube-system
kubectl apply -f monitoring/grafana/grafana-service.yaml -n kube-system