What's the difference between Kubernetes and Flynn/Deis What's the difference between Kubernetes and Flynn/Deis docker docker

What's the difference between Kubernetes and Flynn/Deis


Kubernetes is really three things:

  • A way to dynamically schedule containers (actually, sets of containers called pods) to a cluster of machines.
  • Manage and horizontally scale a lot of those pods using labels and helpers (ReplicationController)
  • Communicate between sets of pods via services, expose a set of pods externally on a public IP and easily consume external services. This is necessary to deal with the horizontal scaling and the dynamic nature of how pods get placed/scheduled.

This is all very much a tool set for managing compute across a set of machines. It isn't a full application PaaS. Kubernetes doesn't have any idea what an "application" is. Generally PaaS systems provide an easy way to take code and get it deployed and managed as an application. In fact, I expect to see specialized PaaS systems built on top of Kubernetes -- that is what RedHat OpenShift is doing.

One way to think about Kubernetes is as a system for "logical" infrastructure (vs. traditional VM cloud systems which are