2019-09-29 09:05:37 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: DaemonSet
|
|
|
|
metadata:
|
|
|
|
name: fluentd-elasticsearch
|
|
|
|
namespace: kube-system
|
|
|
|
labels:
|
|
|
|
k8s-app: fluentd-logging
|
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
name: fluentd-elasticsearch
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
name: fluentd-elasticsearch
|
|
|
|
spec:
|
|
|
|
tolerations:
|
2020-03-31 00:24:40 +00:00
|
|
|
# this toleration is to have the daemonset runnable on master nodes
|
|
|
|
# remove it if your masters can't run pods
|
2019-09-29 09:05:37 +00:00
|
|
|
- key: node-role.kubernetes.io/master
|
|
|
|
effect: NoSchedule
|
|
|
|
containers:
|
|
|
|
- name: fluentd-elasticsearch
|
2019-10-17 03:58:39 +00:00
|
|
|
image: quay.io/fluentd_elasticsearch/fluentd:v2.5.2
|
2019-09-29 09:05:37 +00:00
|
|
|
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
|