github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/website/content/docs/commands/namespace/status.mdx (about)

     1  ---
     2  layout: docs
     3  page_title: 'Commands: namespace status'
     4  description: >
     5    The namespace status command is used to view the status of a particular
     6    namespace.
     7  ---
     8  
     9  # Command: namespace status
    10  
    11  The `namespace status` command is used to view the status of a particular
    12  namespace.
    13  
    14  ~> Namespaces are open source in Nomad 1.0. Namespaces were Enterprise-only
    15  when introduced in Nomad 0.7.
    16  
    17  ## Usage
    18  
    19  ```plaintext
    20  nomad namespace status [options] <namespace_name>
    21  ```
    22  
    23  If ACLs are enabled, this command requires a management ACL token or a token
    24  that has a capability associated with the namespace.
    25  
    26  ## General Options
    27  
    28  @include 'general_options_no_namespace.mdx'
    29  
    30  ## Examples
    31  
    32  View the status of a namespace:
    33  
    34  ```shell-session
    35  $ nomad namespace status default
    36  Name            = api-prod
    37  Description     = Prod API servers
    38  Quota           = prod
    39  EnabledDrivers  = docker,exec
    40  DisabledDrivers = raw_exec
    41   
    42  Metadata
    43  contact = platform-eng@example.com
    44  
    45  Quota Limits
    46  Region  CPU Usage   Memory Usage
    47  global  500 / 2500  256 / 2000
    48  ```