Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2021-01-12 17:34:33 +0300
committerÆvar Arnfjörð Bjarmason <avarab@gmail.com>2021-01-18 19:50:41 +0300
commit424c584cbe67d640705122802087ced5a4b728f4 (patch)
tree8bed6e7bffb1ef3643ddca8e37ce8b2da6ec8cfb
parentee661e5000a7d1fe8bbf08c78c04906b3d732051 (diff)
Feature flag rollout doc: add advice about the workflow::* label
I only found out about this today, or I would have added it in my 40f953069 (Feature flag rollout doc: rewrite & make better use of template, 2020-12-15).
-rw-r--r--doc/PROCESS.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/PROCESS.md b/doc/PROCESS.md
index eccce5a66..59e2d989a 100644
--- a/doc/PROCESS.md
+++ b/doc/PROCESS.md
@@ -63,6 +63,12 @@ you'll likely need to file some access requests.
#### Is the required code deployed?
+A quick way to see if your MR is deployed is to check if [the release
+bot][release-bot] has deployed it to staging, canary or production by
+checking if the MR has [a `workflow::staging`][deployed-staging],
+[`workflow::canary`][deployed-canary] or
+[`workflow::production`][deployed-production] label.
+
The [/help action on gitlab.com][help-action] shows the currently
deployed hash. Copy that `HASH` and look at `GITALY_SERVER_VERSION` in
[gitlab-org/gitlab.git][gitlab-git] to see what the embedded gitaly
@@ -75,6 +81,10 @@ what commits aren't deployed yet:
See the [documentation on releases below](#gitaly-releases) for more
details on the tagging and release process.
+[release-bot]: https://gitlab.com/gitlab-release-tools-bot
+[deployed-staging]: https://gitlab.com/gitlab-org/gitaly/-/merge_requests?state=merged&label_name=workflow%3A%3Aproduction
+[deployed-canary]: https://gitlab.com/gitlab-org/gitaly/-/merge_requests?state=merged&label_name=workflow%3A%3Aproduction
+[deployed-production]: https://gitlab.com/gitlab-org/gitaly/-/merge_requests?state=merged&label_name=workflow%3A%3Aproduction
[help-action]: https://gitlab.com/help
[gitlab-git]: https://gitlab.com/gitlab-org/gitlab/
[gitaly-git]: https://gitlab.com/gitlab-org/gitaly/