# GitLab Docs monthly release process
> 原文:[https://docs.gitlab.com/ee/development/documentation/site_architecture/release_process.html](https://docs.gitlab.com/ee/development/documentation/site_architecture/release_process.html)
* [How to build the images](#how-to-build-the-images)
* [Monthly release process](#monthly-release-process)
* [1\. Add the chart version](#1-add-the-chart-version)
* [2\. Create an image for a single version](#2-create-an-image-for-a-single-version)
* [3\. Create the release merge request](#3-create-the-release-merge-request)
* [4\. Update the dropdown for all online versions](#4-update-the-dropdown-for-all-online-versions)
* [5\. Merge the release merge request](#5-merge-the-release-merge-request)
* [Update an old Docker image with new upstream docs content](#update-an-old-docker-image-with-new-upstream-docs-content)
* [Porting new website changes to old versions](#porting-new-website-changes-to-old-versions)
* [Troubleshooting](#troubleshooting)
* [`test_internal_links_and_anchors` failing on dropdown merge requests](#test_internal_links_and_anchors-failing-on-dropdown-merge-requests)
# GitLab Docs monthly release process[](#gitlab-docs-monthly-release-process "Permalink")
[`dockerfiles`目錄](https://gitlab.com/gitlab-org/gitlab-docs/blob/master/dockerfiles/)包含構建和部署版本控制網站所需的所有 Dockerfile. 它在很大程度上受到了 Docker 的[Dockerfile 的](https://github.com/docker/docker.github.io/blob/06ed03db13895bfe867761b6fc2ad40acf6026dd/Dockerfile)啟發.
使用以下 Dockerfile.
| Dockerfile | Docker 鏡像 | Description |
| --- | --- | --- |
| [`Dockerfile.bootstrap`](https://gitlab.com/gitlab-org/gitlab-docs/blob/master/dockerfiles/Dockerfile.bootstrap) | `gitlab-docs:bootstrap` | 包含構建網站所需的所有依賴項. 如果寶石已更新且`Gemfile{,.lock}`更改,則必須重建映像. |
| [`Dockerfile.builder.onbuild`](https://gitlab.com/gitlab-org/gitlab-docs/blob/master/dockerfiles/Dockerfile.builder.onbuild) | `gitlab-docs:builder-onbuild` | 用于建立 docs 網站的基本圖片. 它使用`ONBUILD`執行所有步驟,并取決于`gitlab-docs:bootstrap` . |
| [`Dockerfile.nginx.onbuild`](https://gitlab.com/gitlab-org/gitlab-docs/blob/master/dockerfiles/Dockerfile.nginx.onbuild) | `gitlab-docs:nginx-onbuild` | 用于構建文檔檔案的基本映像. 它使用`ONBUILD`執行所有必需的步驟來復制檔案,并依賴于其父`Dockerfile.builder.onbuild` ,該父文件在構建單個文檔檔案時被調用(請參閱每個分支的`Dockerfile` . |
| [`Dockerfile.archives`](https://gitlab.com/gitlab-org/gitlab-docs/blob/master/dockerfiles/Dockerfile.archives) | `gitlab-docs:archives` | 在一個檔案中包含網站的所有版本. 它從一個位置中的每個版本復制所有生成的 HTML 文件. |
## How to build the images[](#how-to-build-the-images "Permalink")
盡管構建映像是通過 GitLab CI / CD 自動構建的,但是您可以在本地構建和標記所有工具映像:
1. 確保已[安裝 Docker](https://s0docs0docker0com.icopy.site/install/) .
2. 確保您位于`gitlab-docs`存儲庫的`dockerfiles/`目錄中.
3. 構建圖像:
```
docker build -t registry.gitlab.com/gitlab-org/gitlab-docs:bootstrap -f Dockerfile.bootstrap ../
docker build -t registry.gitlab.com/gitlab-org/gitlab-docs:builder-onbuild -f Dockerfile.builder.onbuild ../
docker build -t registry.gitlab.com/gitlab-org/gitlab-docs:nginx-onbuild -f Dockerfile.nginx.onbuild ../
```
對于每個圖像, [`.gitlab-ci.yml`](https://gitlab.com/gitlab-org/gitlab-docs/blob/master/.gitlab-ci.yml)的`images`階段下都有一個手動作業,可以隨意調用.
## Monthly release process[](#monthly-release-process "Permalink")
當 22 日發布新版本的 GitLab 時,我們需要創建相應的單個 Docker 映像,并更新一些文件,以使下拉列表正常工作.
### 1\. Add the chart version[](#1-add-the-chart-version "Permalink")
由于圖表使用的版本號不同于所有其他 GitLab 產品,因此我們需要添加一個[版本映射](https://docs.gitlab.com/charts/installation/version_mappings.html) :
1. 檢查是否為新的圖表版本[創建](https://gitlab.com/gitlab-org/charts/gitlab/-/branches)了[穩定的分支](https://gitlab.com/gitlab-org/charts/gitlab/-/branches) . 如果不確定或找不到,請在`#g_delivery`頻道中添加一行.
2. 確保您位于`gitlab-docs`存儲庫的根路徑中.
3. 打開`content/_data/chart_versions.yaml`并使用版本映射添加新的穩定分支版本. 請注意,僅需要`major.minor`版本.
4. 創建一個新的合并請求并將其合并.
**提示:**創建將來的映射可能很方便,因為它們已廣為人知. 在這種情況下,當發布新版本的 GitLab 時,您不必重復此第一步.
### 2\. Create an image for a single version[](#2-create-an-image-for-a-single-version "Permalink")
必須在發布合并請求之前創建單個 docs 版本,但這需要在為所有產品創建穩定分支之后發生.
1. 確保您位于`gitlab-docs`存儲庫的根路徑中.
2. 運行 Rake 任務以創建單個版本:
```
./bin/rake "release:single[12.0]"
```
應該已經創建了新的`Dockerfile.12.0`并且`.gitlab-ci.yml`應該將分支變量更新為新的分支. 他們將被自動提交.
3. 推送新創建的分支,但**不要創建合并請求** . 推送后, `image:docker-singe`作業將創建一個新的 Docker 映像,該映像標記有您在第一步中創建的分支名稱. 最后,該圖像將被上載到[Container Registry 中](https://gitlab.com/gitlab-org/gitlab-docs/container_registry) ,并且將在位于`https://gitlab.com/gitlab-org/gitlab-docs/-/environments/folders/registry`的`registry`環境文件夾下列出.開發人員訪問權限).
(可選)您可以通過構建映像并運行它來進行本地測試:
```
docker build -t docs:12.0 -f Dockerfile.12.0 .
docker run -it --rm -p 4000:4000 docs:12.0
```
訪問`http://localhost:4000/12.0/`以查看一切是否正常.
### 3\. Create the release merge request[](#3-create-the-release-merge-request "Permalink")
**Note:** To be [automated](https://gitlab.com/gitlab-org/gitlab-docs/-/issues/750).
現在是時候創建每月發布合并請求,添加新版本并輪換舊版本了:
1. 確保您位于`gitlab-docs`存儲庫的根路徑中.
2. 創建一個分支`release-XY` :
```
git checkout master
git checkout -b release-12-0
```
3. **輪換在線和離線版本:**
在任何給定時間,都有 4 個可瀏覽的在線版本:一個是從上游主分支(GitLab.com 的文檔)中提取的,另一個是三個最新的穩定版本.
編輯`content/_data/versions.yaml`并旋轉版本以反映新的更改:
* `online` :3 個最新的穩定版本.
* `offline` :所有以前的版本都以脫機存檔的形式提供.
4. **更新`:latest`和`:archives` Docker 映像:**
需要更新以下兩個 Dockerfile:
1. `dockerfiles/Dockerfile.archives`在列表頂部添加最新版本.
2. `Dockerfile.master`旋轉版本(最舊的被刪除,最新的被添加在列表的頂部).
5. 最后,應該總共更改了四個文件. 提交并使用"發布"模板推送以創建合并請求:
```
git add content/ Dockerfile.master dockerfiles/Dockerfile.archives
git commit -m "Release 12.0"
git push origin release-12-0
```
### 4\. Update the dropdown for all online versions[](#4-update-the-dropdown-for-all-online-versions "Permalink")
版本下拉列表采用"硬編碼"方式. 在構建站點時,它將查看`content/_data/versions.yaml`的內容,并基于此內容填充下拉列表. 因此,較舊的分支將具有不同的內容,這意味著下拉列表將在后面列出一個或多個版本. 請記住,下拉菜單的新更改包含在未合并的`release-XY`分支中.
The content of `content/_data/versions.yaml` needs to change for all online versions:
1. 運行 Rake 任務,該任務將創建更新下拉列表所需的所有各個合并請求,并將其設置為在管道成功后自動合并. `release-XY`分支需要在本地存在,并且您需要切換到該分支,否則 Rake 任務將失敗:
```
./bin/rake release:dropdowns
```
2. [訪問合并請求頁面](https://gitlab.com/gitlab-org/gitlab-docs/-/merge_requests?label_name[]=release)以檢查其管道是否通過,并在所有管道合并后繼續進行以下也是最后一步.
**提示:**萬一管道發生故障,請參閱[故障排除](#troubleshooting) .
### 5\. Merge the release merge request[](#5-merge-the-release-merge-request "Permalink")
下拉合并請求現在應該已經合并到各自的版本(穩定分支)中,這將觸發另一個管道. 在這一點上,您只需要照看管道,并確保它們不會失敗:
1. 檢查管道頁面: `https://gitlab.com/gitlab-org/gitlab-docs/pipelines` : `https://gitlab.com/gitlab-org/gitlab-docs/pipelines`并確保所有穩定的分支都具有綠色管道.
2. 聯機版本的所有管道成功后,請合并發布合并請求.
3. 最后,從`https://gitlab.com/gitlab-org/gitlab-docs/pipeline_schedules`運行`Build docker images weekly` Docker 映像管道,以構建`:latest`和`:archives` Docker 映像.
一旦計劃的管道成功,將在線部署所有新版本的 docs 網站.
## Update an old Docker image with new upstream docs content[](#update-an-old-docker-image-with-new-upstream-docs-content "Permalink")
如果對單個 Docker 映像中未包含的產品的任何穩定分支進行了任何更改,只需重新運行管道( `https://gitlab.com/gitlab-org/gitlab-docs/pipelines/new` )有問題的版本.
## Porting new website changes to old versions[](#porting-new-website-changes-to-old-versions "Permalink")
**警告:將**更改移植到較舊的分支機構可能會產生意想不到的影響,因為我們不斷更改網站的后端. 僅在知道自己在做什么并確保在本地進行測試時使用.
網站將不斷變化和完善. 為了將這些更改合并到穩定分支中,我們需要不時選擇某些更改.
如果這不可能或有很多更改,請將 master 合并到其中:
```
git branch 12.0
git fetch origin master
git merge origin/master
```
## Troubleshooting[](#troubleshooting "Permalink")
發布新版本是一個漫長的過程,涉及許多活動部件.
### `test_internal_links_and_anchors` failing on dropdown merge requests[](#test_internal_links_and_anchors-failing-on-dropdown-merge-requests "Permalink")
**注意:**我們現在將版本`.gitlab-ci.yml`在相應分支的`.gitlab-ci.yml`中,因此不建議使用以下步驟.
當[更新穩定版本的下拉列表時](#4-update-the-dropdown-for-all-online-versions) ,某些鏈接可能會失敗. 創建下拉式 MR 的過程有一個警告,那就是通過拉動所有產品的主分支而不是相應的穩定分支來運行測試.
在實際情況下,由于[`test_internal_links_and_anchors` test](https://gitlab.com/gitlab-org/gitlab-docs/-/jobs/328042431) [,導致與 12.4](https://gitlab.com/gitlab-org/gitlab-docs/-/merge_requests/604)合并請求[相匹配](https://gitlab.com/gitlab-org/gitlab-docs/-/merge_requests/604)的[Update 12.2 下拉列表](https://gitlab.com/gitlab-org/gitlab-docs/-/merge_requests/604)失敗.
發生這種情況是因為已經對產品進行了重命名( `gitlab-monitor`到`gitlab-exporter` ),而舊名稱仍在 12.2 文檔中引用. 如果使用了 12.2 的各個穩定分支,則不會失敗,但是從[`compile_dev`作業中](https://gitlab.com/gitlab-org/gitlab-docs/-/jobs/328042427)可以看出, `master`分支已被拉出.
要解決此問題, `https://gitlab.com/gitlab-org/gitlab-docs/pipelines/new`為`update-12-2-for-release-12-4`分支重新運行管道( `https://gitlab.com/gitlab-org/gitlab-docs/pipelines/new` ),以下環境變量:
* `BRANCH_CE`設置為`12-2-stable`
* `BRANCH_EE`設置為`12-2-stable-ee`
* `BRANCH_OMNIBUS`設置為`12-2-stable`
* `BRANCH_RUNNER`設置為`12-2-stable`
* `BRANCH_CHARTS`設置為`2-2-stable`
這應該使 MR 通過.
- GitLab Docs
- Installation
- Requirements
- GitLab cloud native Helm Chart
- Install GitLab with Docker
- Installation from source
- Install GitLab on Microsoft Azure
- Installing GitLab on Google Cloud Platform
- Installing GitLab on Amazon Web Services (AWS)
- Analytics
- Code Review Analytics
- Productivity Analytics
- Value Stream Analytics
- Kubernetes clusters
- Adding and removing Kubernetes clusters
- Adding EKS clusters
- Adding GKE clusters
- Group-level Kubernetes clusters
- Instance-level Kubernetes clusters
- Canary Deployments
- Cluster Environments
- Deploy Boards
- GitLab Managed Apps
- Crossplane configuration
- Cluster management project (alpha)
- Kubernetes Logs
- Runbooks
- Serverless
- Deploying AWS Lambda function using GitLab CI/CD
- Securing your deployed applications
- Groups
- Contribution Analytics
- Custom group-level project templates
- Epics
- Manage epics
- Group Import/Export
- Insights
- Issues Analytics
- Iterations
- Public access
- SAML SSO for GitLab.com groups
- SCIM provisioning using SAML SSO for GitLab.com groups
- Subgroups
- Roadmap
- Projects
- GitLab Secure
- Security Configuration
- Container Scanning
- Dependency Scanning
- Dependency List
- Static Application Security Testing (SAST)
- Secret Detection
- Dynamic Application Security Testing (DAST)
- GitLab Security Dashboard
- Offline environments
- Standalone Vulnerability pages
- Security scanner integration
- Badges
- Bulk editing issues and merge requests at the project level
- Code Owners
- Compliance
- License Compliance
- Compliance Dashboard
- Create a project
- Description templates
- Deploy Keys
- Deploy Tokens
- File finder
- Project integrations
- Integrations
- Atlassian Bamboo CI Service
- Bugzilla Service
- Custom Issue Tracker service
- Discord Notifications service
- Enabling emails on push
- GitHub project integration
- Hangouts Chat service
- Atlassian HipChat
- Irker IRC Gateway
- GitLab Jira integration
- Mattermost Notifications Service
- Mattermost slash commands
- Microsoft Teams service
- Mock CI Service
- Prometheus integration
- Redmine Service
- Slack Notifications Service
- Slack slash commands
- GitLab Slack application
- Webhooks
- YouTrack Service
- Insights
- Issues
- Crosslinking Issues
- Design Management
- Confidential issues
- Due dates
- Issue Boards
- Issue Data and Actions
- Labels
- Managing issues
- Milestones
- Multiple Assignees for Issues
- Related issues
- Service Desk
- Sorting and ordering issue lists
- Issue weight
- Associate a Zoom meeting with an issue
- Merge requests
- Allow collaboration on merge requests across forks
- Merge Request Approvals
- Browser Performance Testing
- How to create a merge request
- Cherry-pick changes
- Code Quality
- Load Performance Testing
- Merge Request dependencies
- Fast-forward merge requests
- Merge when pipeline succeeds
- Merge request conflict resolution
- Reverting changes
- Reviewing and managing merge requests
- Squash and merge
- Merge requests versions
- Draft merge requests
- Members of a project
- Migrating projects to a GitLab instance
- Import your project from Bitbucket Cloud to GitLab
- Import your project from Bitbucket Server to GitLab
- Migrating from ClearCase
- Migrating from CVS
- Import your project from FogBugz to GitLab
- Gemnasium
- Import your project from GitHub to GitLab
- Project importing from GitLab.com to your private GitLab instance
- Import your project from Gitea to GitLab
- Import your Jira project issues to GitLab
- Migrating from Perforce Helix
- Import Phabricator tasks into a GitLab project
- Import multiple repositories by uploading a manifest file
- Import project from repo by URL
- Migrating from SVN to GitLab
- Migrating from TFVC to Git
- Push Options
- Releases
- Repository
- Branches
- Git Attributes
- File Locking
- Git file blame
- Git file history
- Repository mirroring
- Protected branches
- Protected tags
- Push Rules
- Reduce repository size
- Signing commits with GPG
- Syntax Highlighting
- GitLab Web Editor
- Web IDE
- Requirements Management
- Project settings
- Project import/export
- Project access tokens (Alpha)
- Share Projects with other Groups
- Snippets
- Static Site Editor
- Wiki
- Project operations
- Monitor metrics for your CI/CD environment
- Set up alerts for Prometheus metrics
- Embedding metric charts within GitLab-flavored Markdown
- Embedding Grafana charts
- Using the Metrics Dashboard
- Dashboard YAML properties
- Metrics dashboard settings
- Panel types for dashboards
- Using Variables
- Templating variables for metrics dashboards
- Prometheus Metrics library
- Monitoring AWS Resources
- Monitoring HAProxy
- Monitoring Kubernetes
- Monitoring NGINX
- Monitoring NGINX Ingress Controller
- Monitoring NGINX Ingress Controller with VTS metrics
- Alert Management
- Error Tracking
- Tracing
- Incident Management
- GitLab Status Page
- Feature Flags
- GitLab CI/CD
- GitLab CI/CD pipeline configuration reference
- GitLab CI/CD include examples
- Introduction to CI/CD with GitLab
- Getting started with GitLab CI/CD
- How to enable or disable GitLab CI/CD
- Using SSH keys with GitLab CI/CD
- Migrating from CircleCI
- Migrating from Jenkins
- Auto DevOps
- Getting started with Auto DevOps
- Requirements for Auto DevOps
- Customizing Auto DevOps
- Stages of Auto DevOps
- Upgrading PostgreSQL for Auto DevOps
- Cache dependencies in GitLab CI/CD
- GitLab ChatOps
- Cloud deployment
- Docker integration
- Building Docker images with GitLab CI/CD
- Using Docker images
- Building images with kaniko and GitLab CI/CD
- GitLab CI/CD environment variables
- Predefined environment variables reference
- Where variables can be used
- Deprecated GitLab CI/CD variables
- Environments and deployments
- Protected Environments
- GitLab CI/CD Examples
- Test a Clojure application with GitLab CI/CD
- Using Dpl as deployment tool
- Testing a Phoenix application with GitLab CI/CD
- End-to-end testing with GitLab CI/CD and WebdriverIO
- DevOps and Game Dev with GitLab CI/CD
- Deploy a Spring Boot application to Cloud Foundry with GitLab CI/CD
- How to deploy Maven projects to Artifactory with GitLab CI/CD
- Testing PHP projects
- Running Composer and NPM scripts with deployment via SCP in GitLab CI/CD
- Test and deploy Laravel applications with GitLab CI/CD and Envoy
- Test and deploy a Python application with GitLab CI/CD
- Test and deploy a Ruby application with GitLab CI/CD
- Test and deploy a Scala application to Heroku
- GitLab CI/CD for external repositories
- Using GitLab CI/CD with a Bitbucket Cloud repository
- Using GitLab CI/CD with a GitHub repository
- GitLab Pages
- GitLab Pages
- GitLab Pages domain names, URLs, and baseurls
- Create a GitLab Pages website from scratch
- Custom domains and SSL/TLS Certificates
- GitLab Pages integration with Let's Encrypt
- GitLab Pages Access Control
- Exploring GitLab Pages
- Incremental Rollouts with GitLab CI/CD
- Interactive Web Terminals
- Optimizing GitLab for large repositories
- Metrics Reports
- CI/CD pipelines
- Pipeline Architecture
- Directed Acyclic Graph
- Multi-project pipelines
- Parent-child pipelines
- Pipelines for Merge Requests
- Pipelines for Merged Results
- Merge Trains
- Job artifacts
- Pipeline schedules
- Pipeline settings
- Triggering pipelines through the API
- Review Apps
- Configuring GitLab Runners
- GitLab CI services examples
- Using MySQL
- Using PostgreSQL
- Using Redis
- Troubleshooting CI/CD
- GitLab Package Registry
- GitLab Container Registry
- Dependency Proxy
- GitLab Composer Repository
- GitLab Conan Repository
- GitLab Maven Repository
- GitLab NPM Registry
- GitLab NuGet Repository
- GitLab PyPi Repository
- API Docs
- API resources
- .gitignore API
- GitLab CI YMLs API
- Group and project access requests API
- Appearance API
- Applications API
- Audit Events API
- Avatar API
- Award Emoji API
- Project badges API
- Group badges API
- Branches API
- Broadcast Messages API
- Project clusters API
- Group clusters API
- Instance clusters API
- Commits API
- Container Registry API
- Custom Attributes API
- Dashboard annotations API
- Dependencies API
- Deploy Keys API
- Deployments API
- Discussions API
- Dockerfiles API
- Environments API
- Epics API
- Events
- Feature Flags API
- Feature flag user lists API
- Freeze Periods API
- Geo Nodes API
- Group Activity Analytics API
- Groups API
- Import API
- Issue Boards API
- Group Issue Boards API
- Issues API
- Epic Issues API
- Issues Statistics API
- Jobs API
- Keys API
- Labels API
- Group Labels API
- License
- Licenses API
- Issue links API
- Epic Links API
- Managed Licenses API
- Markdown API
- Group and project members API
- Merge request approvals API
- Merge requests API
- Project milestones API
- Group milestones API
- Namespaces API
- Notes API
- Notification settings API
- Packages API
- Pages domains API
- Pipeline schedules API
- Pipeline triggers API
- Pipelines API
- Project Aliases API
- Project import/export API
- Project repository storage moves API
- Project statistics API
- Project templates API
- Projects API
- Protected branches API
- Protected tags API
- Releases API
- Release links API
- Repositories API
- Repository files API
- Repository submodules API
- Resource label events API
- Resource milestone events API
- Resource weight events API
- Runners API
- SCIM API
- Search API
- Services API
- Application settings API
- Sidekiq Metrics API
- Snippets API
- Project snippets
- Application statistics API
- Suggest Changes API
- System hooks API
- Tags API
- Todos API
- Users API
- Project-level Variables API
- Group-level Variables API
- Version API
- Vulnerabilities API
- Vulnerability Findings API
- Wikis API
- GraphQL API
- Getting started with GitLab GraphQL API
- GraphQL API Resources
- API V3 to API V4
- Validate the .gitlab-ci.yml (API)
- User Docs
- Abuse reports
- User account
- Active sessions
- Deleting a User account
- Permissions
- Personal access tokens
- Profile preferences
- Threads
- GitLab and SSH keys
- GitLab integrations
- Git
- GitLab.com settings
- Infrastructure as code with Terraform and GitLab
- GitLab keyboard shortcuts
- GitLab Markdown
- AsciiDoc
- GitLab Notification Emails
- GitLab Quick Actions
- Autocomplete characters
- Reserved project and group names
- Search through GitLab
- Advanced Global Search
- Advanced Syntax Search
- Time Tracking
- GitLab To-Do List
- Administrator Docs
- Reference architectures
- Reference architecture: up to 1,000 users
- Reference architecture: up to 2,000 users
- Reference architecture: up to 3,000 users
- Reference architecture: up to 5,000 users
- Reference architecture: up to 10,000 users
- Reference architecture: up to 25,000 users
- Reference architecture: up to 50,000 users
- Troubleshooting a reference architecture set up
- Working with the bundled Consul service
- Configuring PostgreSQL for scaling
- Configuring GitLab application (Rails)
- Load Balancer for multi-node GitLab
- Configuring a Monitoring node for Scaling and High Availability
- NFS
- Working with the bundled PgBouncer service
- Configuring Redis for scaling
- Configuring Sidekiq
- Admin Area settings
- Continuous Integration and Deployment Admin settings
- Custom instance-level project templates
- Diff limits administration
- Enable and disable GitLab features deployed behind feature flags
- Geo nodes Admin Area
- GitLab Pages administration
- Health Check
- Job logs
- Labels administration
- Log system
- PlantUML & GitLab
- Repository checks
- Repository storage paths
- Repository storage types
- Account and limit settings
- Service templates
- System hooks
- Changing your time zone
- Uploads administration
- Abuse reports
- Activating and deactivating users
- Audit Events
- Blocking and unblocking users
- Broadcast Messages
- Elasticsearch integration
- Gitaly
- Gitaly Cluster
- Gitaly reference
- Monitoring GitLab
- Monitoring GitLab with Prometheus
- Performance Bar
- Usage statistics
- Object Storage
- Performing Operations in GitLab
- Cleaning up stale Redis sessions
- Fast lookup of authorized SSH keys in the database
- Filesystem Performance Benchmarking
- Moving repositories managed by GitLab
- Run multiple Sidekiq processes
- Sidekiq MemoryKiller
- Switching to Puma
- Understanding Unicorn and unicorn-worker-killer
- User lookup via OpenSSH's AuthorizedPrincipalsCommand
- GitLab Package Registry administration
- GitLab Container Registry administration
- Replication (Geo)
- Geo database replication
- Geo with external PostgreSQL instances
- Geo configuration
- Using a Geo Server
- Updating the Geo nodes
- Geo with Object storage
- Docker Registry for a secondary node
- Geo for multiple nodes
- Geo security review (Q&A)
- Location-aware Git remote URL with AWS Route53
- Tuning Geo
- Removing secondary Geo nodes
- Geo data types support
- Geo Frequently Asked Questions
- Geo Troubleshooting
- Geo validation tests
- Disaster Recovery (Geo)
- Disaster recovery for planned failover
- Bring a demoted primary node back online
- Automatic background verification
- Rake tasks
- Back up and restore GitLab
- Clean up
- Namespaces
- Maintenance Rake tasks
- Geo Rake Tasks
- GitHub import
- Import bare repositories
- Integrity check Rake task
- LDAP Rake tasks
- Listing repository directories
- Praefect Rake tasks
- Project import/export administration
- Repository storage Rake tasks
- Generate sample Prometheus data
- Uploads migrate Rake tasks
- Uploads sanitize Rake tasks
- User management
- Webhooks administration
- X.509 signatures
- Server hooks
- Static objects external storage
- Updating GitLab
- GitLab release and maintenance policy
- Security
- Password Storage
- Custom password length limits
- Restrict allowed SSH key technologies and minimum length
- Rate limits
- Webhooks and insecure internal web services
- Information exclusivity
- How to reset your root password
- How to unlock a locked user from the command line
- User File Uploads
- How we manage the TLS protocol CRIME vulnerability
- User email confirmation at sign-up
- Security of running jobs
- Proxying assets
- CI/CD Environment Variables
- Contributor and Development Docs
- Contribute to GitLab
- Community members & roles
- Implement design & UI elements
- Issues workflow
- Merge requests workflow
- Code Review Guidelines
- Style guides
- GitLab Architecture Overview
- CI/CD development documentation
- Database guides
- Database Review Guidelines
- Database Review Guidelines
- Migration Style Guide
- What requires downtime?
- Understanding EXPLAIN plans
- Rake tasks for developers
- Mass inserting Rails models
- GitLab Documentation guidelines
- Documentation Style Guide
- Documentation structure and template
- Documentation process
- Documentation site architecture
- Global navigation
- GitLab Docs monthly release process
- Telemetry Guide
- Usage Ping Guide
- Snowplow Guide
- Experiment Guide
- Feature flags in development of GitLab
- Feature flags process
- Developing with feature flags
- Feature flag controls
- Document features deployed behind feature flags
- Frontend Development Guidelines
- Accessibility & Readability
- Ajax
- Architecture
- Axios
- Design Patterns
- Frontend Development Process
- DropLab
- Emojis
- Filter
- Frontend FAQ
- GraphQL
- Icons and SVG Illustrations
- InputSetter
- Performance
- Principles
- Security
- Tooling
- Vuex
- Vue
- Geo (development)
- Geo self-service framework (alpha)
- Gitaly developers guide
- GitLab development style guides
- API style guide
- Go standards and style guidelines
- GraphQL API style guide
- Guidelines for shell commands in the GitLab codebase
- HTML style guide
- JavaScript style guide
- Migration Style Guide
- Newlines style guide
- Python Development Guidelines
- SCSS style guide
- Shell scripting standards and style guidelines
- Sidekiq debugging
- Sidekiq Style Guide
- SQL Query Guidelines
- Vue.js style guide
- Instrumenting Ruby code
- Testing standards and style guidelines
- Flaky tests
- Frontend testing standards and style guidelines
- GitLab tests in the Continuous Integration (CI) context
- Review Apps
- Smoke Tests
- Testing best practices
- Testing levels
- Testing Rails migrations at GitLab
- Testing Rake tasks
- End-to-end Testing
- Beginner's guide to writing end-to-end tests
- End-to-end testing Best Practices
- Dynamic Element Validation
- Flows in GitLab QA
- Page objects in GitLab QA
- Resource class in GitLab QA
- Style guide for writing end-to-end tests
- Testing with feature flags
- Translate GitLab to your language
- Internationalization for GitLab
- Translating GitLab
- Proofread Translations
- Merging translations from CrowdIn
- Value Stream Analytics development guide
- GitLab subscription
- Activate GitLab EE with a license