github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/website/content/docs/commands/quota/list.mdx (about) 1 --- 2 layout: docs 3 page_title: 'Commands: quota list' 4 description: | 5 The quota list command is used to list available quota specifications. 6 --- 7 8 # Command: quota list 9 10 The `quota list` command is used to list available quota specifications. 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 list 19 ``` 20 21 If ACLs are enabled, this command requires a token with the `quota:read` 22 capability. Any quotas applied to namespaces that the token does not have 23 access to will be filtered from the results. 24 25 ## General Options 26 27 @include 'general_options.mdx' 28 29 ## List Options 30 31 - `-json`: Output the quota specifications in a JSON format. 32 33 - `-t`: Format and display the quotas specifications using a Go template. 34 35 ## Examples 36 37 List all quota specifications: 38 39 ```shell-session 40 $ nomad quota list 41 Name Description 42 default Limit the shared default namespace 43 ```