0 votes
in Kubernetes K8s by

List out 2 use cases for Daemonsets and explain why it is more appropriate to use daemonset than deployment for those use case:

1 Answer

0 votes
by
1 Pod that collects logs Better to use daemonsets for this because you can logs to be fed from all pods (eg to kibana) Otherwise you have to make this part of EVERY deployment which would be annoying and repetitive

   2 Pod that runs monitoring (eg dynatrace or datadog) Reason is the same as above
...