github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/website/content/docs/commands/quota/delete.mdx (about)

     1  ---
     2  layout: docs
     3  page_title: 'Commands: quota delete'
     4  description: |
     5    The quota delete command is used to delete an existing quota specification.
     6  ---
     7  
     8  # Command: quota delete
     9  
    10  The `quota delete` command is used to delete an existing quota specification.
    11  
    12  ~> Quota commands are new in Nomad 0.7 and are only available with Nomad
    13  Enterprise.
    14  
    15  ## Usage
    16  
    17  ```plaintext
    18  nomad quota delete <quota_name>
    19  ```
    20  
    21  The `quota delete` command requires the quota specification name as an argument.
    22  
    23  If ACLs are enabled, this command requires a token with the `quota:write`
    24  capability.
    25  
    26  ## General Options
    27  
    28  @include 'general_options.mdx'
    29  
    30  ## Examples
    31  
    32  Delete a quota specification:
    33  
    34  ```shell-session
    35  $ nomad quota delete my-quota
    36  Successfully deleted quota "my-quota"!
    37  ```