-
Notifications
You must be signed in to change notification settings - Fork 1
/
thousandEyesDeploy.yaml
43 lines (42 loc) · 1.01 KB
/
thousandEyesDeploy.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
metadata:
annotations:
namespace: [name of your namespace]
name: thousandeyes
labels:
app: thoudsandeyes
spec:
replicas: 1
selector:
matchLabels:
app: thoudsandeyes
template:
metadata:
labels:
app: thoudsandeyes
spec:
hostname: [hostname that you want to show in thousand eyes dashboard]
containers:
- name: thousandeyes
image: 'thousandeyes/enterprise-agent:latest'
imagePullPolicy: Always
command:
- /sbin/my_init
securityContext:
capabilities:
add:
- NET_ADMIN
- SYS_ADMIN
env:
- name: TEAGENT_ACCOUNT_TOKEN
valueFrom:
secretKeyRef:
name: te-creds
key: TEAGENT_ACCOUNT_TOKEN
- name: TEAGENT_INET
value: "4"
resources:
limits:
memory: 3584Mi
requests:
memory: 2000Mi
restartPolicy: Always