-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathdeployment-prometheus.yml
executable file
·52 lines (52 loc) · 1.05 KB
/
deployment-prometheus.yml
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: prometheus
labels:
app: prometheus
spec:
replicas: 1
selector:
matchLabels:
app: prometheus
template:
metadata:
labels:
app: prometheus
spec:
containers:
- name: prometheus
image: prom/prometheus
imagePullPolicy: IfNotPresent
resources:
requests:
memory: "128Mi"
cpu: "50m"
limits:
memory: "256Mi"
cpu: "50m"
volumeMounts:
- name: prometheus-configmap
mountPath: "/etc/prometheus"
readOnly: true
ports:
- containerPort: 9090
volumes:
- name: prometheus-configmap
configMap:
name: prometheus
items:
- key: prometheus-prod.yml
path: prometheus.yml
---
apiVersion: v1
kind: Service
metadata:
name: prometheus
labels:
app: prometheus
spec:
ports:
- port: 9090
selector:
app: prometheus