Docs: When setting up Geo, disable automatic Postgres upgrades

Problem

In this section https://docs.gitlab.com/omnibus/development/managing-postgresql-versions/#known-issues:

Known issues

Geo uses streaming replication, which requires that the entire secondary database be resynced after a major PostgreSQL upgrade. This can cause hours or days of downtime, and as such, we do not recommend auto upgrades for Geo customers. Starting in 12.10, automatic PostgreSQL upgrades are disabled if Geo is detected.

This line is not true in all cases:

Starting in 12.10, automatic PostgreSQL upgrades are disabled if Geo is detected.

More details

https://gitlab.com/gitlab-org/omnibus-gitlab/-/blob/f66ff570e3f22dc4d79cf4b2014a1bb0b187cc7b/files/gitlab-ctl-commands/upgrade.rb#L337

Automatic upgrade of PG is only skipped if:

Proposal

Opt out of automatic PG upgrades when setting up Geo.

Implementation Guide

In all Geo docs where a GitLab-managed PostgreSQL server is configured:

  1. Add a step to opt out of automatic PG upgrades.
  2. Be sure to link to https://docs.gitlab.com/omnibus/settings/database/#opt-out-of-automatic-postgresql-upgrades.
  3. Be sure to link to https://docs.gitlab.com/omnibus/settings/database/#caveats-when-upgrading-postgresql-with-geo because it says why you should do this.
  4. Be sure to mention that you will then need to upgrade Postgres yourself when the time comes. In any complex environment, for example 3k and up, it is safer to do this as a completely separate operation than upgrading GitLab anyway. One small configuration mistake or surprise is harder to find and fix when it's in the middle of many steps rather than a few steps.

Some relevant docs: