The submit estimate now shows likely placement, hourly rate, total cost range, queue wait range, estimated start window, and any soft constraints that were auto-relaxed.
Jobs
Jobs commands
Inspect running and completed workloads. Find job IDs, review lifecycle state, and tail runtime logs.
jungle jobs
List all jobs on your account with their current status.
Examples
List jobs
junglejobs
jungle status <job-id>
Show the detail view for a single job — the same data the portal status page uses.
Examples
Job detail
junglestatus job_1a2b3c4d
jungle logs <job-id>
Tail the runtime output for a job. Useful once you already know which job you want to inspect.
Flags
FlagDescription
--follow-f
Stream new log lines as they arrive.
--tail <n>
Number of recent lines to show at start (default 100).
Examples
Static tail
junglelogs job_1a2b3c4d
Follow stream
junglelogs job_1a2b3c4d --follow
Last 50 lines
junglelogs job_1a2b3c4d --tail 50
Nodes
Nodes commands
Browse public capacity, register a provider node, and manage the local node-agent daemon.
jungle nodes
List public capacity currently available in the marketplace.
Flags
FlagDescription
--workload <type>
Filter nodes by supported workload class.
Examples
All nodes
junglenodes
Inference nodes only
junglenodes --workload inference
jungle nodes show <node-id>
Show the detail view for a single node including capacity signals.
Examples
Node detail
junglenodes show node_xyz789
jungle node register
Register this machine as a provider node. Collects payout details and writes local node config.
Flags
FlagDescription
--dispatch-url <url>
Local dispatch endpoint for the node agent.required
--location <region>
Geographic label for this node (e.g. lagos, london).
Download and install the managed node-agent binary. Most providers can skip this — jungle node start installs on demand.
Examples
Install
junglenode install-agent
jungle node start / stop / status
Start the node-agent in the background as a daemon, stop it, or check its current state.
Flags
FlagDescription
--daemon
Run the agent as a background daemon (start only).
Examples
Start daemon
junglenode start --daemon
Check status
junglenode status
Stop daemon
junglenode stop
Credentials
Credentials commands
Save private container registry credentials so you can submit private images without pasting secrets into every command.
jungle registry-credentials list
List all saved registry credentials on your account.
Examples
List
jungleregistry-credentials list
jungle registry-credentials create
Interactively save a new registry credential. The CLI prompts for the registry host, username, and access token.
Examples
Create
jungleregistry-credentials create
jungle registry-credentials show <id>
Show the metadata for a saved credential (secrets are never echoed).
Examples
Show
jungleregistry-credentials show cred_abc123
jungle registry-credentials delete <id>
Permanently delete a saved registry credential.
Examples
Delete
jungleregistry-credentials delete cred_abc123
Deleting a credential that is referenced by a running job will not interrupt that job, but future submits using the same --registry-credential flag will fail.