apiVersion: apps/v1 kind: DaemonSet metadata: name: fluent-bit namespace: test-fluentbit labels: k8s-app: fluent-bit-logging spec: selector: matchLabels: app: fluent-bit template: metadata: labels: app: fluent-bit spec: containers: - name: fluent-bit image: fluent/fluent-bit:1.8.9 ports: - containerPort: 2020 name: api protocol: TCP volumeMounts: - name: varlog mountPath: /var/log - name: config mountPath: /fluent-bit/etc/ terminationGracePeriodSeconds: 10 volumes: - name: varlog hostPath: path: /var/log - name: config configMap: name: fluent-bit-config