github.com/smintz/nomad@v0.8.3/website/source/docs/commands/deployment/pause.html.md.erb (about)

     1  ---
     2  layout: "docs"
     3  page_title: "Commands: deployment pause"
     4  sidebar_current: "docs-commands-deployment-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  ```
    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  <%= partial "docs/commands/_general_options" %>
    28  
    29  ## Pause Options
    30  
    31  * `-verbose`: Show full information.
    32  
    33  ## Examples
    34  
    35  Manually pause a deployment:
    36  
    37  ```
    38  $ nomad deployment pause 2f14ba55
    39  Deployment "2f14ba55-acfb-cb31-821c-facf1b9b0830" paused
    40  ```