mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 19:05:42 +03:00
* Enhance front matter description for search * acl section * alloc section * config section * deployment section * eval section * job section * license section * namespace section * node section * node pool section * operator section * plugin section * quota section * recommendation section * scaling section * sentinel section * server section * service section * setup section * system section * tls section * var section * volume section * change reference to command reference * Apply suggestions from code review Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com> --------- Co-authored-by: Jeff Boruszak <104028618+boruszak@users.noreply.github.com>
32 lines
1.3 KiB
Plaintext
32 lines
1.3 KiB
Plaintext
---
|
|
layout: docs
|
|
page_title: 'nomad deployment command reference'
|
|
description: |
|
|
The `nomad deployment` command interacts with deployments. List deployments, fetch status, and promote canaries. Pause, resume, and fail deployments.
|
|
---
|
|
|
|
# `nomad deployment` command reference
|
|
|
|
The `deployment` command is used to interact with deployments.
|
|
|
|
## Usage
|
|
|
|
Usage: `nomad deployment <subcommand> [options]`
|
|
|
|
Run `nomad deployment <subcommand> -h` for help on that subcommand. The following
|
|
subcommands are available:
|
|
|
|
- [`deployment fail`][fail] - Manually fail a deployment
|
|
- [`deployment list`][list] - List all deployments
|
|
- [`deployment pause`][pause] - Pause a deployment
|
|
- [`deployment promote`][promote] - Promote canaries in a deployment
|
|
- [`deployment resume`][resume] - Resume a paused deployment
|
|
- [`deployment status`][status] - Display the status of a deployment
|
|
|
|
[fail]: /nomad/docs/commands/deployment/fail 'Manually fail a deployment'
|
|
[list]: /nomad/docs/commands/deployment/list 'List all deployments'
|
|
[pause]: /nomad/docs/commands/deployment/pause 'Pause a deployment'
|
|
[promote]: /nomad/docs/commands/deployment/promote 'Promote canaries in a deployment'
|
|
[resume]: /nomad/docs/commands/deployment/resume 'Resume a paused deployment'
|
|
[status]: /nomad/docs/commands/deployment/status 'Display the status of a deployment'
|