Skip to main content

Synopsis

Read-only views over the broker’s image inventory. The controller reports each container’s image identity; the broker keys it by digest, not tag, so two nodes that resolved nginx:latest differently show as two images.
The inventory records identity only. It carries no vulnerability, SBOM or signature data, so an image listed here is neither vetted nor flagged.

images list

Calls GET /images and prints one page, ordered by digest.
RUNNING is the number of workload containers running the digest now. 0 means it is no longer running; the row stays until retention prunes it. When more pages exist, the command prints the --after value for the next page on stderr, so a piped table stays clean.

images get

Calls GET /images/{digest} and prints the image and every workload container that runs or ran it, running rows first.
A digest the broker has never seen exits non-zero with image ... is not in the inventory. -o json and -o yaml print the broker’s response unchanged, including fields this CLI version does not know about. Global flags (--kubeconfig, --context, --broker-namespace, --broker-service, --broker-token-file, --debug) are listed in the CLI overview.

Examples