forked from grafana/tempo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeployment-distributor.yaml
More file actions
64 lines (64 loc) · 1.47 KB
/
Deployment-distributor.yaml
File metadata and controls
64 lines (64 loc) · 1.47 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
apiVersion: apps/v1
kind: Deployment
metadata:
name: distributor
namespace: tracing
spec:
minReadySeconds: 10
replicas: 5
revisionHistoryLimit: 10
selector:
matchLabels:
app: distributor
name: distributor
tempo-gossip-member: "true"
strategy:
rollingUpdate:
maxSurge: 3
maxUnavailable: 1
template:
metadata:
annotations:
config_hash: ffc07a671ffa7524e2d82dfbbc5515cb
labels:
app: distributor
name: distributor
tempo-gossip-member: "true"
spec:
containers:
- args:
- -target=distributor
- -config.file=/conf/tempo.yaml
- -mem-ballast-size-mbs=1024
image: grafana/tempo:latest
imagePullPolicy: IfNotPresent
name: distributor
ports:
- containerPort: 3200
name: prom-metrics
readinessProbe:
httpGet:
path: /ready
port: 3200
initialDelaySeconds: 15
timeoutSeconds: 1
resources:
limits:
cpu: "5"
memory: 5Gi
requests:
cpu: "3"
memory: 3Gi
volumeMounts:
- mountPath: /conf
name: tempo-conf
- mountPath: /overrides
name: overrides
terminationGracePeriodSeconds: 60
volumes:
- configMap:
name: tempo-distributor
name: tempo-conf
- configMap:
name: tempo-overrides
name: overrides