Skip to content
代码片段 群组 项目
提交 e997f3b7 编辑于 作者: Evan Read's avatar Evan Read 提交者: Clayton Cornell
浏览文件

Refine Gitaly Cluster zero downtime instructions

上级 78f575a9
No related branches found
No related tags found
无相关合并请求
...@@ -518,6 +518,11 @@ For configuration information, see [Configure replication factor](praefect.md#co ...@@ -518,6 +518,11 @@ For configuration information, see [Configure replication factor](praefect.md#co
For more information on configuring Gitaly Cluster, see [Configure Gitaly Cluster](praefect.md). For more information on configuring Gitaly Cluster, see [Configure Gitaly Cluster](praefect.md).
### Upgrade Gitaly Cluster
To upgrade a Gitaly Cluster, follow the documentation for
[zero downtime upgrades](../../update/zero_downtime.md#gitaly-or-gitaly-cluster).
## Migrating to Gitaly Cluster ## Migrating to Gitaly Cluster
See the [Before deploying Gitaly Cluster](#before-deploying-gitaly-cluster) section before continuing. The basic process See the [Before deploying Gitaly Cluster](#before-deploying-gitaly-cluster) section before continuing. The basic process
......
...@@ -19,9 +19,6 @@ Configure Gitaly Cluster using either: ...@@ -19,9 +19,6 @@ Configure Gitaly Cluster using either:
Smaller GitLab installations may need only [Gitaly itself](index.md). Smaller GitLab installations may need only [Gitaly itself](index.md).
To upgrade a Gitaly Cluster, follow the documentation for
[zero downtime upgrades](../../update/zero_downtime.md#gitaly-cluster).
## Requirements ## Requirements
The minimum recommended configuration for a Gitaly Cluster requires: The minimum recommended configuration for a Gitaly Cluster requires:
......
...@@ -346,6 +346,9 @@ upgrade instructions. ...@@ -346,6 +346,9 @@ upgrade instructions.
### 13. Update Gitaly ### 13. Update Gitaly
If Gitaly is located on its own server, or you use Gitaly Cluster, see [Gitaly or Gitaly Cluster](zero_downtime.md#gitaly-or-gitaly-cluster)
on the Zero downtime upgrades page.
#### Compile Gitaly #### Compile Gitaly
```shell ```shell
......
...@@ -21,7 +21,7 @@ If you meet all the requirements above, follow these instructions in order. Ther ...@@ -21,7 +21,7 @@ If you meet all the requirements above, follow these instructions in order. Ther
| Deployment type | Description | | Deployment type | Description |
| --------------------------------------------------------------- | ------------------------------------------------ | | --------------------------------------------------------------- | ------------------------------------------------ |
| [Gitaly Cluster](#gitaly-cluster) | GitLab CE/EE using HA architecture for Gitaly Cluster | | [Gitaly or Gitaly Cluster](#gitaly-or-gitaly-cluster) | GitLab CE/EE using HA architecture for Gitaly or Gitaly Cluster |
| [Multi-node / PostgreSQL HA](#use-postgresql-ha) | GitLab CE/EE using HA architecture for PostgreSQL | | [Multi-node / PostgreSQL HA](#use-postgresql-ha) | GitLab CE/EE using HA architecture for PostgreSQL |
| [Multi-node / Redis HA](#use-redis-ha-using-sentinel) | GitLab CE/EE using HA architecture for Redis | | [Multi-node / Redis HA](#use-redis-ha-using-sentinel) | GitLab CE/EE using HA architecture for Redis |
| [Geo](#geo-deployment) | GitLab EE with Geo enabled | | [Geo](#geo-deployment) | GitLab EE with Geo enabled |
...@@ -176,21 +176,19 @@ load balancer to latest GitLab version. ...@@ -176,21 +176,19 @@ load balancer to latest GitLab version.
sudo gitlab-rake db:migrate sudo gitlab-rake db:migrate
``` ```
### Gitaly Cluster ### Gitaly or Gitaly Cluster
[Gitaly Cluster](../administration/gitaly/praefect.md) is built using Gitaly nodes can be located on their own server, either as part of a sharded setup, or as part of
Gitaly and the Praefect component. It has its own PostgreSQL database, independent of the rest of [Gitaly Cluster](../administration/gitaly/praefect.md).
the application.
Before you update the main GitLab application you need to update the Gitaly nodes Before you update the main GitLab application you must (in order):
and then Praefect.
**Gitaly nodes** 1. Upgrade the Gitaly nodes that reside on separate servers.
1. Upgrade Praefect if using Gitaly Cluster.
Upgrade the Gitaly nodes in your Gitaly cluster one at a time #### Upgrade Gitaly nodes
to ensure access to Git repositories is maintained.
Update the GitLab package: Upgrade the Gitaly nodes one at a time to ensure access to Git repositories is maintained:
```shell ```shell
# Debian/Ubuntu # Debian/Ubuntu
...@@ -202,61 +200,60 @@ sudo yum install gitlab-ee ...@@ -202,61 +200,60 @@ sudo yum install gitlab-ee
If you are a Community Edition user, replace `gitlab-ee` with `gitlab-ce` in the above command. If you are a Community Edition user, replace `gitlab-ee` with `gitlab-ce` in the above command.
**Praefect** #### Upgrade Praefect
Out of your Praefect nodes, pick one to be your Praefect deploy node. From the Praefect nodes, select one to be your Praefect deploy node. You install the new Omnibus package on the deploy
This is where you install the new Omnibus package first and run node first and run database migrations.
database migrations.
**Praefect deploy node** 1. On the **Praefect deploy node**:
- Create an empty file at `/etc/gitlab/skip-auto-reconfigure`. This prevents upgrades from running `gitlab-ctl reconfigure`, which by default automatically stops GitLab, runs all database migrations, and restarts GitLab: 1. Create an empty file at `/etc/gitlab/skip-auto-reconfigure`. This prevents upgrades from running `gitlab-ctl reconfigure`,
which by default automatically stops GitLab, runs all database migrations, and restarts GitLab:
```shell ```shell
sudo touch /etc/gitlab/skip-auto-reconfigure sudo touch /etc/gitlab/skip-auto-reconfigure
``` ```
- Ensure that `praefect['auto_migrate'] = true` is set in `/etc/gitlab/gitlab.rb`
**All Praefect nodes _excluding_ the Praefect deploy node** 1. Ensure that `praefect['auto_migrate'] = true` is set in `/etc/gitlab/gitlab.rb`.
- To prevent `reconfigure` from automatically running database migrations, ensure that `praefect['auto_migrate'] = false` is set in `/etc/gitlab/gitlab.rb`. 1. On all **remaining Praefect nodes**, ensure that `praefect['auto_migrate'] = false` is
set in `/etc/gitlab/gitlab.rb` to prevent `reconfigure` from automatically running database migrations.
**Praefect deploy node** 1. On the **Praefect deploy node**:
- Update the GitLab package: 1. Upgrade the GitLab package:
```shell ```shell
# Debian/Ubuntu # Debian/Ubuntu
sudo apt-get update && sudo apt-get install gitlab-ee sudo apt-get update && sudo apt-get install gitlab-ee
# Centos/RHEL # Centos/RHEL
sudo yum install gitlab-ee sudo yum install gitlab-ee
``` ```
If you are a Community Edition user, replace `gitlab-ee` with `gitlab-ce` in the above command. If you are a Community Edition user, replace `gitlab-ee` with `gitlab-ce` in the command above.
- To apply the Praefect database migrations and restart Praefect, run: 1. To apply the Praefect database migrations and restart Praefect, run:
```shell ```shell
sudo gitlab-ctl reconfigure sudo gitlab-ctl reconfigure
``` ```
**All Praefect nodes _excluding_ the Praefect deploy node** 1. On all **remaining Praefect nodes**:
- Update the GitLab package: 1. Upgrade the GitLab package:
```shell ```shell
sudo apt-get update && sudo apt-get install gitlab-ee sudo apt-get update && sudo apt-get install gitlab-ee
``` ```
If you are a Community Edition user, replace `gitlab-ee` with `gitlab-ce` in the above command. If you are a Community Edition user, replace `gitlab-ee` with `gitlab-ce` in the command above.
- Ensure nodes are running the latest code: 1. Ensure nodes are running the latest code:
```shell ```shell
sudo gitlab-ctl reconfigure sudo gitlab-ctl reconfigure
``` ```
### Use PostgreSQL HA ### Use PostgreSQL HA
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册