57 lines
1.6 KiB
YAML
57 lines
1.6 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"
|
|
addonmanager.kubernetes.io/mode: Reconcile
|
|
version: v1.22
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
k8s-app: fluentd-es
|
|
kubernetes.io/cluster-service: "true"
|
|
version: v1.22
|
|
# This annotation ensures that fluentd does not get evicted if the node
|
|
# supports critical pod annotation based priority scheme.
|
|
# Note that this does not guarantee admission on the nodes (#40573).
|
|
annotations:
|
|
scheduler.alpha.kubernetes.io/critical-pod: ''
|
|
spec:
|
|
serviceAccountName: efk
|
|
containers:
|
|
- name: fluentd-es
|
|
image: sz-pg-oam-docker-hub-001.tendcloud.com/library/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:
|
|
beta.kubernetes.io/fluentd-ds-ready: "true"
|
|
tolerations:
|
|
- key : "node.alpha.kubernetes.io/ismaster"
|
|
effect: "NoSchedule"
|
|
terminationGracePeriodSeconds: 30
|
|
volumes:
|
|
- name: varlog
|
|
hostPath:
|
|
path: /var/log
|
|
- name: varlibdockercontainers
|
|
hostPath:
|
|
path: /var/lib/docker/containers
|