2017-10-13 21:02:30 +00:00
|
|
|
---
|
2020-02-06 23:45:31 +00:00
|
|
|
layout: docs
|
|
|
|
page_title: 'Commands: quota delete'
|
|
|
|
description: |
|
2017-10-13 21:02:30 +00:00
|
|
|
The quota delete command is used to delete an existing quota specification.
|
|
|
|
---
|
|
|
|
|
|
|
|
# Command: quota delete
|
|
|
|
|
|
|
|
The `quota delete` command is used to delete an existing quota specification.
|
|
|
|
|
2018-03-22 20:39:18 +00:00
|
|
|
~> Quota commands are new in Nomad 0.7 and are only available with Nomad
|
|
|
|
Enterprise.
|
|
|
|
|
2017-10-13 21:02:30 +00:00
|
|
|
## Usage
|
|
|
|
|
2019-10-22 13:44:00 +00:00
|
|
|
```plaintext
|
2017-10-13 21:02:30 +00:00
|
|
|
nomad quota delete <quota_name>
|
|
|
|
```
|
|
|
|
|
|
|
|
The `quota delete` command requires the quota specification name as an argument.
|
|
|
|
|
2020-11-19 21:38:08 +00:00
|
|
|
If ACLs are enabled, this command requires a token with the `quota:write`
|
|
|
|
capability.
|
|
|
|
|
2017-10-13 21:02:30 +00:00
|
|
|
## General Options
|
|
|
|
|
2020-02-06 23:45:31 +00:00
|
|
|
@include 'general_options.mdx'
|
2017-10-13 21:02:30 +00:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
Delete a quota specification:
|
|
|
|
|
2020-05-18 20:53:06 +00:00
|
|
|
```shell-session
|
|
|
|
$ nomad quota delete my-quota
|
2017-10-13 21:02:30 +00:00
|
|
|
Successfully deleted quota "my-quota"!
|
|
|
|
```
|