Skip to content

Commit

Permalink
Add note about rollbacks, especially production-ui (#2386)
Browse files Browse the repository at this point in the history
* Add a note on rolling back changes, based on jcristau's experience today.

* Updated for jcristau's review comment
  • Loading branch information
gbrownmozilla committed Jan 13, 2022
1 parent 2840e36 commit fd2b8bc
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/source/infrastructure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,17 @@ Pushing live requires CloudOps. For non-urgent pushes, you should begin this pro
* On https://github.com/mozilla-releng/balrog/releases/new, create a new `production-ui` Release. This will trigger automation to deploy the new UI.

4. Bump the `in-repo version <https://github.com/mozilla-releng/balrog/blob/main/version.txt>`_ to the next available one to ensure the next push gets a new version.

~~~~~~~~~
Rollbacks
~~~~~~~~~

If something goes wrong, CloudOps can rollback to an earlier version on request.

If the UI needs a rollback, after deleting the previous production-ui release and tag as above, update the "production-ui" tag to point to the earlier version. Something like (to point to v3.08):
::

git tag -d production-ui
git tag -s production-ui v3.08^{}
git push origin production-ui

0 comments on commit fd2b8bc

Please sign in to comment.