• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.circleci/H17-May-2021-709642

.github/H17-May-2021-212173

acl/H17-May-2021-1,6791,359

api/H17-May-2021-18,88514,428

client/H17-May-2021-81,66762,021

command/H17-May-2021-75,50758,896

contributing/H17-May-2021-395311

demo/H17-May-2021-2,2911,807

dev/H17-May-2021-807519

devices/gpu/nvidia/H17-May-2021-6,1505,774

dist/H17-May-2021-10372

drivers/H17-May-2021-27,68621,571

e2e/H17-May-2021-24,35318,269

helper/H17-May-2021-15,74511,941

integrations/H17-May-2021-583569

internal/testing/apitests/H17-May-2021-835677

jobspec/H17-May-2021-7,0255,871

jobspec2/H17-May-2021-3,6102,853

lib/H17-May-2021-1,226961

nomad/H17-May-2021-320,521282,034

plugins/H17-May-2021-22,16017,385

scheduler/H17-May-2021-33,12325,557

scripts/H17-May-2021-1,185836

src/github.com/hashicorp/nomad/H03-May-2022-

terraform/H17-May-2021-3,1942,427

testutil/H17-May-2021-992727

tools/H17-May-2021-403321

ui/H03-May-2022-29,48525,929

vendor/H03-May-2022-1,901,4811,335,316

version/H17-May-2021-8459

website/H03-May-2022-86,54174,673

.gitattributesH A D17-May-2021175 43

.gitignoreH A D17-May-20211.6 KiB12495

.golangci.ymlH A D17-May-20212.6 KiB9480

CHANGELOG.mdH A D17-May-2021227 KiB2,5392,213

GNUmakefileH A D17-May-202112.6 KiB389314

LICENSEH A D17-May-202115.5 KiB364265

README.mdH A D17-May-20213.9 KiB5435

VagrantfileH A D17-May-20215.2 KiB200158

build_linux_arm.goH A D17-May-202169 61

go.modH A D17-May-20217.4 KiB148143

go.sumH A D17-May-2021100.7 KiB1,0261,025

main.goH A D17-May-20215 KiB225172

main_test.goH A D17-May-2021114 51

README.md

1Nomad [![Build Status](https://circleci.com/gh/hashicorp/nomad.svg?style=svg)](https://circleci.com/gh/hashicorp/nomad) [![Discuss](https://img.shields.io/badge/discuss-nomad-00BC7F?style=flat)](https://discuss.hashicorp.com/c/nomad)
2===
3
4<p align="center" style="text-align:center;">
5  <a href="https://nomadproject.io">
6    <img alt="HashiCorp Nomad logo" src="website/public/img/logo-hashicorp.svg" width="500" />
7  </a>
8</p>
9
10Nomad is a simple and flexible workload orchestrator to deploy and manage containers ([docker](https://www.nomadproject.io/docs/drivers/docker.html), [podman](https://www.nomadproject.io/docs/drivers/podman)), non-containerized applications ([executable](https://www.nomadproject.io/docs/drivers/exec.html), [Java](https://www.nomadproject.io/docs/drivers/java)), and virtual machines ([qemu](https://www.nomadproject.io/docs/drivers/qemu.html)) across on-prem and clouds at scale.
11
12Nomad is supported on Linux, Windows, and macOS. A commercial version of Nomad, [Nomad Enterprise](https://www.nomadproject.io/docs/enterprise), is also available.
13
14* Website: https://nomadproject.io
15* Tutorials: [HashiCorp Learn](https://learn.hashicorp.com/nomad)
16* Forum: [Discuss](https://discuss.hashicorp.com/c/nomad)
17* Mailing List: [Google Groups](https://groups.google.com/group/nomad-tool)
18* Gitter: [hashicorp-nomad](https://gitter.im/hashicorp-nomad/Lobby)
19
20Nomad provides several key features:
21
22* **Deploy Containers and Legacy Applications**: Nomad’s flexibility as an orchestrator enables an organization to run containers, legacy, and batch applications together on the same infrastructure.  Nomad brings core orchestration benefits to legacy applications without needing to containerize via pluggable task drivers.
23
24* **Simple & Reliable**:  Nomad runs as a single binary and is entirely self contained - combining resource management and scheduling into a single system.  Nomad does not require any external services for storage or coordination.  Nomad automatically handles application, node, and driver failures.  Nomad is distributed and resilient, using leader election and state replication to provide high availability in the event of failures.
25
26* **Device Plugins & GPU Support**: Nomad offers built-in support for GPU workloads such as machine learning (ML) and artificial intelligence (AI).  Nomad uses device plugins to automatically detect and utilize resources from hardware devices such as GPU, FPGAs, and TPUs.
27
28* **Federation for Multi-Region, Multi-Cloud**: Nomad was designed to support infrastructure at a global scale.  Nomad supports federation out-of-the-box and can deploy applications across multiple regions and clouds.
29
30* **Proven Scalability**: Nomad is optimistically concurrent, which increases throughput and reduces latency for workloads.  Nomad has been proven to scale to clusters of 10K+ nodes in real-world production environments.
31
32* **HashiCorp Ecosystem**: Nomad integrates seamlessly with Terraform, Consul, Vault for provisioning, service discovery, and secrets management.
33
34Quick Start
35---
36
37#### Testing
38See [Learn: Getting Started](https://learn.hashicorp.com/collections/nomad/get-started) for instructions on setting up a local Nomad cluster for non-production use.
39
40Optionally, find Terraform manifests for bringing up a development Nomad cluster on a public cloud in the [`terraform`](terraform/) directory.
41
42#### Production
43See [Learn: Nomad Reference Architecture](https://learn.hashicorp.com/tutorials/nomad/production-reference-architecture-vm-with-consul?in=nomad/production) for recommended practices and a reference architecture for production deployments.
44
45Documentation
46---
47Full, comprehensive documentation is available on the Nomad website: https://www.nomadproject.io/docs
48
49Guides are available on [HashiCorp Learn](https://learn.hashicorp.com/nomad).
50
51Contributing
52--------------------
53See the [`contributing`](contributing/) directory for more developer documentation.
54