Go to file
Sean Chittenden 0420c29f3b Merge pull request #1298 from hashicorp/b-auto-join
Only auto-join clients if `client_auto_join` is true
2016-06-16 14:48:27 -07:00
api plan displays launch time of periodic jobs 2016-06-15 13:34:45 -07:00
client Only auto-join clients if `client_auto_join` is true 2016-06-16 14:47:21 -07:00
command Test for errors 2016-06-16 14:43:46 -07:00
demo Use Status.Peers instead of Status.Ping 2016-06-15 12:00:20 -07:00
dist Add reload command to systemd unit file 2016-05-28 17:12:57 -04:00
helper Moving the clkspeed code to helper 2016-06-11 17:31:49 +02:00
jobspec Rename ConsulService back to Service 2016-06-12 16:36:49 -07:00
nomad Test for errors 2016-06-16 14:43:46 -07:00
scheduler track failed allocations properly 2016-06-15 12:58:19 -07:00
scripts increase timeout 2016-06-15 15:42:44 -07:00
testutil
vendor vendor hcl 2016-06-13 18:15:41 -07:00
website Merge pull request #1296 from hashicorp/d-status-cli 2016-06-16 14:31:11 -07:00
.gitattributes
.gitignore
.travis.yml Revert "Hack the Travis build" 2016-06-05 13:35:12 +02:00
CHANGELOG.md Changelog++: server autojoin 2016-06-16 14:43:17 -07:00
GNUmakefile remove vet 2016-06-10 18:46:23 -07:00
ISSUE_TEMPLATE.md
LICENSE
README.md
Vagrantfile Bump the CPU count on the primary box to `hw.ncpu-1` on Darwin 2016-06-14 11:27:42 -07:00
commands.go removed the stats cli command 2016-06-06 16:10:34 -07:00
main.go Seed random once in main 2016-06-10 15:48:36 -04:00
main_test.go
version.go bump version 2016-06-13 21:48:52 -07:00

README.md

Nomad Build Status

Nomad

Nomad is a cluster manager, designed for both long lived services and short lived batch processing workloads. Developers use a declarative job specification to submit work, and Nomad ensures constraints are satisfied and resource utilization is optimized by efficient task packing. Nomad supports all major operating systems and virtualized, containerized, or standalone applications.

The key features of Nomad are:

  • Docker Support: Jobs can specify tasks which are Docker containers. Nomad will automatically run the containers on clients which have Docker installed, scale up and down based on the number of instances request, and automatically recover from failures.

  • Multi-Datacenter and Multi-Region Aware: Nomad is designed to be a global-scale scheduler. Multiple datacenters can be managed as part of a larger region, and jobs can be scheduled across datacenters if requested. Multiple regions join together and federate jobs making it easy to run jobs anywhere.

  • Operationally Simple: Nomad runs as a single binary that can be either a client or server, and is completely self contained. Nomad does not require any external services for storage or coordination. This means Nomad combines the features of a resource manager and scheduler in a single system.

  • Distributed and Highly-Available: Nomad servers cluster together and perform leader election and state replication to provide high availability in the face of failure. The Nomad scheduling engine is optimized for optimistic concurrency allowing all servers to make scheduling decisions to maximize throughput.

  • HashiCorp Ecosystem: Nomad integrates with the entire HashiCorp ecosystem of tools. Along with all HashiCorp tools, Nomad is designed in the unix philosophy of doing something specific and doing it well. Nomad integrates with tools like Packer, Consul, and Terraform to support building artifacts, service discovery, monitoring and capacity management.

For more information, see the introduction section of the Nomad website.

Getting Started & Documentation

All documentation is available on the Nomad website.

Developing Nomad

If you wish to work on Nomad itself or any of its built-in systems, you will first need Go installed on your machine (version 1.5+ is required).

Developing with Vagrant There is an included Vagrantfile that can help bootstrap the process. The created virtual machine is based off of Ubuntu 14, and installs several of the base libraries that can be used by Nomad.

To use this virtual machine, checkout Nomad and run vagrant up from the root of the repository:

$ git clone https://github.com/hashicorp/nomad.git
$ cd nomad
$ vagrant up

The virtual machine will launch, and a provisioning script will install the needed dependencies.

Developing locally For local dev first make sure Go is properly installed, including setting up a GOPATH. After setting up Go, clone this repository into $GOPATH/src/github.com/hashicorp/nomad. Then you can download the required build tools such as vet, cover, godep etc by bootstrapping your environment.

$ make bootstrap
...

Afterwards type make test. This will run the tests. If this exits with exit status 0, then everything is working!

$ make test
...

To compile a development version of Nomad, run make dev. This will put the Nomad binary in the bin and $GOPATH/bin folders:

$ make dev
...
$ bin/nomad
...

To cross-compile Nomad, run make bin. This will compile Nomad for multiple platforms and place the resulting binaries into the ./pkg directory:

$ make bin
...
$ ls ./pkg
...