top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Docker: Which one is better choice either Docker Swarm or Kubernetes as an service orchestrator ?

+1 vote
404 views
Docker: Which one is better choice either Docker Swarm or Kubernetes as an service orchestrator ?
posted Jul 23, 2017 by Ganesh

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

Kubernetes is good choice over Docker swarm for service orchestration since it manages docker containers in POD form. POD is nothing but a collection of logically connected Docker containers. In prod environment, Kubernetes are being used more.
In case of Docker swarm when desired state does not match with actual then it spin up desired no of instances to fulfill the condition while in case of Kubernetes it happens at the POD level.

answer Sep 3, 2017 by Harshita
I am in favour of kubernetes too.
...