mirror of
https://github.com/kemko/nomad.git
synced 2026-01-07 02:45:42 +03:00
* 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
45 lines
928 B
Plaintext
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'
|