github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/website/pages/docs/commands/deployment/pause.mdx (about) 1 --- 2 layout: docs 3 page_title: 'Commands: deployment pause' 4 sidebar_title: pause 5 description: > 6 The deployment pause command is used to pause a deployment and disallow new 7 placements. 8 --- 9 10 # Command: deployment pause 11 12 The `deployment pause` command is used to pause a deployment. Pausing a 13 deployment will pause the placement of new allocations as part of rolling 14 deployment. 15 16 ## Usage 17 18 ```plaintext 19 nomad deployment pause [options] <deployment id> 20 ``` 21 22 The `deployment pause` command requires a single argument, a deployment ID or 23 prefix. 24 25 ## General Options 26 27 @include 'general_options.mdx' 28 29 ## Pause Options 30 31 - `-verbose`: Show full information. 32 33 ## Examples 34 35 Manually pause a deployment: 36 37 ```shell-sessionnomad deployment pause 2f14ba55 38 Deployment "2f14ba55-acfb-cb31-821c-facf1b9b0830" paused 39 ```