Find a file
Michael Schurter 770ed703d0 Add Driver.Prestart method
The Driver.Prestart method currently does very little but lays the
foundation for where lifecycle plugins can interleave execution _after_
task environment setup but _before_ the task starts.

Currently Prestart does two things:

* Any driver specific task environment building
* Download Docker images

This change also attaches a TaskEvent emitter to Drivers, so they can
emit events during task initialization.
2016-12-02 11:03:48 -08:00
api Add Driver.Prestart method 2016-12-02 11:03:48 -08:00
client Add Driver.Prestart method 2016-12-02 11:03:48 -08:00
command Add Driver.Prestart method 2016-12-02 11:03:48 -08:00
demo Make container exist errors non-retriable 2016-11-25 19:22:58 -08:00
dist Separate agent configuration into its own pages 2016-11-02 18:30:00 -04:00
helper Add docs for generating example certificates 2016-11-15 17:22:54 -08:00
jobspec Improve parsing of job struct 2016-11-23 20:18:50 -05:00
nomad Add Driver.Prestart method 2016-12-02 11:03:48 -08:00
scheduler Add scheduler version enforcement 2016-10-26 14:52:48 -07:00
scripts Release v0.5.0-rc2 2016-11-10 19:08:15 +00:00
testutil Advertise a non-loopback ip in tests 2016-11-14 14:42:59 -08:00
vendor revert to previous circonusllhist 2016-11-09 19:33:12 -05:00
website Correct a grammar typo 2016-11-29 16:44:37 -05:00
.gitattributes Initial commit 2015-06-01 12:21:00 +02:00
.gitignore add intellij iml as an ignored file 2016-07-28 22:20:20 -05:00
.travis.yml Separate agent configuration into its own pages 2016-11-02 18:30:00 -04:00
CHANGELOG.md changelog 2016-12-01 11:16:55 -08:00
commands.go Enable serf encryption (#1791) 2016-10-17 10:48:04 -07:00
GNUmakefile Move to container-based build process 2016-10-21 20:35:18 -07:00
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE.md 2016-03-21 18:12:50 -07:00
LICENSE Initial commit 2015-06-01 12:21:00 +02:00
main.go Seed random once in main 2016-06-10 15:48:36 -04:00
main_test.go Adding initial skeleton 2015-06-01 13:46:21 +02:00
README.md golang 1.7+ is required now 2016-08-18 20:53:35 -05:00
Vagrantfile Release v0.5.0-rc2 2016-11-10 19:08:15 +00:00
version.go version bump 2016-11-21 09:42:02 -08:00

Nomad Build Status Join the chat at https://gitter.im/hashicorp-nomad/Lobby

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.7+ 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
...