feat: wait for proxy convergence after sync; pin CLI v0.47.0#2
Merged
Conversation
Add 'wait' (default true) + 'wait_timeout' (default 120) inputs. When wait is on the action passes 'deploy sync --wait --wait-timeout <n>', so the step only returns once each synced app's route is live (Caddy running, route applied, container attached) — no more racing the async reconciler from a later CI step. Against Reoclo API < 1.75.0 the CLI skips the wait with a warning, so this is safe across server versions. Bump the pinned reoclo CLI to v0.47.0 (adds --wait; also carries 0.46.0's reoclo.managed=false opt-out + exec argv-quoting). install.sh sha256 unchanged.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
wait(defaulttrue) +wait_timeout(default 120) inputs. With wait on, the action passesdeploy sync --wait --wait-timeout <n>, so the step only returns once each synced app's route is live (Caddy running, route applied, container attached) — no more racing the async reconciler from a later CI step. Against Reoclo API < 1.75.0 the CLI skips the wait with a warning, so it's safe across server versions.Bumps the pinned reoclo CLI to v0.47.0 (adds
--wait; also carries 0.46.0'sreoclo.managed=falsediscovery opt-out + exec argv-quoting).install.shsha256 unchanged. README updated.Requires Reoclo API ≥ 1.75.0 for
--wait(already live in prod).