-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprometheus-deploy.yaml
63 lines (59 loc) · 1.25 KB
/
prometheus-deploy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
apiVersion: v1
kind: ConfigMap
metadata:
name: prometheus-config
data:
prometheus.yml: |
global:
scrape_interval: 10s
evaluation_interval: 10s
scrape_configs:
- job_name: 'user-service'
metrics_path: '/actuator/prometheus'
scrape_interval: 5s
static_configs:
- targets: ['user-service:8082']
labels:
application: 'user Service'
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: prometheus-service
spec:
replicas: 1
selector:
matchLabels:
app: prometheus-service
template:
metadata:
labels:
app: prometheus-service
spec:
containers:
- name: prometheus
image: prom/prometheus
ports:
- containerPort: 9090
volumeMounts:
- name: prometheus-config
mountPath: /etc/prometheus/prometheus.yml
subPath: prometheus.yml
volumes:
- name: prometheus-config
configMap:
name: prometheus-config
---
apiVersion: v1
kind: Service
metadata:
name: prometheus-service
spec:
selector:
app: prometheus-service
ports:
- protocol: TCP
port: 5050
targetPort: 9090
nodePort: 30090
type: NodePort