2015-09-20 02:45:44 +00:00
|
|
|
---
|
|
|
|
layout: "intro"
|
|
|
|
page_title: "Nomad vs. Kubernetes"
|
|
|
|
sidebar_current: "vs-other-kubernetes"
|
|
|
|
description: |-
|
|
|
|
Comparison between Nomad and Kubernetes
|
|
|
|
---
|
|
|
|
|
|
|
|
# Nomad vs. Kubernetes
|
|
|
|
|
|
|
|
Kubernetes is an orchestration system for Docker developed by the Cloud Native
|
|
|
|
Computing Foundation (CNCF). Kubernetes aims to provide all the features
|
|
|
|
needed to run Docker based applications including cluster management,
|
|
|
|
scheduling, service discovery, monitoring, secrets management and more.
|
|
|
|
|
|
|
|
Nomad only aims to provide cluster management and scheduling and is designed
|
2016-01-14 03:10:08 +00:00
|
|
|
with the Unix philosophy of having a small scope while composing with tools like [Consul](https://www.consul.io)
|
2015-09-20 02:45:44 +00:00
|
|
|
for service discovery and [Vault](https://www.vaultproject.io) for secret management.
|
|
|
|
|
|
|
|
While Kubernetes is specifically focused on Docker, Nomad is more general purpose.
|
|
|
|
Nomad supports virtualized, containerized and standalone applications, including Docker.
|
|
|
|
Nomad is designed with extensible drivers and support will be extended to all
|
|
|
|
common drivers.
|
|
|
|
|
|
|
|
Kubernetes is designed as a collection of more than a half-dozen interoperating
|
|
|
|
services which together provide the full functionality. Coordination and
|
|
|
|
storage is provided by etcd at the core. The state is wrapped by API controllers
|
2015-09-25 00:05:42 +00:00
|
|
|
which are consumed by other services that provide higher level APIs for features
|
|
|
|
like scheduling. Kubernetes supports running in a highly available
|
2015-10-03 22:50:23 +00:00
|
|
|
configuration but is operationally complex to setup.
|
2015-09-20 02:45:44 +00:00
|
|
|
|
|
|
|
Nomad is architecturally much simpler. Nomad is a single binary, both for clients
|
|
|
|
and servers, and requires no external services for coordination or storage.
|
2015-10-10 06:16:39 +00:00
|
|
|
Nomad combines a lightweight resource manager and a sophisticated scheduler
|
2015-09-20 02:45:44 +00:00
|
|
|
into a single system. By default, Nomad is distributed, highly available,
|
|
|
|
and operationally simple.
|
|
|
|
|
2016-01-22 06:06:12 +00:00
|
|
|
Kubernetes documentation states they can support clusters greater than 1,000 nodes
|
|
|
|
and they support a multi-AZ/multi-region configuration. Nomad has been tested
|
|
|
|
on clusters up to 5,000 nodes, but is expected to work on much larger clusters as
|
|
|
|
well. Nomad also supports multi-datacenter and multi-region configurations.
|