Using hostPath Volume Type to Inject Configuration Files
In this lesson, we will get familiarized with Prometheus and configure it with hostPath Volume.
Using Prometheus
We are about to deploy Prometheus for the first time. We won’t go into details behind the application except to say that it’s fantastic and that you should consider it for your monitoring and alerting needs. We’re using it only to demonstrate a few Kubernetes concepts. We’re not trying to learn how to operate it.
Looking into the Definition
Let’s take a look at the application’s definition.
cat volume/prometheus.yml
The output is as follows.
apiVersion: extensions/v1beta1kind: Ingressmetadata:name: prometheusannotations:ingress.kubernetes.io/ssl-redirect: "false"nginx.ingress.kubernetes.io/ssl-redirect: "false"spec:rules:- http:paths:- path: /prometheusbackend:serviceName: prometheusservicePort: 9090---apiVersion: apps/v1beta2kind: Deploymentmetadata:name: prometheusspec:selector:matchLabels:type: monitorservice: prometheusstrategy:type: Recreatetemplate:metadata:labels:type: monitorservice: prometheusspec:containers:- name: prometheusimage: prom/prometheus:v2.0.0command:- /bin/prometheusargs:- "--config.file=/etc/prometheus/prometheus.yml"- "--storage.tsdb.path=/prometheus"- "--web.console.libraries=/usr/share"- "--web.external-url=http://192.168.99.100/prometheus"---apiVersion: v1kind: Servicemetadata:name: prometheusspec:ports:- port: 9090selector:type: monitorservice: prometheus
There’s nothing genuinely new in that YAML file. It defines an Ingress, a Deployment, and a Service. There is, however, one thing we might need to change.
Configuring the IP
Prometheus needs a full external-url
if we want to change the base path. At the moment, it’s set to the IP of our Minikube VM. In your case, that IP might be different. We’ll fix that ...