Filebeat as DaemonSet in k8s cluser

Hi
So I'm using helm to deploy filebeat on k8s cluster.
I using bitami helm chart
daemonset:

Annotations to apply to the daemonset

annotations: {}

additionals labels

labels: {}
affinity: {}

Include the daemonset

enabled: true

Extra environment variables for Filebeat container.

envFrom:

- configMapRef:

name: config-secret

extraEnvs:

- name: MY_ENVIRONMENT_VAR

value: the_value_goes_here

extraVolumes:

# - name: extras
# emptyDir: {}
extraVolumeMounts:

# - name: extras
# mountPath: /usr/share/extras
# readOnly: true
hostNetworking: false

Allows you to add any config files in /usr/share/filebeat

such as filebeat.yml for daemonset

When I install it in the cluster there is only pods in the same namespaces and nodes
How I can deploy it in all nodes and namespaces ?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.