-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdaemonset.yaml
41 lines (41 loc) · 939 Bytes
/
daemonset.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
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: sniffer.north-pacific
namespace: kube-system
labels:
k8s-app: sniffer
spec:
selector:
matchLabels:
name: sniffer
template:
metadata:
labels:
name: sniffer
spec:
hostNetwork: true
tolerations:
containers:
- name: tcpdump
image: docker.io/cybra/sniffer.north-pacific:0-alpha0
resources:
limits:
memory: 200Mi
requests:
cpu: 100m
memory: 200Mi
volumeMounts:
- name: varlog
mountPath: /var/log
- name: varlibdockercontainers
mountPath: /var/lib/docker/containers
readOnly: true
terminationGracePeriodSeconds: 30
volumes:
- name: varlog
hostPath:
path: /var/log
- name: varlibdockercontainers
hostPath:
path: /var/lib/docker/containers