47 lines
948 B
Plaintext
47 lines
948 B
Plaintext
---
|
|
layout: docs
|
|
page_title: 'Commands: namespace list'
|
|
sidebar_title: list
|
|
description: |
|
|
The namespace list command is used to list namespaces.
|
|
---
|
|
|
|
# Command: namespace list
|
|
|
|
The `namespace list` command is used list available namespaces.
|
|
|
|
~> Namespace commands are new in Nomad 0.7 and are only available with Nomad
|
|
Enterprise.
|
|
|
|
## Usage
|
|
|
|
```plaintext
|
|
nomad namespace list [options]
|
|
```
|
|
|
|
The `namespace list` command requires no arguments.
|
|
|
|
## General Options
|
|
|
|
@include 'general_options.mdx'
|
|
|
|
## List Options
|
|
|
|
- `-json` : Output the namespaces in their JSON format.
|
|
|
|
- `-t` : Format and display the namespaces using a Go template.
|
|
|
|
## Examples
|
|
|
|
List all namespaces:
|
|
|
|
```shell
|
|
$ nomad namespace list
|
|
Name Description
|
|
default Default shared namespace
|
|
api-prod Production instances of backend API servers
|
|
api-qa QA instances of backend API servers
|
|
web-prod Production instances of webservers
|
|
web-qa QA instances of webservers
|
|
```
|