43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
|
apiVersion: apps/v1
|
||
|
kind: DaemonSet
|
||
|
metadata:
|
||
|
name: fluentd-elasticsearch
|
||
|
namespace: kube-system
|
||
|
labels:
|
||
|
k8s-app: fluentd-logging
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
name: fluentd-elasticsearch
|
||
|
updateStrategy:
|
||
|
type: RollingUpdate
|
||
|
rollingUpdate:
|
||
|
maxUnavailable: 1
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
name: fluentd-elasticsearch
|
||
|
spec:
|
||
|
tolerations:
|
||
|
# this toleration is to have the daemonset runnable on master nodes
|
||
|
# remove it if your masters can't run pods
|
||
|
- key: node-role.kubernetes.io/master
|
||
|
effect: NoSchedule
|
||
|
containers:
|
||
|
- name: fluentd-elasticsearch
|
||
|
image: quay.io/fluentd_elasticsearch/fluentd:v2.5.2
|
||
|
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
|