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

     1  ---
     2  layout: "docs"
     3  page_title: "Commands: deployment list"
     4  sidebar_current: "docs-commands-deployment-list"
     5  description: >
     6    The deployment list command is used to list deployments.
     7  ---
     8  
     9  # Command: deployment list
    10  
    11  The `deployment list` command is used list all deployments.
    12  
    13  ## Usage
    14  
    15  ```
    16  nomad deployment list [options]
    17  ```
    18  
    19  The `deployment list` command requires no arguments.
    20  
    21  ## General Options
    22  
    23  <%= partial "docs/commands/_general_options" %>
    24  
    25  ## List Options
    26  
    27  * `-json` : Output the deployments in their JSON format.
    28  
    29  * `-t` : Format and display the deployments using a Go template.
    30  
    31  * `-verbose`: Show full information.
    32  
    33  ## Examples
    34  
    35  List all tracked deployments:
    36  
    37  ```
    38  $ nomad deployment list
    39  ID        Job ID   Job Version  Status      Description
    40  8990cfbc  example  2            failed      Deployment marked as failed
    41  62eb607c  example  1            successful  Deployment completed successfully
    42  5f271fe2  example  0            successful  Deployment completed successfully
    43  ```