David Tong
David Tong

Reputation: 363

What is the difference between static pod and DaemonSet?

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

Upvotes: 4

Views: 1219

Answers (1)

Arghya Sadhu
Arghya Sadhu

Reputation: 44559

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.

Upvotes: 6

Related Questions