2017-07-25 18:18:21 +00:00
|
|
|
---
|
|
|
|
layout: "docs"
|
|
|
|
page_title: "Commands: job deployments"
|
|
|
|
sidebar_current: "docs-commands-job-deployments"
|
|
|
|
description: >
|
|
|
|
The deployments command is used to list deployments for a job.
|
|
|
|
---
|
|
|
|
|
|
|
|
# Command: job deployments
|
|
|
|
|
2018-03-30 00:52:35 +00:00
|
|
|
The `job deployments` command is used to display the deployments for a
|
|
|
|
particular job.
|
2017-07-25 18:18:21 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```
|
|
|
|
nomad job deployments [options] <job>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `job deployments` command requires a single argument, the job ID or an ID prefix
|
|
|
|
of a job to display the list of deployments for.
|
|
|
|
|
|
|
|
## General Options
|
|
|
|
|
|
|
|
<%= partial "docs/commands/_general_options" %>
|
|
|
|
|
|
|
|
## Deployment Options
|
|
|
|
|
|
|
|
* `-latest`: Display the latest deployment only.
|
|
|
|
|
|
|
|
* `-json` : Output the deployment in its JSON format.
|
|
|
|
|
|
|
|
* `-t` : Format and display the deployment using a Go template.
|
|
|
|
|
|
|
|
* `-verbose`: Show full information.
|
|
|
|
|
2019-06-05 15:09:22 +00:00
|
|
|
* `-all`: Display all deployments matching the job ID, even those from an
|
2019-05-14 21:13:59 +00:00
|
|
|
older instance of the job.
|
|
|
|
|
2017-07-25 18:18:21 +00:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
List the deployment for a particular job:
|
|
|
|
|
|
|
|
```
|
|
|
|
$ nomad job deployments example
|
|
|
|
ID Job ID Job Version Status Description
|
2019-06-04 17:45:44 +00:00
|
|
|
0b23b149 example 1 running Deployment is running but requires manual promotion
|
2017-07-25 18:18:21 +00:00
|
|
|
06ca68a2 example 0 successful Deployment completed successfully
|
|
|
|
```
|
|
|
|
|