This repository has been archived by the owner on Oct 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
instana-agent.yaml
214 lines (209 loc) · 5.77 KB
/
instana-agent.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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
apiVersion: v1
kind: Secret
metadata:
name: instana-agent-secret
type: Opaque
data:
key: <your instana agent key base64 encoded>
---
apiVersion: v1
kind: ConfigMap
metadata:
name: instana-configuration
data:
configuration.yaml: |
# Manual a-priori configuration. Configuration will be only used when the sensor
# is actually installed by the agent.
# The commented out example values represent example configuration and are not
# necessarily defaults. Defaults are usually 'absent' or mentioned separately.
# Changes are hot reloaded unless otherwise mentioned.
# It is possible to create files called 'configuration-abc.yaml' which are
# merged with this file in file system order. So 'configuration-cde.yaml' comes
# after 'configuration-abc.yaml'. Only nested structures are merged, values are
# overwritten by subsequent configurations.
# Secrets
# To filter sensitive data from collection by the agent, all sensors respect
# the following secrets configuration. If a key collected by a sensor matches
# an entry from the list, the value is redacted.
#com.instana.secrets:
# # One of: 'equals-ignore-case', 'equals', 'contains-ignore-case', 'contains', 'regex'
# matcher: 'contains-ignore-case'
# list:
# - 'key'
# - 'password'
# - 'secret'
# Host
#com.instana.plugin.host:
# tags:
# - 'dev'
# - 'app1'
# Hardware & Zone
#com.instana.plugin.generic.hardware:
# enabled: true # disabled by default
# availability-zone: 'zone'
---
kind: ClusterRole
apiVersion: v1
metadata:
name: instana-agent-role
rules:
- nonResourceURLs:
- "/version"
- "/healthz"
verbs: ["get"]
- apiGroups: ["batch"]
resources:
- "jobs"
verbs: ["get", "list", "watch"]
- apiGroups: ["extensions"]
resources:
- "deployments"
- "replicasets"
- "ingresses"
verbs: ["get", "list", "watch"]
- apiGroups: ["apps"]
resources:
- "deployments"
- "replicasets"
verbs: ["get", "list", "watch"]
- apiGroups: ["apps.openshift.io"]
resources:
- "deploymentconfigs"
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources:
- "namespaces"
- "events"
- "services"
- "endpoints"
- "nodes"
- "pods"
- "replicationcontrollers"
- "componentstatuses"
- "resourcequotas"
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources:
- "endpoints"
verbs: ["create", "update", "patch"]
---
kind: ClusterRoleBinding
apiVersion: v1
metadata:
name: instana-agent-role-binding
namespace: instana-agent
subjects:
- kind: ServiceAccount
name: instana-admin
namespace: instana-agent
roleRef:
kind: ClusterRole
name: instana-agent-role
---
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: instana-agent
spec:
template:
metadata:
labels:
app: instana-agent
spec:
nodeSelector:
type: infra
serviceAccount: instana-admin
hostIPC: true
hostNetwork: true
hostPID: true
containers:
- name: instana-agent
image: instana/agent
imagePullPolicy: Always
env:
- name: INSTANA_AGENT_LEADER_ELECTOR_PORT
value: "42655"
- name: INSTANA_ZONE
value: MiniShift
- name: INSTANA_AGENT_ENDPOINT
value: saas-eu-west-1.instana.io
- name: INSTANA_AGENT_ENDPOINT_PORT
value: "443"
- name: INSTANA_AGENT_KEY
valueFrom:
secretKeyRef:
name: instana-agent-secret
key: key
- name: JAVA_OPTS
# Approximately 1/3 of container memory limits to allow for direct-buffer memory usage and JVM overhead
value: "-Xmx170M -XX:+ExitOnOutOfMemoryError"
- name: INSTANA_AGENT_POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
securityContext:
privileged: true
volumeMounts:
- name: dev
mountPath: /dev
- name: run
mountPath: /var/run
- name: sys
mountPath: /sys
- name: log
mountPath: /var/log
- name: machine-id
mountPath: /etc/machine-id
- name: configuration
subPath: configuration.yaml
mountPath: /root/configuration.yaml
livenessProbe:
httpGet:
path: /status
port: 42699
initialDelaySeconds: 75
periodSeconds: 5
resources:
requests:
memory: "512Mi"
cpu: "0.5"
limits:
memory: "512Mi"
cpu: "1.5"
- name: instana-agent-leader-elector
image: gcr.io/google-containers/leader-elector:0.5
env:
- name: INSTANA_AGENT_POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
args: ["--election=instana", "--http=0.0.0.0:42655", "--id=$(INSTANA_AGENT_POD_NAME)"]
resources:
requests:
cpu: "0.1"
memory: "64Mi"
livenessProbe:
httpGet:
path: /status
port: 42699
initialDelaySeconds: 75
periodSeconds: 5
volumes:
- name: dev
hostPath:
path: /dev
- name: run
hostPath:
path: /var/run
- name: sys
hostPath:
path: /sys
- name: log
hostPath:
path: /var/log
- name: machine-id
hostPath:
path: /etc/machine-id
- name: configuration
configMap:
name: instana-configuration