github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/website/pages/docs/commands/deployment/resume.mdx (about)

     1  ---
     2  layout: docs
     3  page_title: 'Commands: deployment resume'
     4  sidebar_title: 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  ```plaintext
    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  @include 'general_options.mdx'
    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] command
    33  
    34  - `-verbose`: Show full information.
    35  
    36  ## Examples
    37  
    38  Manually resume a deployment:
    39  
    40  ```shell-sessionnomad deployment resume c848972e
    41  Deployment "c848972e-dcd3-7354-e0d2-39d86642cdb1" resumed
    42  
    43  ==> Monitoring evaluation "5e266d42"
    44      Evaluation triggered by job "example"
    45      Evaluation within deployment: "c848972e"
    46      Allocation "00208424" created: node "6240eed6", group "web"
    47      Allocation "68c72edf" created: node "6240eed6", group "cache"
    48      Allocation "00208424" status changed: "pending" -> "running"
    49      Evaluation status changed: "pending" -> "complete"
    50  ==> Evaluation "5e266d42" finished with status "complete"
    51  ```
    52  
    53  [eval status]: /docs/commands/eval-status