forked from grafana/tempo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeployment-query-frontend.yaml
More file actions
74 lines (74 loc) · 1.81 KB
/
Deployment-query-frontend.yaml
File metadata and controls
74 lines (74 loc) · 1.81 KB
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
64
65
66
67
68
69
70
71
72
73
74
apiVersion: apps/v1
kind: Deployment
metadata:
name: query-frontend
namespace: tracing
spec:
minReadySeconds: 10
replicas: 2
revisionHistoryLimit: 10
selector:
matchLabels:
app: query-frontend
name: query-frontend
strategy:
rollingUpdate:
maxSurge: 3
maxUnavailable: 1
template:
metadata:
annotations:
config_hash: 51dafa410364d46a0bdfd0d5922c2039
labels:
app: query-frontend
name: query-frontend
spec:
containers:
- args:
- -target=query-frontend
- -config.file=/conf/tempo.yaml
- -mem-ballast-size-mbs=1024
image: grafana/tempo:latest
imagePullPolicy: IfNotPresent
name: query-frontend
ports:
- containerPort: 3200
name: prom-metrics
readinessProbe:
httpGet:
path: /ready
port: 3200
initialDelaySeconds: 15
timeoutSeconds: 1
resources:
limits:
cpu: "1"
memory: 2Gi
requests:
cpu: 500m
memory: 1Gi
volumeMounts:
- mountPath: /conf
name: tempo-conf
- args:
- --query.base-path=/tempo
- --grpc-storage-plugin.configuration-file=/conf/tempo-query.yaml
- --query.bearer-token-propagation=true
image: grafana/tempo-query:latest
imagePullPolicy: IfNotPresent
name: tempo-query
ports:
- containerPort: 16686
name: jaeger-ui
- containerPort: 16687
name: jaeger-metrics
volumeMounts:
- mountPath: /conf
name: tempo-query-conf
volumes:
- configMap:
name: tempo-query
name: tempo-query-conf
- configMap:
name: tempo-query-frontend
name: tempo-conf