mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 19:05:42 +03:00
* Move commands from docs to its own root-level directory * temporarily use modified dev-portal branch with nomad ia changes * explicitly clone nomad ia exp branch * retrigger build, fixed dev-portal broken build * architecture, concepts and get started individual pages * fix get started section destinations * reference section * update repo comment in website-build.sh to show branch * docs nav file update capitalization * update capitalization to force deploy * remove nomad-vs-kubernetes dir; move content to what is nomad pg * job section * Nomad operations category, deploy section * operations category, govern section * operations - manage * operations/scale; concepts scheduling fix * networking * monitor * secure section * remote auth-methods folder and move up pages to sso; linkcheck * Fix install2deploy redirects * fix architecture redirects * Job section: Add missing section index pages * Add section index pages so breadcrumbs build correctly * concepts/index fix front matter indentation * move task driver plugin config to new deploy section * Finish adding full URL to tutorials links in nav * change SSO to Authentication in nav and file system * Docs NomadIA: Move tutorials into NomadIA branch (#26132) * Move governance and policy from tutorials to docs * Move tutorials content to job-declare section * run jobs section * stateful workloads * advanced job scheduling * deploy section * manage section * monitor section * secure/acl and secure/authorization * fix example that contains an unseal key in real format * remove images from sso-vault * secure/traffic * secure/workload-identities * vault-acl change unseal key and root token in command output sample * remove lines from sample output * fix front matter * move nomad pack tutorials to tools * search/replace /nomad/tutorials links * update acl overview with content from deleted architecture/acl * fix spelling mistake * linkcheck - fix broken links * fix link to Nomad variables tutorial * fix link to Prometheus tutorial * move who uses Nomad to use cases page; move spec/config shortcuts add dividers * Move Consul out of Integrations; move namespaces to govern * move integrations/vault to secure/vault; delete integrations * move ref arch to docs; rename Deploy Nomad back to Install Nomad * address feedback * linkcheck fixes * Fixed raw_exec redirect * add info from /nomad/tutorials/manage-jobs/jobs * update page content with newer tutorial * link updates for architecture sub-folders * Add redirects for removed section index pages. Fix links. * fix broken links from linkcheck * Revert to use dev-portal main branch instead of nomadIA branch * build workaround: add intro-nav-data.json with single entry * fix content-check error * add intro directory to get around Vercel build error * workound for emtpry directory * remove mdx from /intro/ to fix content-check and git snafu * Add intro index.mdx so Vercel build should work --------- Co-authored-by: Tu Nguyen <im2nguyen@gmail.com>
144 lines
5.5 KiB
Plaintext
144 lines
5.5 KiB
Plaintext
---
|
|
layout: docs
|
|
page_title: 'nomad deployment status command reference'
|
|
description: |
|
|
The `nomad deployment status` command displays the status of a deployment.
|
|
---
|
|
|
|
# `nomad deployment status` command reference
|
|
|
|
The `deployment status` command is used to display the status of a deployment.
|
|
The status will display the number of desired changes as well as the currently
|
|
applied changes.
|
|
|
|
## Usage
|
|
|
|
```plaintext
|
|
nomad deployment status [options] <deployment id>
|
|
```
|
|
|
|
The `deployment status` command requires a single argument, a deployment ID or
|
|
prefix.
|
|
|
|
A `-monitor` flag can be used to update the current deployment status until completion.
|
|
When combined with `-verbose`, it will also display the allocations for the given
|
|
deployment. If the deployment fails and [`auto_revert`] is set to `true`, it will monitor
|
|
the entire process, showing the failure and then monitoring the deployment of the rollback.
|
|
|
|
When ACLs are enabled, this command requires a token with the 'read-job'
|
|
capability for the deployment's namespace.
|
|
|
|
## Options
|
|
|
|
- `-json` : Output the deployment in its JSON format.
|
|
- `-t` : Format and display the deployment using a Go template.
|
|
- `-verbose`: Show full information.
|
|
- `-monitor`: Enter monitor mode to poll for updates to the deployment status.
|
|
- `-wait`: How long to wait before polling an update, used in conjunction with monitor
|
|
mode. Defaults to 2s.
|
|
- `-ui`: Open the deployment page in the browser.
|
|
|
|
## Examples
|
|
|
|
Inspect the status of a complete deployment:
|
|
|
|
```shell-session
|
|
$ nomad deployment status 06ca68a2
|
|
ID = 06ca68a2
|
|
Job ID = example
|
|
Job Version = 0
|
|
Status = successful
|
|
Description = Deployment completed successfully
|
|
|
|
Deployed
|
|
Task Group Desired Placed Healthy Unhealthy Progress Deadline
|
|
cache 2 2 2 0 2021-06-09T15:20:27-07:00
|
|
web 2 2 2 0 2021-06-09T15:20:27-07:00
|
|
```
|
|
|
|
Inspect the status of a deployment that is waiting for canary promotion:
|
|
|
|
```shell-session
|
|
$ nomad deployment status 0b
|
|
ID = 0b23b149
|
|
Job ID = example
|
|
Job Version = 1
|
|
Status = running
|
|
Description = Deployment is running but requires manual promotion
|
|
|
|
Deployed
|
|
Task Group Promoted Desired Canaries Placed Healthy Unhealthy Progress Deadline
|
|
cache false 2 1 1 0 0 2021-06-09T15:20:27-07:00
|
|
web N/A 2 0 2 2 0 2021-06-09T15:20:27-07:00
|
|
```
|
|
|
|
Monitor the status of a deployment and its allocations:
|
|
|
|
```shell-session
|
|
$ nomad deployment status -monitor -verbose dab
|
|
2021-06-09T15:10:38-07:00: Monitoring deployment "da9bfc23-576f-be32-61c9-0f9997fe70a6"
|
|
⠙ Deployment "da9bfc23-576f-be32-61c9-0f9997fe70a6" in progress...
|
|
|
|
2021-06-09T15:10:40-07:00
|
|
ID = da9bfc23-576f-be32-61c9-0f9997fe70a6
|
|
Job ID = example
|
|
Job Version = 0
|
|
Status = running
|
|
Description = Deployment is running
|
|
|
|
Deployed
|
|
Task Group Desired Placed Healthy Unhealthy Progress Deadline
|
|
cache 2 2 1 0 2021-06-09T15:20:27-07:00
|
|
web 1 1 1 0 2021-06-09T15:20:27-07:00
|
|
|
|
Allocations
|
|
ID Eval ID Node ID Node Name Task Group Version Desired Status Created Modified
|
|
9e1b4cb9-35c4-49f3-3ccb-1cb10a5a5aa6 e337d747-f59e-329e-4718-46edcc293695 70279742-b106-c487-315f-fb583e13178e mbp.local cache 0 run running 2021-06-09T15:10:17-07:00 2021-06-09T15:10:31-07:00
|
|
bd0a8773-0d37-bca6-6ca1-2d9c8473bdf8 e337d747-f59e-329e-4718-46edcc293695 70279742-b106-c487-315f-fb583e13178e mbp.local cache 0 run running 2021-06-09T15:10:17-07:00 2021-06-09T15:10:29-07:00
|
|
ee873095-8e76-7d4f-095f-b80ce5712d9b e337d747-f59e-329e-4718-46edcc293695 70279742-b106-c487-315f-fb583e13178e mbp.local web 0 run running 2021-06-09T15:10:17-07:00 2021-06-09T15:10:27-07:00
|
|
```
|
|
|
|
Monitor the status of a deployment that fails and has `auto_revert` set to `true`:
|
|
|
|
```shell-session
|
|
$ nomad deployment status -monitor e45
|
|
2021-06-09T15:49:19-07:00: Monitoring deployment "e45cc3c1"
|
|
! Deployment "e45cc3c1" failed
|
|
|
|
2021-06-09T15:49:48-07:00
|
|
ID = e45cc3c1
|
|
Job ID = example
|
|
Job Version = 1
|
|
Status = failed
|
|
Description = Failed due to progress deadline - rolling back to job version 0
|
|
|
|
Deployed
|
|
Task Group Auto Revert Desired Placed Healthy Unhealthy Progress Deadline
|
|
cache true 2 1 0 1 2021-06-09T15:49:48-07:00
|
|
web false 1 1 1 0 2021-06-09T15:59:28-07:00
|
|
|
|
⠙ Deployment "e094a0be" in progress...
|
|
|
|
2021-06-09T15:50:02-07:00
|
|
ID = e094a0be
|
|
Job ID = example
|
|
Job Version = 2
|
|
Status = running
|
|
Description = Deployment is running
|
|
|
|
Deployed
|
|
Task Group Auto Revert Desired Placed Healthy Unhealthy Progress Deadline
|
|
cache true 2 2 1 0 2021-06-09T15:52:00-07:00
|
|
web false 1 1 1 0 2021-06-09T15:59:58-07:00
|
|
```
|
|
|
|
**Please note**: The library used for updating terminal output in place currently isn't fully
|
|
Windows compatible so there may be some formatting differences (different margins, no spinner
|
|
indicating deployment is in progress).
|
|
|
|
## General options
|
|
|
|
@include 'general_options.mdx'
|
|
|
|
[`auto_revert`]: /nomad/docs/job-specification/update#auto_revert
|