Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between static pod and DaemonSet?

Tags:

kubernetes

Can the relationship between static pod and DaemonSet be analogue to the one between pod and RelicaSet?

like image 411
David Tong Avatar asked Oct 21 '25 10:10

David Tong


1 Answers

From the docs here

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.

Pod and Replicaset both can be managed by kubectl or other Kubernetes API clients and depend on the apiserver.

So there is no analogy between these.

like image 128
Arghya Sadhu Avatar answered Oct 24 '25 23:10

Arghya Sadhu