2016-02-24 21:47:57 +00:00
---
2016-07-29 17:36:25 +00:00
assignees:
- erictune
2016-12-15 20:16:54 +00:00
title: Daemon Sets
2016-02-24 21:47:57 +00:00
---
2016-02-26 11:54:48 +00:00
* TOC
{:toc}
2016-12-16 23:51:48 +00:00
## What is a DaemonSet?
2016-02-26 11:54:48 +00:00
2016-12-16 23:51:48 +00:00
A _DaemonSet_ ensures that all (or some) nodes run a copy of a pod. As nodes are added to the
2016-02-26 11:54:48 +00:00
cluster, pods are added to them. As nodes are removed from the cluster, those pods are garbage
2016-12-16 23:51:48 +00:00
collected. Deleting a DaemonSet will clean up the pods it created.
2016-02-26 11:54:48 +00:00
2016-12-16 23:51:48 +00:00
Some typical uses of a DaemonSet are:
2016-02-26 11:54:48 +00:00
- running a cluster storage daemon, such as `glusterd` , `ceph` , on each node.
- running a logs collection daemon on every node, such as `fluentd` or `logstash` .
- running a node monitoring daemon on every node, such as [Prometheus Node Exporter](
https://github.com/prometheus/node_exporter), `collectd` , New Relic agent, or Ganglia `gmond` .
2016-12-16 23:51:48 +00:00
In a simple case, one DaemonSet, covering all nodes, would be used for each type of daemon.
2016-02-26 11:54:48 +00:00
A more complex setup might use multiple DaemonSets would be used for a single type of daemon,
but with different flags and/or different memory and cpu requests for different hardware types.
## Writing a DaemonSet Spec
### Required Fields
As with all other Kubernetes config, a DaemonSet needs `apiVersion` , `kind` , and `metadata` fields. For
2016-03-06 12:26:30 +00:00
general information about working with config files, see [deploying applications ](/docs/user-guide/deploying-applications/ ),
[configuring containers ](/docs/user-guide/configuring-containers/ ), and [working with resources ](/docs/user-guide/working-with-resources/ ) documents.
2016-02-26 11:54:48 +00:00
2016-03-03 23:11:05 +00:00
A DaemonSet also needs a [`.spec` ](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/docs/devel/api-conventions.md#spec-and-status ) section.
2016-02-26 11:54:48 +00:00
### Pod Template
The `.spec.template` is the only required field of the `.spec` .
2016-02-29 23:17:22 +00:00
The `.spec.template` is a [pod template ](/docs/user-guide/replication-controller/#pod-template ).
It has exactly the same schema as a [pod ](/docs/user-guide/pods ), except
2016-02-26 11:54:48 +00:00
it is nested and does not have an `apiVersion` or `kind` .
In addition to required fields for a pod, a pod template in a DaemonSet has to specify appropriate
labels (see [pod selector ](#pod-selector )).
2016-02-29 23:17:22 +00:00
A pod template in a DaemonSet must have a [`RestartPolicy` ](/docs/user-guide/pod-states )
2016-02-26 11:54:48 +00:00
equal to `Always` , or be unspecified, which defaults to `Always` .
### Pod Selector
The `.spec.selector` field is a pod selector. It works the same as the `.spec.selector` of
2017-03-16 18:31:57 +00:00
a [Job ](/docs/concepts/jobs/run-to-completion-finite-workloads/ ) or other new resources.
2016-02-26 11:54:48 +00:00
2016-03-06 12:26:30 +00:00
The `spec.selector` is an object consisting of two fields:
* `matchLabels` - works the same as the `.spec.selector` of a [ReplicationController ](/docs/user-guide/replication-controller/ )
* `matchExpressions` - allows to build more sophisticated selectors by specifying key,
list of values and an operator that relates the key and values.
When the two are specified the result is ANDed.
If the `.spec.selector` is specified, it must match the `.spec.template.metadata.labels` . If not
specified, they are defaulted to be equal. Config with these not matching will be rejected by the API.
2016-02-26 11:54:48 +00:00
Also you should not normally create any pods whose labels match this selector, either directly, via
another DaemonSet, or via other controller such as ReplicationController. Otherwise, the DaemonSet
controller will think that those pods were created by it. Kubernetes will not stop you from doing
2016-03-18 01:16:54 +00:00
this. One case where you might want to do this is manually create a pod with a different value on
2016-02-26 11:54:48 +00:00
a node for testing.
### Running Pods on Only Some Nodes
If you specify a `.spec.template.spec.nodeSelector` , then the DaemonSet controller will
create pods on nodes which match that [node
2016-12-16 23:51:48 +00:00
selector](/docs/user-guide/node-selection/).
2016-07-20 13:09:57 +00:00
If you specify a `scheduler.alpha.kubernetes.io/affinity` annotation in `.spec.template.metadata.annotations` ,
then DaemonSet controller will create pods on nodes which match that [node affinity ](../../user-guide/node-selection/#alpha-feature-in-kubernetes-v12-node-affinity ).
2016-02-26 11:54:48 +00:00
2016-07-20 13:09:57 +00:00
If you do not specify a `.spec.template.spec.nodeSelector` nor `node affinity` , then the DaemonSet controller will
2016-02-26 11:54:48 +00:00
create pods on all nodes.
## How Daemon Pods are Scheduled
Normally, the machine that a pod runs on is selected by the Kubernetes scheduler. However, pods
created by the Daemon controller have the machine already selected (`.spec.nodeName` is specified
when the pod is created, so it is ignored by the scheduler). Therefore:
2016-02-29 23:17:22 +00:00
- the [`unschedulable` ](/docs/admin/node/#manual-node-administration ) field of a node is not respected
2016-12-16 23:51:48 +00:00
by the DaemonSet controller.
- DaemonSet controller can make pods even when the scheduler has not been started, which can help cluster
2016-02-26 11:54:48 +00:00
bootstrap.
## Communicating with DaemonSet Pods
Some possible patterns for communicating with pods in a DaemonSet are:
2016-12-16 23:51:48 +00:00
- **Push**: Pods in the DaemonSet are configured to send updates to another service, such
2016-02-26 11:54:48 +00:00
as a stats database. They do not have clients.
2016-12-16 23:51:48 +00:00
- **NodeIP and Known Port**: Pods in the DaemonSet use a `hostPort` , so that the pods are reachable via the node IPs. Clients know the list of nodes ips somehow, and know the port by convention.
2016-02-29 23:17:22 +00:00
- **DNS**: Create a [headless service ](/docs/user-guide/services/#headless-services ) with the same pod selector,
2016-02-26 11:54:48 +00:00
and then discover DaemonSets using the `endpoints` resource or retrieve multiple A records from
DNS.
- **Service**: Create a service with the same pod selector, and use the service to reach a
daemon on a random node. (No way to reach specific node.)
## Updating a DaemonSet
If node labels are changed, the DaemonSet will promptly add pods to newly matching nodes and delete
pods from newly not-matching nodes.
You can modify the pods that a DaemonSet creates. However, pods do not allow all
2016-03-06 12:26:30 +00:00
fields to be updated. Also, the DaemonSet controller will use the original template the next
2016-02-26 11:54:48 +00:00
time a node (even with the same name) is created.
2016-03-06 12:26:30 +00:00
You can delete a DaemonSet. If you specify `--cascade=false` with `kubectl` , then the pods
2016-02-26 11:54:48 +00:00
will be left on the nodes. You can then create a new DaemonSet with a different template.
the new DaemonSet with the different template will recognize all the existing pods as having
matching labels. It will not modify or delete them despite a mismatch in the pod template.
You will need to force new pod creation by deleting the pod or deleting the node.
You cannot update a DaemonSet.
Support for updating DaemonSets and controlled updating of nodes is planned.
2016-12-16 23:51:48 +00:00
## Alternatives to DaemonSet
2016-02-26 11:54:48 +00:00
### Init Scripts
2016-12-23 05:44:14 +00:00
It is certainly possible to run daemon processes by directly starting them on a node (e.g. using
2016-02-26 11:54:48 +00:00
`init` , `upstartd` , or `systemd` ). This is perfectly fine. However, there are several advantages to
running such processes via a DaemonSet:
- Ability to monitor and manage logs for daemons in the same way as applications.
- Same config language and tools (e.g. pod templates, `kubectl` ) for daemons and applications.
- Future versions of Kubernetes will likely support integration between DaemonSet-created
pods and node upgrade workflows.
- Running daemons in containers with resource limits increases isolation between daemons from app
containers. However, this can also be accomplished by running the daemons in a container but not in a pod
(e.g. start directly via Docker).
### Bare Pods
It is possible to create pods directly which specify a particular node to run on. However,
2016-12-16 23:51:48 +00:00
a DaemonSet replaces pods that are deleted or terminated for any reason, such as in the case of
2016-02-26 11:54:48 +00:00
node failure or disruptive node maintenance, such as a kernel upgrade. For this reason, you should
2016-12-16 23:51:48 +00:00
use a DaemonSet rather than creating individual pods.
2016-02-26 11:54:48 +00:00
2016-03-06 12:26:30 +00:00
### Static Pods
It is possible to create pods by writing a file to a certain directory watched by Kubelet. These
are called [static pods ](/docs/admin/static-pods/ ).
Unlike DaemonSet, static pods cannot be managed with kubectl
or other Kubernetes API clients. Static pods do not depend on the apiserver, making them useful
in cluster bootstrapping cases. Also, static pods may be deprecated in the future.
2016-02-26 11:54:48 +00:00
### Replication Controller
2016-12-16 23:51:48 +00:00
DaemonSet are similar to [Replication Controllers ](/docs/user-guide/replication-controller ) in that
2016-02-26 11:54:48 +00:00
they both create pods, and those pods have processes which are not expected to terminate (e.g. web servers,
storage servers).
Use a replication controller for stateless services, like frontends, where scaling up and down the
number of replicas and rolling out updates are more important than controlling exactly which host
the pod runs on. Use a Daemon Controller when it is important that a copy of a pod always run on
all or certain hosts, and when it needs to start before other pods.