Monitoring with Prometheus
Author: Fabrice JAMMES (LinkedIn).
Prerequisites
# Launch the toolbox
ktbx desk
# Check your use kind-kind context
kubectx
#Launch initialization script
/home/k8s0/openshift-advanced/labs/3_policies/ex4-network.sh
# go to correct namespace
kubens network-k8s<ID>
Kubernetes Monitoring Lab with Helm
Objective
The goal of this lab is to deploy the Prometheus Stack using Helm while following best practices in shell scripting.
Prerequisites
Ensure you have the following installed:
- Kubernetes cluster (e.g., Minikube, Kind, or a cloud-managed cluster)
kubectl
configured to access the clusterhelm
installedbash
shell
Steps to Deploy Prometheus Stack
Note
The Prometheus installation is completed before the lab; the following instructions are for reference only.
Install Prometheus Stack
git clone https://github.com/k8s-school/demo-prometheus
cd demo-prometheus
./install.sh
6. Access Prometheus and Grafana
Once the deployment is complete, follow these exercises to interact with the monitoring stack:
- Watch all pods in the monitoring namespace:
- Retrieve Grafana password:
- Port forward Prometheus web UI to access it in a web browser:
Check the metrics and the alert rules.
- Port forward Grafana to access it in a web browser:
Retrieve the Grafana port using kubectl get svc ...
.
Check the Kubernetes dashboards.
Conclusion
This lab guides you through deploying a monitoring stack using Helm and Kubernetes, allowing you to explore Prometheus and Grafana for cluster monitoring.
The prometheus demo is available here: https://github.com/k8s-school/demo-prometheus