Skip to main content

Posts

Showing posts from October 12, 2019

Installing Grafana with ingress

Installing Grafana with ingress If you are deploying Prometheus and Grafana in Kubernetes, easiest way would be to use helm charts. But when you are deploying the helm chart, You will need to provide custom parameters mainly for storage configuration and service configuration to expose Grafana UI to outsiders. In this blog I will share the artifacts I used in the AWS EKS. But if someone wants to change it to use in any other platform or a custom installation, just change the ingress annotations and you will be good. For the basic installation I used eks workshop [1] to start with. Here everything is provided in command line. Instead I used yaml files and used the file with -f option of the helm command. My sample helm command would be like below. helm install --name promethues stable/prometheus -f prometheus.yaml --namespace prometheus My prometheus.yaml will be like below. Here I haven’t changed anything from eks workshop other than taking everything to yaml file. Bu