stagesetctl reconcile see history edit this page

Talks about: , , and

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]
FlagDefaultDescription
--stage(all)Force only this stage to re-run its actions (single-stage reconcile).
--with-sourcefalseAlso re-request the stage sources before reconciling.
--update-nowfalseApply a window-held rollout immediately, bypassing update windows.
--forcefalseProceed even when the StageSet is suspended.
--waitfalseBlock until the controller reports the request handled.
--timeout5mHow 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.