github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/website/pages/intro/vs/kubernetes.mdx (about) 1 --- 2 layout: intro 3 page_title: Nomad vs. Kubernetes 4 sidebar_title: Kubernetes 5 description: Comparison between Nomad and Kubernetes 6 --- 7 8 # Nomad vs. Kubernetes 9 10 Kubernetes is an orchestration system for containers originally designed by Google, now governed by the Cloud Native 11 Computing Foundation (CNCF) and developed by Google, Red Hat, CoreOS and many others. Kubernetes aims to provide all the features needed to run Docker or Rkt-based applications including cluster management, 12 scheduling, service discovery, monitoring, secrets management and more. 13 14 Nomad only aims to provide cluster management and scheduling and is designed 15 with the Unix philosophy of having a small scope while composing with tools like [Consul](https://www.consul.io) 16 for service discovery and [Vault](https://www.vaultproject.io) for secret management. 17 18 While Kubernetes is specifically focused on Docker, Nomad is more general purpose. 19 Nomad supports virtualized, containerized and standalone applications, including Docker. 20 Nomad is designed with extensible drivers and support will be extended to all 21 common drivers. 22 23 Kubernetes is designed as a collection of more than a half-dozen interoperating 24 services which together provide the full functionality. Coordination and 25 storage is provided by etcd at the core. The state is wrapped by API controllers 26 which are consumed by other services that provide higher level APIs for features 27 like scheduling. Kubernetes supports running in a highly available 28 configuration but is operationally complex to setup. 29 30 Nomad is architecturally much simpler. Nomad is a single binary, both for clients 31 and servers, and requires no external services for coordination or storage. 32 Nomad combines a lightweight resource manager and a sophisticated scheduler 33 into a single system. By default, Nomad is distributed, highly available, 34 and operationally simple. 35 36 Kubernetes documentation states they can support clusters greater than 5,000 nodes 37 and they support a multi-AZ/multi-region configuration. Nomad has been proven to scale 38 to cluster sizes that exceed 10,000 nodes in real-world production environments. Nomad 39 also natively supports multi-datacenter and multi-region configurations.