Setting up Prometheus and Grafana on Amazon EKS for Kubernetes Monitoring
Introduction:
Amazon Elastic Kubernetes Service (EKS) makes it easy to deploy, manage, and scale containerized applications using Kubernetes. In this blog post, we will walk through the process of setting up Prometheus and Grafana on Amazon EKS to mo...
navyadevops.hashnode.dev5 min read
Hello ! Just a little mistake in prometheus installation with helm, the --set alertmanager.persistentVolume.storageClass="gp2" is not ok, the good one is :
-set alertmanager.persistence.storageClass="gp2"
If not the storage class of alertmanager is not set to "gp2" and it's not enable to mount.
so it's :
helm upgrade -i prometheus prometheus-community/prometheus \ --namespace prometheus \ --set alertmanager.persistence.storageClass="gp2" \ --set server.persistentVolume.storageClass="gp2"