8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
apiVersion: extensions/v1beta1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: fluentd-es-v1.22
|
|
namespace: kube-system
|
|
labels:
|
|
k8s-app: fluentd-es
|
|
kubernetes.io/cluster-service: "true"
|
|
version: v1.22
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
k8s-app: fluentd-es
|
|
kubernetes.io/cluster-service: "true"
|
|
version: v1.22
|
|
spec:
|
|
containers:
|
|
- name: fluentd-es
|
|
image: gcr.io/google_containers/fluentd-elasticsearch:1.22
|
|
command:
|
|
- '/bin/sh'
|
|
- '-c'
|
|
- '/usr/sbin/td-agent 2>&1 >> /var/log/fluentd.log'
|
|
resources:
|
|
limits:
|
|
memory: 200Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 200Mi
|
|
volumeMounts:
|
|
- name: varlog
|
|
mountPath: /var/log
|
|
- name: varlibdockercontainers
|
|
mountPath: /var/lib/docker/containers
|
|
readOnly: true
|
|
nodeSelector:
|
|
alpha.kubernetes.io/fluentd-ds-ready: "true"
|
|
terminationGracePeriodSeconds: 30
|
|
volumes:
|
|
- name: varlog
|
|
hostPath:
|
|
path: /var/log
|
|
- name: varlibdockercontainers
|
|
hostPath:
|
|
path: /var/lib/docker/containers
|