forked from logzio/logzio-k8s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logzio-daemonset.yaml
executable file
·59 lines (59 loc) · 1.46 KB
/
logzio-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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: fluentd-logzio
namespace: kube-system
labels:
k8s-app: fluentd-logzio
version: v1
spec:
selector:
matchLabels:
k8s-app: fluentd-logzio
template:
metadata:
labels:
k8s-app: fluentd-logzio
version: v1
spec:
tolerations:
- key: node-role.kubernetes.io/master
effect: NoSchedule
containers:
- name: fluentd
image: logzio/logzio-k8s:1.1.3
env:
- name: LOGZIO_LOG_SHIPPING_TOKEN
valueFrom:
secretKeyRef:
name: logzio-logs-secret
key: logzio-log-shipping-token
- name: LOGZIO_LOG_LISTENER
valueFrom:
secretKeyRef:
name: logzio-logs-secret
key: logzio-log-listener
- name: FLUENTD_SYSTEMD_CONF
value: "disable"
- name: FLUENTD_PROMETHEUS_CONF
value: "disable"
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