2019-12-26 22:10:19 +05:30
|
|
|
# GitLab Docs monthly release process
|
|
|
|
|
|
|
|
When a new GitLab version is released on the 22nd, we need to create the respective
|
|
|
|
single Docker image, and update some files so that the dropdown works correctly.
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
## 1. Add the chart version
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
Since the charts use a different version number than all the other GitLab
|
|
|
|
products, we need to add a
|
|
|
|
[version mapping](https://docs.gitlab.com/charts/installation/version_mappings.html):
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
NOTE: **Note:**
|
|
|
|
The charts stable branch is not created automatically like the other products.
|
|
|
|
There's an [issue to track this](https://gitlab.com/gitlab-org/charts/gitlab/-/issues/1442).
|
|
|
|
It is usually created on the 21st or the 22nd.
|
|
|
|
|
|
|
|
To add a new charts version:
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
1. Make sure you're in the root path of the `gitlab-docs` repository.
|
2019-12-26 22:10:19 +05:30
|
|
|
1. Open `content/_data/chart_versions.yaml` and add the new stable branch version using the
|
|
|
|
version mapping. Note that only the `major.minor` version is needed.
|
|
|
|
1. Create a new merge request and merge it.
|
|
|
|
|
|
|
|
TIP: **Tip:**
|
|
|
|
It can be handy to create the future mappings since they are pretty much known.
|
|
|
|
In that case, when a new GitLab version is released, you don't have to repeat
|
|
|
|
this first step.
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
## 2. Create an image for a single version
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
The single docs version must be created before the release merge request, but
|
|
|
|
this needs to happen when the stable branches for all products have been created.
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
1. Make sure you're in the root path of the `gitlab-docs` repository.
|
|
|
|
1. Run the Rake task to create the single version:
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
```shell
|
|
|
|
./bin/rake "release:single[12.0]"
|
|
|
|
```
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
A new `Dockerfile.12.0` should have been created and `.gitlab-ci.yml` should
|
|
|
|
have the branches variables updated into a new branch. They will be automatically
|
|
|
|
committed.
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
1. Push the newly created branch, but **don't create a merge request**.
|
|
|
|
Once you push, the `image:docker-singe` job will create a new Docker image
|
|
|
|
tagged with the branch name you created in the first step. In the end, the
|
|
|
|
image will be uploaded in the [Container Registry](https://gitlab.com/gitlab-org/gitlab-docs/container_registry)
|
2020-04-22 19:07:51 +05:30
|
|
|
and it will be listed under the `registry` environment folder at
|
|
|
|
`https://gitlab.com/gitlab-org/gitlab-docs/-/environments/folders/registry` (must
|
|
|
|
have developer access).
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
Optionally, you can test locally by building the image and running it:
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
```shell
|
2019-12-26 22:10:19 +05:30
|
|
|
docker build -t docs:12.0 -f Dockerfile.12.0 .
|
|
|
|
docker run -it --rm -p 4000:4000 docs:12.0
|
|
|
|
```
|
|
|
|
|
|
|
|
Visit `http://localhost:4000/12.0/` to see if everything works correctly.
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
## 3. Create the release merge request
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
NOTE: **Note:**
|
|
|
|
To be [automated](https://gitlab.com/gitlab-org/gitlab-docs/-/issues/750).
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
Now it's time to create the monthly release merge request that adds the new
|
|
|
|
version and rotates the old one:
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
1. Make sure you're in the root path of the `gitlab-docs` repository.
|
2019-12-26 22:10:19 +05:30
|
|
|
1. Create a branch `release-X-Y`:
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
```shell
|
|
|
|
git checkout master
|
2019-12-26 22:10:19 +05:30
|
|
|
git checkout -b release-12-0
|
|
|
|
```
|
|
|
|
|
|
|
|
1. **Rotate the online and offline versions:**
|
|
|
|
|
|
|
|
At any given time, there are 4 browsable online versions: one pulled from
|
|
|
|
the upstream master branches (docs for GitLab.com) and the three latest
|
|
|
|
stable versions.
|
|
|
|
|
|
|
|
Edit `content/_data/versions.yaml` and rotate the versions to reflect the
|
|
|
|
new changes:
|
|
|
|
|
|
|
|
- `online`: The 3 latest stable versions.
|
|
|
|
- `offline`: All the previous versions offered as an offline archive.
|
|
|
|
|
|
|
|
1. **Update the `:latest` and `:archives` Docker images:**
|
|
|
|
|
|
|
|
The following two Dockerfiles need to be updated:
|
|
|
|
|
|
|
|
1. `dockerfiles/Dockerfile.archives` - Add the latest version at the top of
|
|
|
|
the list.
|
|
|
|
1. `Dockerfile.master` - Rotate the versions (oldest gets removed and latest
|
|
|
|
is added at the top of the list).
|
|
|
|
|
|
|
|
1. In the end, there should be four files in total that have changed.
|
|
|
|
Commit and push to create the merge request using the "Release" template:
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
```shell
|
2019-12-26 22:10:19 +05:30
|
|
|
git add content/ Dockerfile.master dockerfiles/Dockerfile.archives
|
|
|
|
git commit -m "Release 12.0"
|
|
|
|
git push origin release-12-0
|
|
|
|
```
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
## 4. Update the dropdown for all online versions
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
The versions dropdown is in a way "hardcoded". When the site is built, it looks
|
|
|
|
at the contents of `content/_data/versions.yaml` and based on that, the dropdown
|
|
|
|
is populated. So, older branches will have different content, which means the
|
2020-03-13 15:44:24 +05:30
|
|
|
dropdown will list one or more releases behind. Remember that the new changes of
|
2019-12-26 22:10:19 +05:30
|
|
|
the dropdown are included in the unmerged `release-X-Y` branch.
|
|
|
|
|
|
|
|
The content of `content/_data/versions.yaml` needs to change for all online
|
2020-10-24 23:57:45 +05:30
|
|
|
versions (stable branches `X.Y` of the `gitlab-docs` project):
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
1. Run the Rake task that will create all the respective merge requests needed to
|
2019-12-26 22:10:19 +05:30
|
|
|
update the dropdowns and will be set to automatically be merged when their
|
2020-10-24 23:57:45 +05:30
|
|
|
pipelines succeed:
|
|
|
|
|
|
|
|
NOTE: **Note:**
|
2020-11-24 15:15:51 +05:30
|
|
|
The `release-X-Y` branch needs to be present locally, otherwise the Rake
|
|
|
|
task will abort.
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
```shell
|
2019-12-26 22:10:19 +05:30
|
|
|
./bin/rake release:dropdowns
|
|
|
|
```
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
1. [Visit the merge requests page](https://gitlab.com/gitlab-org/gitlab-docs/-/merge_requests?label_name%5B%5D=release)
|
|
|
|
to check that their pipelines pass, and once all are merged, proceed to the
|
|
|
|
following and final step.
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
TIP: **Tip:**
|
|
|
|
In case a pipeline fails, see [troubleshooting](#troubleshooting).
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
## 5. Merge the release merge request
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
The dropdown merge requests should have now been merged into their respective
|
2020-10-24 23:57:45 +05:30
|
|
|
version (stable `X.Y` branch), which will trigger another pipeline. At this point,
|
2019-12-26 22:10:19 +05:30
|
|
|
you need to only babysit the pipelines and make sure they don't fail:
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
1. Check the [pipelines page](https://gitlab.com/gitlab-org/gitlab-docs/pipelines)
|
2019-12-26 22:10:19 +05:30
|
|
|
and make sure all stable branches have green pipelines.
|
|
|
|
1. After all the pipelines of the online versions succeed, merge the release merge request.
|
2020-10-24 23:57:45 +05:30
|
|
|
1. Finally, run the
|
|
|
|
[`Build docker images weekly` pipeline](https://gitlab.com/gitlab-org/gitlab-docs/pipeline_schedules)
|
|
|
|
that will build the `:latest` and `:archives` Docker images.
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
Once the scheduled pipeline succeeds, the docs site will be deployed with all
|
|
|
|
new versions online.
|
|
|
|
|
|
|
|
## Troubleshooting
|
|
|
|
|
|
|
|
Releasing a new version is a long process that involves many moving parts.
|
|
|
|
|
|
|
|
### `test_internal_links_and_anchors` failing on dropdown merge requests
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
NOTE: **Note:**
|
|
|
|
We now pin versions in the `.gitlab-ci.yml` of the respective branch,
|
|
|
|
so the steps below are deprecated.
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
When [updating the dropdown for the stable versions](#4-update-the-dropdown-for-all-online-versions),
|
|
|
|
there may be cases where some links might fail. The process of how the
|
|
|
|
dropdown MRs are created have a caveat, and that is that the tests run by
|
|
|
|
pulling the master branches of all products, instead of the respective stable
|
|
|
|
ones.
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
In a real world scenario, the [Update 12.2 dropdown to match that of 12.4](https://gitlab.com/gitlab-org/gitlab-docs/-/merge_requests/604)
|
2019-12-26 22:10:19 +05:30
|
|
|
merge request failed because of the [`test_internal_links_and_anchors` test](https://gitlab.com/gitlab-org/gitlab-docs/-/jobs/328042431).
|
|
|
|
|
|
|
|
This happened because there has been a rename of a product (`gitlab-monitor` to `gitlab-exporter`)
|
|
|
|
and the old name was still referenced in the 12.2 docs. If the respective stable
|
|
|
|
branches for 12.2 were used, this wouldn't have failed, but as we can see from
|
|
|
|
the [`compile_dev` job](https://gitlab.com/gitlab-org/gitlab-docs/-/jobs/328042427),
|
|
|
|
the `master` branches were pulled.
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
To fix this, re-run the pipeline (`https://gitlab.com/gitlab-org/gitlab-docs/pipelines/new`)
|
2019-12-26 22:10:19 +05:30
|
|
|
for the `update-12-2-for-release-12-4` branch, by including the following environment variables:
|
|
|
|
|
|
|
|
- `BRANCH_CE` set to `12-2-stable`
|
|
|
|
- `BRANCH_EE` set to `12-2-stable-ee`
|
|
|
|
- `BRANCH_OMNIBUS` set to `12-2-stable`
|
|
|
|
- `BRANCH_RUNNER` set to `12-2-stable`
|
|
|
|
- `BRANCH_CHARTS` set to `2-2-stable`
|
|
|
|
|
|
|
|
This should make the MR pass.
|