github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/website/content/docs/commands/quota/list.mdx (about)

     1  ---
     2  layout: docs
     3  page_title: 'Commands: quota list'
     4  sidebar_title: list
     5  description: |
     6    The quota list command is used to list available quota specifications.
     7  ---
     8  
     9  # Command: quota list
    10  
    11  The `quota list` command is used to list available quota specifications.
    12  
    13  ~> Quota commands are new in Nomad 0.7 and are only available with Nomad
    14  Enterprise.
    15  
    16  ## Usage
    17  
    18  ```plaintext
    19  nomad quota list
    20  ```
    21  
    22  If ACLs are enabled, this command requires a token with the `quota:read`
    23  capability. Any quotas applied to namespaces that the token does not have
    24  access to will be filtered from the results.
    25  
    26  ## General Options
    27  
    28  @include 'general_options.mdx'
    29  
    30  ## List Options
    31  
    32  - `-json`: Output the quota specifications in a JSON format.
    33  
    34  - `-t`: Format and display the quotas specifications using a Go template.
    35  
    36  ## Examples
    37  
    38  List all quota specifications:
    39  
    40  ```shell-session
    41  $ nomad quota list
    42  Name     Description
    43  default  Limit the shared default namespace
    44  ```