Skip to content

cub changeworkflow delete

cub changeworkflow delete

Delete a change workflow or multiple change workflows

Synopsis

Delete a change workflow or multiple change workflows using bulk operations.

A change order that named the workflow keeps the annotation naming it, so deleting a workflow a rollout is still moving under leaves that rollout with nothing to advance through. Abort the change order, or keep the workflow until it is done.

Single change workflow delete:

  cub changeworkflow delete --space workflows myapp-main-line

Bulk delete with --where:

Delete multiple change workflows at once based on search criteria.

Examples:

  # Delete the workflows of a retired component's spaces
  cub changeworkflow delete --space "*" --where "Labels.Component = 'legacy-app'"

  # Delete specific change workflows by slug
  cub changeworkflow delete --changeworkflow old-main-line,deprecated-main-line
cub changeworkflow delete [<slug or id>] [flags]

Options

      --changeworkflow strings   target specific change workflows by slug or UUID for bulk delete (can be repeated or comma-separated)
      --filter string            Filter entity to apply to the list. Specify as 'space/filter' for cross-space filters or just 'filter' for current space. Supports both slugs and UUIDs. The filter will be combined with any --where clause using AND logic. Examples: "production-filters/security-check", "my-filter-uuid", "validation-rules"
  -h, --help                     help for delete
  -o, --output string            Output format. One of: json, yaml, name, wide, mutations, jq=<expr>, yq=<expr>, custom-columns=<spec>
      --quiet                    No default output.
      --verbose                  Detailed output, additive with default output
      --where string             Filter expression using SQL-inspired syntax. Supports conjunctions with AND. String operators: =, !=, <, >, <=, >=, LIKE, NOT LIKE, ILIKE, ~~, !~~, ~, ~*, !~, !~*. Pattern matching with LIKE/ILIKE uses % and _ wildcards. Regex operators (~, ~*, !~, !~*) support POSIX regular expressions. A related entity is referenced by prefix, as in "UpstreamUnit.Slug = 'base'"; when the reference names a list, a * segment matches any element, as in "FromLink.*.Slug = 'upgrade-app'". Examples: "Slug LIKE 'app-%'", "DisplayName ILIKE '%backend%'", "Slug ~ '^[a-z]+-[0-9]+$'"

Options inherited from parent commands

      --context string   The context to use for this command
      --debug            Debug output
      --space string     space to operate in, by slug or UUID. Omitted, a list or bulk operation spans the organization and a single entity is named as <space>/<slug>

SEE ALSO