stagesetctl reconcile

Stamps the reconcile.fluxcd.io/requestedAt
annotation to trigger a
reconcile now, optionally waiting for the controller to report it handled.
stagesetctl reconcile NAME [flags]
| Flag | Default | Description |
|---|---|---|
--stage | (all) | Force only this stage to re-run its actions (single-stage reconcile). |
--with-source | false | Also re-request the stage sources before reconciling. |
--update-now | false | Apply a window-held rollout immediately, bypassing update windows. |
--force | false | Proceed even when the StageSet is suspended. |
--wait | false | Block until the controller reports the request handled. |
--timeout | 5m | How long to wait with --wait. |
Example
stagesetctl reconcile payments -n payments
Reconcile requested for StageSet payments (token 2026-06-15T09:30:00Z)
Force just one stage to re-run its actions:
stagesetctl reconcile payments --stage application
Reconcile requested for stage "application" of StageSet payments (token 2026-06-15T09:31:12Z)
Re-pull sources, push a window-held rollout through, and wait for it:
stagesetctl reconcile payments --with-source --update-now --wait --timeout 10m
--update-now is the CLI equivalent of the stages.metio.wtf/update-now
annotation — the supported escape hatch when an update
window is holding a rollout you need to ship now.