Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between Kubernetes and Flynn/Deis

I have read some introduction of these projects, but still cannot get a clear idea of the difference between Kubernetes and Flynn/Deis. Can anyone help?

like image 291
ming.kernel Avatar asked Dec 02 '14 06:12

ming.kernel


People also ask

How is Kubernetes different than Docker?

A major difference between Docker and Kubernetes is that Docker runs on a single node, whereas Kubernetes is designed to run across a cluster. Another difference between Kubernetes and Docker is that Docker can be used without Kubernetes, whereas Kubernetes needs a container runtime in order to orchestrate.

Which is better Kubernetes or Docker Swarm?

Docker Swarm provides high availability as you can easily duplicate the microservices in Docker Swarm. Moreover, Docker Swarm has a faster deployment time. On the other hand, it doesn't provide automatic scaling. Kubernetes is by nature highly available, fault tolerant, and self-healing.

Is Kubernetes and K8s the same?

Kubernetes, also known as K8s, is an open-source system for automating deployment, scaling, and management of containerized applications. It groups containers that make up an application into logical units for easy management and discovery.

Is Kubernetes based on Borg?

Kubernetes traces its lineage directly from Borg. Many of the developers at Google working on Kubernetes were formerly developers on the Borg project.


1 Answers

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

like image 65
Joe Beda Avatar answered Oct 23 '22 11:10

Joe Beda