From 35b643410fdfc09573dd22b5801ff5434129b789 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Mon, 27 Apr 2020 11:17:19 +0100 Subject: [PATCH] nomad: add page (#4008) --- pages/common/nomad.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/nomad.md diff --git a/pages/common/nomad.md b/pages/common/nomad.md new file mode 100644 index 0000000000..20702b2fcc --- /dev/null +++ b/pages/common/nomad.md @@ -0,0 +1,36 @@ +# nomad + +> Distributed, highly available, datacenter-aware scheduler. +> More information: . + +- 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`