In this video I’ll be installing Prometheus and Grafana in a Kubernetes cluster running in Rancher Desktop on my MacBook.
There are many options available out there but this is the easiest one I found to get up and running quickly.
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
helm install prometheus-stack prometheus-community/kube-prometheus-stack --namespace=prometheus-stack --create-namespace
helm show values prometheus-community/kube-prometheus-stack > prometheus-default-values.yaml
Opening the Grafana UI
k port-forward svc/prometheus-stack-grafana 3000:80
Then you can open it by entering localhost:3000
in your browser.
The default credentials are admin:prom-operator
Links:
202312250812