24 lines
414 B
YAML
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"
|