Skip to content

cub unit set-target

cub unit set-target

Set target for unit(s)

Synopsis

Set target for unit(s).

Supports two modes:

Single unit mode:

  cub unit set-target <unit-slug> <target-slug>

Bulk mode:

  cub unit set-target <target-slug> --where "Slug LIKE 'app-%'"
  cub unit set-target <target-slug> --unit unit1,unit2,unit3

Use "-" as target-slug to unset/clear the target.

Targets typically are created by workers, but may also be created using cub target create.

cub unit set-target <unit-slug> <target-slug> | set-target <target-slug> [flags]

Options

      --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 set-target
      --jq string       jq expression, suppressing default output
      --json            JSON output, suppressing default output
      --quiet           No default output.
      --unit strings    target specific units by slug or UUID (can be repeated or comma-separated)
      --verbose         Detailed output, additive with default output
      --where string    Filter expression using SQL-inspired syntax. Supports conjunctions with AND. String operators: =, !=, <, >, <=, >=, LIKE, ILIKE, ~~, !~~, ~, ~*, !~, !~*. Pattern matching with LIKE/ILIKE uses % and _ wildcards. Regex operators (~, ~*, !~, !~*) support POSIX regular expressions. Examples: "Slug LIKE 'app-%'", "DisplayName ILIKE '%backend%'", "Slug ~ '^[a-z]+-[0-9]+$'"
      --yaml            YAML output, suppressing default output
      --yq string       yq expression, suppressing default output

Options inherited from parent commands

      --context string   The context to use for this command
      --debug            Debug output
      --space string     space ID to perform command on

SEE ALSO