top of page

Setup Prometheus Monitoring 🔥 in Kubernetes using Prometheus Operator


Learn how to set up Prometheus and Grafana to monitor your Kubernetes cluster.


In general, there are 3 ways to do the setup:

  1. Create all the configuration files yourself 👩🏻‍💻

  2. Using Prometheus Operator 😎

  3. Using Helm chart to deploy the Prometheus Operator 🚀

1. DIY 👩🏻‍💻

The first option includes creating all the configuration files by yourself, like Prometheus StatefulSet, Alertmanager, Grafana, all the ConfigMaps, and Secrets. And then executing them in the right order. I think this way is pretty inefficient; it's a lot of effort. You need to find a good step-by-step guide and hope that each step works, which usually is not the case. 😉


2. Prometheus Operator 😎

In this option, you would go and find an operator for Prometheus and deploy it in the cluster using the configuration files of the operator. It is more efficient.


Generally, think of an operator as a manager of all Prometheus individual components that you create. The operator will keep an eye on and manage the combination of StatefulSet and Deployments and all the other stuff that comes with Prometheus deployment as 1 unit so that you don’t have to manually manage those separate parts. 🙉


3. Helm chart to deploy Prometheus Operator 🚀

I think this way is the most efficient. Prometheus Operator has a Helm chart that is maintained by the Helm community. You can use this Helm chart to deploy the operator. So, Helm will do the initial setup. The operator will then manage the running Prometheus setup


In the demo, I show you the third way. We will easily deploy Prometheus and Grafana using Helm, and I walk you through the different components which were created. So that you have a good understanding 💡 of what they are and what they do.


 

This is the first part of the demo (Setup). In the second part, we will actually configure Prometheus to expose our own /metrics endpoint and configure Prometheus to scrape it. 🤓


If you missed the theoretical part, where I explain how Prometheus works and its architecture, you can check it out here: Prometheus Monitoring explained


Watch the demo video here 🙌🏼


 

Like, share and follow me 😍 for more content:

bottom of page