diff options
author | Evan Read <eread@gitlab.com> | 2019-08-05 06:45:44 +0000 |
---|---|---|
committer | Evan Read <eread@gitlab.com> | 2019-08-05 06:45:44 +0000 |
commit | 15c2e501eab61f4827b463764fa4d40341131af0 (patch) | |
tree | 1098d2cce513d2dacdc813469d6fa9bf8c366f96 | |
parent | 214cf9ac5f4c1bf2154df552ac7849701b0c8e18 (diff) | |
parent | bcfef87afc08a64d460315d2f80c7cd3be0f0b8c (diff) | |
download | gitlab-ce-15c2e501eab61f4827b463764fa4d40341131af0.tar.gz |
Merge branch 'brodock/fix-geo-upgrade-docs' into 'master'
Geo: Some update instructions should be for 9.0.x only
See merge request gitlab-org/gitlab-ce!31345
-rw-r--r-- | doc/administration/geo/replication/updating_the_geo_nodes.md | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/doc/administration/geo/replication/updating_the_geo_nodes.md b/doc/administration/geo/replication/updating_the_geo_nodes.md index 550b3b07a95..39174780e24 100644 --- a/doc/administration/geo/replication/updating_the_geo_nodes.md +++ b/doc/administration/geo/replication/updating_the_geo_nodes.md @@ -10,10 +10,23 @@ all you need to do is update GitLab itself: 1. Log into each node (**primary** and **secondary** nodes). 1. [Update GitLab][update]. -1. [Update tracking database on **secondary** node](#update-tracking-database-on-secondary-node) when - the tracking database is enabled. 1. [Test](#check-status-after-updating) **primary** and **secondary** nodes, and check version in each. +### Check status after updating + +Now that the update process is complete, you may want to check whether +everything is working correctly: + +1. Run the Geo raketask on all nodes, everything should be green: + + ```sh + sudo gitlab-rake gitlab:geo:check + ``` + +1. Check the **primary** node's Geo dashboard for any errors. +1. Test the data replication by pushing code to the **primary** node and see if it + is received by **secondary** nodes. + ## Upgrading to GitLab 12.1 By default, GitLab 12.1 will attempt to automatically upgrade the embedded PostgreSQL server to 10.7 from 9.6. Please see [the omnibus documentation](https://docs.gitlab.com/omnibus/settings/database.html#upgrading-a-geo-instance) for the recommended procedure. @@ -419,22 +432,7 @@ is prepended with the relevant node for better clarity: sudo gitlab-ctl start ``` -## Check status after updating - -Now that the update process is complete, you may want to check whether -everything is working correctly: - -1. Run the Geo raketask on all nodes, everything should be green: - - ```sh - sudo gitlab-rake gitlab:geo:check - ``` - -1. Check the **primary** node's Geo dashboard for any errors. -1. Test the data replication by pushing code to the **primary** node and see if it - is received by **secondary** nodes. - -## Update tracking database on **secondary** node +### Update tracking database on **secondary** node After updating a **secondary** node, you might need to run migrations on the tracking database. The tracking database was added in GitLab 9.1, |