-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathfluent-bit-daemonset.yaml
67 lines (67 loc) · 1.84 KB
/
fluent-bit-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
60
61
62
63
64
65
66
67
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: fluent-bit
namespace: kube-system
labels:
k8s-app: fluent-bit-logging
version: v1
kubernetes.io/cluster-service: "true"
spec:
template:
metadata:
labels:
k8s-app: fluent-bit-logging
version: v1
kubernetes.io/cluster-service: "true"
spec:
containers:
- name: fluent-bit
image: kubeup/fluent-bit-aliyun:v0.1.0
imagePullPolicy: Always
env:
- name: ALIYUN_ACCESS_KEY
valueFrom:
secretKeyRef:
name: fluent-bit-config
key: ALIYUN_ACCESS_KEY
- name: ALIYUN_ACCESS_KEY_SECRET
valueFrom:
secretKeyRef:
name: fluent-bit-config
key: ALIYUN_ACCESS_KEY_SECRET
- name: ALIYUN_SLS_PROJECT
valueFrom:
secretKeyRef:
name: fluent-bit-config
key: ALIYUN_SLS_PROJECT
- name: ALIYUN_SLS_LOGSTORE
valueFrom:
secretKeyRef:
name: fluent-bit-config
key: ALIYUN_SLS_LOGSTORE
- name: ALIYUN_SLS_ENDPOINT
valueFrom:
secretKeyRef:
name: fluent-bit-config
key: ALIYUN_SLS_ENDPOINT
resources:
limits:
memory: 100Mi
requests:
cpu: 100m
memory: 100Mi
volumeMounts:
- name: varlog
mountPath: /var/log
- name: varlibdockercontainers
mountPath: /var/lib/docker/containers
readOnly: true
terminationGracePeriodSeconds: 10
volumes:
- name: varlog
hostPath:
path: /var/log
- name: varlibdockercontainers
hostPath:
path: /var/lib/docker/containers