Skip to content
Charlie Voiselle edited this page Feb 11, 2022 · 1 revision

layout: commands page_title: "Commands: Status" sidebar_title: "status" description: "Get information on deployed packs"

Nomad-Pack Status

Command: nomad-pack status

Get information on deployed packs

Usage

Usage: nomad-pack status <name> [options]

Get information on deployed Nomad Packs. If no pack name is specified, it will return
a list of all deployed packs. If pack name is specified, it will return a list of all
deployed jobs belonging to that pack, along with their status and deployment names.

Examples: # Get a list of all deployed packs and their registries nomad-pack status

# Get a list of all deployed jobs in pack example, along with their status and deployment names
nomad-pack status example

# Get a list of all deployed jobs and their status for an example pack in the deployment name "dev"
nomad-pack status example --name=dev

# Get a list of all deployed jobs and their status for an example pack in the deployment name "dev"
nomad-pack status example --name=dev --registry=community

Status Options

  • -registry=<string> - Specific registry name containing the pack to inspect. If not specified, the default registry will be used.
  • -ref=<string> - Specific git ref of the pack to inspect. Supports tags, SHA, and latest. If no ref is specified, defaults to latest.

Using ref with a file path is not supported.