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

     1  ---
     2  layout: "docs"
     3  page_title: "Commands: deployment resume"
     4  sidebar_current: "docs-commands-deployment-resume"
     5  description: >
     6    The deployment resume command is used to resume a paused deployment.
     7  ---
     8  
     9  # Command: deployment resume
    10  
    11  The `deployment resume` command is used used to unpause a paused deployment.
    12  Resuming a deployment will resume the placement of new allocations as part of
    13  rolling deployment.
    14  
    15  ## Usage
    16  
    17  ```
    18  nomad deployment resume [options] <deployment id>
    19  ```
    20  
    21  The `deployment resume` command requires a single argument, a deployment ID or
    22  prefix. 
    23  
    24  ## General Options
    25  
    26  <%= partial "docs/commands/_general_options" %>
    27  
    28  ## Resume Options
    29  
    30  * `-detach`: Return immediately instead of monitoring. A new evaluation ID
    31    will be output, which can be used to examine the evaluation using the
    32    [eval status](/docs/commands/eval-status.html) command
    33  
    34  * `-verbose`: Show full information.
    35  
    36  ## Examples
    37  
    38  Manually resume a deployment:
    39  
    40  ```
    41  $ nomad deployment resume c848972e
    42  Deployment "c848972e-dcd3-7354-e0d2-39d86642cdb1" resumed
    43  
    44  ==> Monitoring evaluation "5e266d42"
    45      Evaluation triggered by job "example"
    46      Evaluation within deployment: "c848972e"
    47      Allocation "00208424" created: node "6240eed6", group "web"
    48      Allocation "68c72edf" created: node "6240eed6", group "cache"
    49      Allocation "00208424" status changed: "pending" -> "running"
    50      Evaluation status changed: "pending" -> "complete"
    51  ==> Evaluation "5e266d42" finished with status "complete"
    52  ```