Files
nomad/website/content/docs/commands/namespace/inspect.mdx
Aimee Ukasick 23fd87d9c9 Docs: Commands section move "General options" to page bottom (#26001)
* sectionless files plus acl section

* alloc section

* config, deployment sections

* job section

* licence, namespace

* node, node-pool

* operator

* plugin, quota, recommendation

* scaling, sentinel, server, service, system, var, volume

* Add "ENT" label to left nav for enterprise commands

* job tag break into separate folder and files; update options header
2025-06-12 14:31:38 -05:00

45 lines
928 B
Plaintext

---
layout: docs
page_title: 'nomad namespace inspect command reference'
description: >
The `nomad namespace inspect` command displays raw information about a
particular namespace.
---
# `nomad namespace inspect` command reference
The `namespace inspect` command is used to view raw information about a
particular namespace.
## Usage
```plaintext
nomad namespace inspect [options] <namespace_name>
```
If ACLs are enabled, this command requires a management ACL token or a token
that has a capability associated with the namespace.
## Options
- `-t` : Format and display the namespace using a Go template.
## Examples
Inspect a namespace:
```shell-session
$ nomad namespace inspect default
{
"CreateIndex": 5,
"Description": "Default shared namespace",
"ModifyIndex": 38,
"Name": "default",
"Quota": "shared-default-quota"
}
```
## General options
@include 'general_options_no_namespace.mdx'