There are three Nodes in a cluster, and want to run exactly one replica of a Pod on each Node. Pre-fer to automatically create a replica on any new Nodes when they are added. Which Kubernetes re-source should you use?
DaemonSet
ReplicaSet
NodeSet
StatefulSet
Deployment
https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/
A DaemonSet runs replicas on all (or just some) Nodes in the cluster.
Table Description automatically generated with medium confidence
What standard does kubelet use to communicate with the container runtime?
Service Mesh Interface (SMI)
CRI-O
ContainerD
Container Runtime Interface (CRI)
kubelet can communicate with any runtime that supports the CRI standard.