First commit

This commit is contained in:
Adrien Reslinger 2020-01-28 09:11:29 +01:00
parent 2e5aa6a504
commit af03d7e1c4
25 changed files with 2035 additions and 0 deletions

View file

@ -0,0 +1,19 @@
apiVersion: v1
kind: Service
metadata:
name: node-exporter
namespace: monitoring
annotations:
prometheus.io/scrape: 'true'
spec:
type: ClusterIP
# service is created to allow prometheus to scape endpoints
clusterIP: None
selector:
name: node-exporter
phase: prod
ports:
- name: metrics
protocol: TCP
port: 80
targetPort: 9100