Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Latest commit

 

History

History
18 lines (10 loc) · 806 Bytes

10_2_daemonset.md

File metadata and controls

18 lines (10 loc) · 806 Bytes

Lab 10.2: DaemonSet

A DaemonSet is almost identical to a normal deployment, but makes sure that on every (or some specified) Node exactly one pod is running. When a new node is added, the daemonset automatically deploys a pod on the new node. When the daemonset is deleted, all related pods are deleted.

One excellent case to use a daemonset is a daemon to grab Logs from Nodes (e.g. fluentd, logstash or a Splunk-Forwarder)

More information about daemonsets can be found in the Kubernetes DaemonSet Documentation.


End Lab 10.2

Jobs →

← back to Chapter-Overview "Additional Concepts"

← back to Overview