forked from jamesfalkner/microsweeper-demo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
jaeger-example.yaml
46 lines (45 loc) · 1.05 KB
/
jaeger-example.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
apiVersion: apps/v1
kind: Deployment
metadata:
name: hotrod
spec:
selector:
matchLabels:
app: hotrod
replicas: 1
template:
metadata:
labels:
app: hotrod
spec:
containers:
- name: hotrod
image: jaegertracing/example-hotrod:latest
imagePullPolicy: Always
args: ["all"]
ports:
- containerPort: 8080
- containerPort: 8081
- containerPort: 8082
- containerPort: 8083
env:
- name: TEST
value: value
resources:
limits:
memory: 128Mi
- image: jaegertracing/jaeger-agent
name: jaeger-agent
ports:
- containerPort: 5775
protocol: UDP
- containerPort: 6831
protocol: UDP
- containerPort: 6832
protocol: UDP
- containerPort: 5778
protocol: TCP
args: ["--collector.host-port=simplest-collector:14267"]
resources:
limits:
memory: 128Mi