open-nomad/dist
Miroslav Genov 9ac58b31e3 nomad/examples: update systemd config files
The existing nomad.service is having minor configuration and this change
adds the following:
 * Install section that allows nomad to be able enabled in systemd
 * Default limit of open files is set to 65536
2016-03-30 10:26:26 +03:00
..
systemd nomad/examples: update systemd config files 2016-03-30 10:26:26 +03:00
upstart Change /usr/local/bin to /usr/bin 2015-12-03 09:27:03 -08:00
README.md Change /usr/local/bin to /usr/bin 2015-12-03 09:27:03 -08:00
client.hcl Change .conf extension to .hcl 2015-12-03 00:19:36 -08:00
server.hcl Change .conf extension to .hcl 2015-12-03 00:19:36 -08:00

README.md

Dist

The dist folder contains sample configs for various platforms.

Conventions

On unixes we will place agent configs under /etc/nomad and store data under /var/lib/nomad/. You will need to create both of these directories. We assume that nomad is installed to /usr/bin/nomad.

Agent Configs

The following example configuration files are provided:

  • server.hcl
  • client.hcl

Place one of these under /etc/nomad depending on the node's role. You should use server.hcl to configure a node as a server (which is responsible for scheduling) or client.hcl to configure a node as a client (which is responsible for running workloads).

Read https://nomadproject.io/docs/agent/config.html to learn which options are available and how to configure them.

Upstart

On systems using upstart the basic upstart file under upstart/nomad.conf starts and stops the nomad agent. Place it under /etc/init/nomad.conf.

You can control Nomad with start|stop|restart nomad.

Systemd

On systems using systemd the basic systemd unit file under systemd/nomad.service starts and stops the nomad agent. Place it under /etc/systemd/system/nomad.service.

You can control Nomad with systemctl start|stop|restart nomad.