This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
generated from JupiterOne-Archives/integration-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtilt.yml
302 lines (298 loc) · 9.33 KB
/
tilt.yml
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
apiVersion: v1
kind: List
items:
- apiVersion: v1
kind: ServiceAccount
metadata:
name: graph-kubernetes
- apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
annotations:
rbac.authorization.kubernetes.io/autoupdate: 'true'
labels:
name: graph-kubernetes
name: graph-kubernetes
namespace: default
rules:
- apiGroups: ['']
resources:
[
'pods',
'namespaces',
'serviceaccounts',
'configmaps',
'nodes',
'services',
'secrets',
]
verbs: ['list','watch']
- apiGroups: ['apps']
resources: ['deployments', 'replicasets', 'statefulsets', 'daemonsets']
verbs: ['list']
- apiGroups: ['authorization.k8s.io']
resources: ['selfsubjectaccessreviews']
verbs: ['create']
- apiGroups: ['batch']
resources: ['jobs', 'cronjobs']
verbs: ['list']
- apiGroups: ['networking.k8s.io']
resources: ['networkpolicies']
verbs: ['list']
- apiGroups: ['rbac.authorization.k8s.io']
resources:
['roles', 'clusterroles', 'rolebindings', 'clusterrolebindings']
verbs: ['list']
- apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
labels:
name: graph-kubernetes
name: graph-kubernetes
subjects:
- kind: ServiceAccount
name: graph-kubernetes
namespace: default
roleRef:
kind: ClusterRole
name: graph-kubernetes
apiGroup: rbac.authorization.k8s.io
- apiVersion: v1
kind: ConfigMap
metadata:
name: fluent-bit-agent-conf
labels:
app: fluent-bit
component: fluent-bit-agent-conf
data:
fluent-bit: |
[SERVICE]
Parsers_File ./parsers.conf
Grace 15
[INPUT]
Name tail
Path /var/log/containers/graph-kubernetes*.log
Exclude_Path /var/log/containers/*otel-collector*.log
Parser cri
Tag kube.*
Mem_Buf_Limit 5MB
[OUTPUT]
Name forward
Host 0.0.0.0
Port 8006
Match *
parsers: |
[PARSER]
Name jupiter_one
Format json
Time_Key time
Time_Format %Y-%m-%dT%H:%M:%S.%LZ
Time_Keep On
- apiVersion: v1
kind: ConfigMap
metadata:
name: otel-agent-conf
labels:
app: opentelemetry
component: otel-agent-conf
data:
otel-agent-config: |
receivers:
hostmetrics:
collection_interval: 10s
scrapers:
cpu:
load:
memory:
disk:
filesystem:
network:
paging:
processes:
otlp:
protocols:
grpc:
http:
fluentforward:
endpoint: 0.0.0.0:8006
processors:
batch:
memory_limiter:
limit_mib: 400
spike_limit_mib: 100
check_interval: 5s
exporters:
logging:
loglevel: debug
sampling_initial: 5
sampling_thereafter: 200
extensions:
memory_ballast:
size_mib: 165
service:
pipelines:
logs:
receivers: [fluentforward]
processors: [memory_limiter, batch]
exporters: [logging]
metrics:
receivers: [hostmetrics]
processors: [memory_limiter, batch]
exporters: [logging]
traces:
receivers: [otlp]
processors: [memory_limiter, batch]
exporters: [logging]
- apiVersion: batch/v1
kind: Job
metadata:
name: graph-kubernetes
spec:
template:
spec:
serviceAccountName: graph-kubernetes
backoffLimit: 4
initContainers:
- name: kubexit
image: cortexlabs/kubexit:0.40.0
command: ['cp']
args: ['/bin/kubexit', '/kubexit/kubexit']
volumeMounts:
- mountPath: /kubexit
name: kubexit
containers:
- name: graph-kubernetes
image: graph-kubernetes
imagePullPolicy: IfNotPresent
command: ['/kubexit/kubexit', 'yarn']
args: ['execute']
env:
- name: KUBEXIT_NAME
value: graph-kubernetes
- name: KUBEXIT_GRAVEYARD
value: /graveyard
- name: KUBEXIT_BIRTH_DEPS
value: fluent-bit,otel-collector
- name: KUBEXIT_POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: KUBEXIT_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: JUPITERONE_DEV
value: 'true'
- name: ACCESS_TYPE
value: 'cluster'
- name: NAMESPACE
value: 'default'
- name: LOAD_KUBERNETES_CONFIG_FROM_DEFAULT
value: 'false'
- name: JUPITERONE_ACCOUNT_ID
valueFrom:
secretKeyRef:
name: graph-kubernetes
key: jupiteroneAccountId
- name: JUPITERONE_API_KEY
valueFrom:
secretKeyRef:
name: graph-kubernetes
key: jupiteroneApiKey
- name: INTEGRATION_INSTANCE_ID
valueFrom:
secretKeyRef:
name: graph-kubernetes
key: jupiteroneIntegrationInstanceId
volumeMounts:
- mountPath: /graveyard
name: graveyard
- mountPath: /kubexit
name: kubexit
- name: otel-collector
image: otel/opentelemetry-collector-contrib:0.33.0
imagePullPolicy: IfNotPresent
command: ['/kubexit/kubexit', '/otelcontribcol']
args: ['--config=/conf/otel-agent-config.yaml']
env:
- name: KUBEXIT_NAME
value: otel-collector
- name: KUBEXIT_GRAVEYARD
value: /graveyard
- name: KUBEXIT_DEATH_DEPS
value: fluent-bit
- name: KUBEXIT_BIRTH_DEPS
value: fluent-bit
- name: KUBEXIT_POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: KUBEXIT_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
volumeMounts:
- name: otel-agent-config-vol
mountPath: /conf
- mountPath: /graveyard
name: graveyard
- mountPath: /kubexit
name: kubexit
- name: fluent-bit
image: fluent/fluent-bit:2.2
imagePullPolicy: IfNotPresent
command: ['/kubexit/kubexit', '/fluent-bit/bin/fluent-bit']
args: ['--config=/fluent-bit/etc/fluent-bit.conf']
env:
- name: KUBEXIT_NAME
value: fluent-bit
- name: KUBEXIT_GRAVEYARD
value: /graveyard
- name: KUBEXIT_DEATH_DEPS
value: graph-kubernetes
volumeMounts:
- name: log-storage
mountPath: /mnt/log/
readOnly: true
- name: fluent-bit-agent-config-vol
mountPath: /fluent-bit/etc/
- mountPath: /graveyard
name: graveyard
- mountPath: /kubexit
name: kubexit
- name: varlog
mountPath: /var/log
readOnly: true
- name: varlibdockercontainers
mountPath: /var/lib/docker/containers
readOnly: true
restartPolicy: Never
terminationGracePeriodSeconds: 10
volumes:
- name: fluent-bit-agent-config-vol
configMap:
name: fluent-bit-agent-conf
items:
- key: fluent-bit
path: fluent-bit.conf
- key: parsers
path: parsers.conf
- name: otel-agent-config-vol
configMap:
name: otel-agent-conf
items:
- key: otel-agent-config
path: otel-agent-config.yaml
- name: graveyard
emptyDir:
medium: Memory
- name: kubexit
emptyDir: {}
- name: log-storage
emptyDir: {}
- name: varlog
hostPath:
path: /var/log
- name: varlibdockercontainers
hostPath:
path: /var/lib/docker/containers