Skip to main content
Lists image bake workflows for the current tenant. Shows each bake’s phase, recipe, environment, placement, image hash, and timing. By default, includes completed and failed bakes — use --all=false to show only running bakes.

Synopsis

murmur bakes ls [flags]

Arguments

NameTypeRequiredDescription
--allboolnoInclude completed and failed bakes. Set --all=false to show only running bakes. Default: true.
--placementstringnoFilter results to a specific placement.
--environmentstringnoFilter results to a specific environment.
--page-sizeintnoNumber of results per page. Must be between 1 and 100. Default: 25.
--page-tokenstringnoOpaque token for fetching the next page of results. Omit for the first page.
--full-hashboolnoShow the full image hash instead of the first 12 characters. Default: false.

Output

A table with the following columns:
ColumnDescription
PHASECurrent phase of the bake — running, completed, failed, or cached.
SCOPEThe target scope where the image is created (e.g., a cloud project).
HASHImage hash — truncated to 12 characters by default. Use --full-hash for the full value.
RUN IDBake run identifier, truncated to 8 characters.
ENVEnvironment name.
PLACEMENTPlacement name.
STARTEDTimestamp when the bake started (RFC 3339, UTC). - if not yet started.
COMPLETEDTimestamp when the bake finished (RFC 3339, UTC). - if still running.
RECIPERecipe name.
ERRORError message if the bake failed. Empty otherwise.
When additional pages exist, the output includes a next-page token and a follow-up command.

Examples

List all bakes

murmur bakes ls
PHASE      SCOPE         HASH          RUN ID    ENV      PLACEMENT     STARTED                   COMPLETED                 RECIPE      ERROR
completed  acme-agents   9f86d0818849  a1b2c3d4  staging  us-central1   2026-05-14T10:30:00Z      2026-05-14T10:45:12Z      my-recipe
running    acme-agents   7c211433f02c  e5f6a7b8  prod     us-east1      2026-05-14T11:00:00Z      -                         my-recipe
failed     acme-agents   2cf24dba5fb0  c9d0e1f2  staging  us-central1   2026-05-14T09:15:00Z      2026-05-14T09:22:45Z      old-recipe  script exited with code 1

Show only running bakes

murmur bakes ls --all=false

Filter by placement

murmur bakes ls --placement us-central1

Filter by environment

murmur bakes ls --environment staging

Show full image hashes

murmur bakes ls --full-hash

Paginate through results

murmur bakes ls --page-size 10
PHASE      SCOPE         HASH          RUN ID    ENV      PLACEMENT     STARTED                   COMPLETED                 RECIPE      ERROR
...

Next page: eyJsYXN0X2lkIjoiMTAifQ==
Run with --page-token=eyJsYXN0X2lkIjoiMTAifQ== to fetch the next page.
murmur bakes ls --page-size 10 --page-token=eyJsYXN0X2lkIjoiMTAifQ==

Errors

CodeMeaningWhat to do
INVALID_ARGUMENT--page-size must be in [1, 100]Use a page size between 1 and 100.
UNAUTHENTICATEDIdentity token is missing or expired.Run murmur auth or check your murmur.local.yaml configuration.
PERMISSION_DENIEDYou do not have environment.list permission for this tenant.Contact your tenant admin.