Files
nomad/website/source/docs/commands/namespace/inspect.html.md.erb
Charlie Voiselle 0c359d1a21 Fixup for command section of website
* changed list indicator from * -> -
* moved in-text links to reference links
* made commands `plaintext`
* made command examples `console`
* rewrapped text
2019-10-22 17:42:08 -04:00

46 lines
912 B
Plaintext

---
layout: "docs"
page_title: "Commands: namespace inspect"
sidebar_current: "docs-commands-namespace-inspect"
description: >
The namespace inspect command is used to view raw information about a particular
namespace.
---
# Command: namespace inspect
The `namespace inspect` command is used to view raw information about a particular
namespace.
~> Namespace commands are new in Nomad 0.7 and are only available with Nomad
Enterprise.
## Usage
```plaintext
nomad namespace inspect [options] <namespace_name>
```
## General Options
<%= partial "docs/commands/_general_options" %>
## Inspect Options
- `-t` : Format and display the namespace using a Go template.
## Examples
Inspect a namespace:
```shell
$ nomad namespace inspect default
{
"CreateIndex": 5,
"Description": "Default shared namespace",
"ModifyIndex": 38,
"Name": "default",
"Quota": "shared-default-quota"
}
```