devops/kubernetes/1/fluentd-daemonset.yaml
2025-10-12 17:08:20 +03:00

24 lines
414 B
YAML

apiVersion: apps/v1
kind: DaemonSet
metadata:
name: fluentd
labels:
app: fluentd
spec:
selector:
matchLabels:
app: fluentd
template:
metadata:
labels:
app: fluentd
spec:
containers:
- name: fluentd
image: docker.io/fluent/fluentd:latest
resources:
limits:
memory: "200Mi"
requests:
memory: "100Mi"