LinuxCommandLibrary

nomad

Distributed, highly available, datacenter-aware scheduler.

TLDR

Show the status of nodes in the cluster

$ nomad node status
copy


Validate a job file
$ nomad job validate [path/to/file.nomad]
copy


Plan a job for execution on the cluster
$ nomad job plan [path/to/file.nomad]
copy


Run a job on the cluster
$ nomad job run [path/to/file.nomad]
copy


Show the status of jobs currently running on the cluster
$ nomad job status
copy


Show the detailed status information about a specific job
$ nomad job status [job_name]
copy


Follow the logs of a specific allocation
$ nomad alloc logs [alloc_id]
copy


Show the status of storage volumes
$ nomad volume status
copy

Copied to clipboard