docs(deploy): record what stretches a release into a window - #250
Merged
Conversation
- a backfill migration holds the API down for its duration, because the migrations profile gates it on service_completed_successfully - the safety snapshot runs with --no-deps, so it needs the stack up, and it must precede the checkout: the Compose user pin takes effect immediately - restart every timer stopped for the window, watchdog included
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.
Three failure modes hit during an ownership migration, written into the runbook so the next one does not rediscover them.
migrationsprofile gates the API onservice_completed_successfully; a migrator that regenerates derivatives keeps the API and the tunnel inCreateduntil it exits.backupruns with--no-depsby design, so it cannot followdown; and the Composeuser:pin overrides the image'sUSER, so between a checkout and the matchingchownevery backup run fails. Adds the ordering that works.