Reputation: 363
Can the relationship between static pod and DaemonSet be analogue to the one between pod and RelicaSet?
Upvotes: 4
Views: 1219
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