How to run pod as a global service in Kubernetes minion

4/16/2016

In coreos we can defined service as

[X-Fleet]
Global=true

This will make sure that this particular service will run in all the nodes.

How do i achieve same thing for a pod in Kubernetes?

-- sravis
coreos
kubernetes

1 Answer

4/16/2016

Probably you want to use Daemonset - a way to run a daemon on every node in a Kubernetes cluster.

-- Jan Garaj
Source: StackOverflow