Kubernetes DaemonSet
Contents
What is the DaemonSet?
DaemonSet
The
That means, when you add a Node in the cluster or delete one of them,
DaemonSet
is working for managing POD
s that you need to deploy or delete all Nodes in the cluster.That means, when you add a Node in the cluster or delete one of them,
DeaemonSet
is deploying or deleting POD
to the Node.How to work DaemonSet in Kubernetes
Behavior till v1.12
The Kubernetes uses
nodeName
property.From v1.12
The Kubernetes uses default scheduler and
NodeAffinity
property.DaemonSet YAML
ds-definition.ylm
|
|
Easy way to make a YAML
|
|
After then, you can change the file like above.
Create a DaemonSet
|
|
DaemonSet List
|
|
DaemonSet Detail
|
|
Check How many PODs deploy to the cluster
|
|