1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 12:45:59 +02:00

nomad: add page (#4008)

This commit is contained in:
Starbeamrainbowlabs 2020-04-27 11:17:19 +01:00 committed by GitHub
parent 9b0c1b48ff
commit 35b643410f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

36
pages/common/nomad.md Normal file
View file

@ -0,0 +1,36 @@
# nomad
> Distributed, highly available, datacenter-aware scheduler.
> More information: <https://www.nomadproject.io/docs/commands/>.
- Show the status of nodes in the cluster:
`nomad node status`
- Validate a job file:
`nomad job validate {{path/to/file.nomad}}`
- Plan a job for execution on the cluster:
`nomad job plan {{path/to/file.nomad}}`
- Run a job on the cluster:
`nomad job run {{path/to/file.nomad}}`
- Show the status of jobs currently running on the cluster:
`nomad job status`
- Show the detailed status information about a specific job:
`nomad job status {{job_name}}`
- Follow the logs of a specific allocation:
`nomad alloc logs {{alloc_id}}`
- Show the status of storage volumes:
`nomad volume status`