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

     1  ---
     2  layout: docs
     3  page_title: 'Commands: quota delete'
     4  sidebar_title: delete
     5  description: |
     6    The quota delete command is used to delete an existing quota specification.
     7  ---
     8  
     9  # Command: quota delete
    10  
    11  The `quota delete` command is used to delete an existing quota specification.
    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 delete <quota_name>
    20  ```
    21  
    22  The `quota delete` command requires the quota specification name as an argument.
    23  
    24  If ACLs are enabled, this command requires a token with the `quota:write`
    25  capability.
    26  
    27  ## General Options
    28  
    29  @include 'general_options.mdx'
    30  
    31  ## Examples
    32  
    33  Delete a quota specification:
    34  
    35  ```shell-session
    36  $ nomad quota delete my-quota
    37  Successfully deleted quota "my-quota"!
    38  ```