summaryrefslogtreecommitdiff
path: root/lib/gitlab/config_checker/external_database_checker.rb
blob: a56f24136159eb676e62555260f2d132cb9f0c92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

module Gitlab
  module ConfigChecker
    module ExternalDatabaseChecker
      extend self

      def check
        return [] if Gitlab::Database.main.postgresql_minimum_supported_version?

        [
          {
            type: 'warning',
            message: _('You are using PostgreSQL %{pg_version_current}, but PostgreSQL ' \
                       '%{pg_version_minimum} is required for this version of GitLab. ' \
                       'Please upgrade your environment to a supported PostgreSQL version, ' \
                       'see %{pg_requirements_url} for details.') % {
                                                                      pg_version_current: Gitlab::Database.main.version,
                                                                      pg_version_minimum: Gitlab::Database::MINIMUM_POSTGRES_VERSION,
                                                                      pg_requirements_url: '<a href="https://docs.gitlab.com/ee/install/requirements.html#database">database requirements</a>'
                                                                    }
          }
        ]
      end
    end
  end
end