1_settings.rb 37.8 KB
Newer Older
K
Kamil Trzciński 已提交
1
require_relative '../settings'
2
require_relative '../object_store_settings'
3
require_relative '../smime_signature_settings'
R
Riyad Preukschas 已提交
4 5 6

# Default settings
Settings['ldap'] ||= Settingslogic.new({})
7
Settings.ldap['enabled'] = false if Settings.ldap['enabled'].nil?
8
Settings.ldap['prevent_ldap_sign_in'] = false if Settings.ldap['prevent_ldap_sign_in'].blank?
9

10 11 12 13 14 15 16
Gitlab.ee do
  Settings.ldap['sync_time'] = 3600 if Settings.ldap['sync_time'].nil?
  Settings.ldap['schedule_sync_daily'] = 1 if Settings.ldap['schedule_sync_daily'].nil?
  Settings.ldap['schedule_sync_hour'] = 1 if Settings.ldap['schedule_sync_hour'].nil?
  Settings.ldap['schedule_sync_minute'] = 30 if Settings.ldap['schedule_sync_minute'].nil?
end

17 18 19
# backwards compatibility, we only have one host
if Settings.ldap['enabled'] || Rails.env.test?
  if Settings.ldap['host'].present?
20 21
    # We detected old LDAP configuration syntax. Update the config to make it
    # look like it was entered with the new syntax.
22
    server = Settings.ldap.except('sync_time')
23
    Settings.ldap['servers'] = {
24
      'main' => server
25
    }
26 27
  end

28
  Settings.ldap['servers'].each do |key, server|
M
Michael Kozono 已提交
29 30
    server = Settingslogic.new(server)

31
    server['label'] ||= 'LDAP'
32
    server['timeout'] ||= 10.seconds
33
    server['block_auto_created_users'] = false if server['block_auto_created_users'].nil?
34
    server['allow_username_or_email_login'] = false if server['allow_username_or_email_login'].nil?
35
    server['smartcard_auth'] = false unless %w[optional required].include?(server['smartcard_auth'])
36
    server['active_directory'] = true if server['active_directory'].nil?
D
Douwe Maan 已提交
37
    server['attributes'] = {} if server['attributes'].nil?
38
    server['lowercase_usernames'] = false if server['lowercase_usernames'].nil?
39
    server['provider_name'] ||= "ldap#{key}".downcase
40
    server['provider_class'] = OmniAuth::Utils.camelize(server['provider_name'])
41 42
    server['external_groups'] = [] if server['external_groups'].nil?
    server['sync_ssh_keys'] = 'sshPublicKey' if server['sync_ssh_keys'].to_s == 'true'
43 44 45 46 47

    # For backwards compatibility
    server['encryption'] ||= server['method']
    server['encryption'] = 'simple_tls' if server['encryption'] == 'ssl'
    server['encryption'] = 'start_tls' if server['encryption'] == 'tls'
M
Michael Kozono 已提交
48

49 50 51 52 53
    # Certificate verification was added in 9.4.2, and defaulted to false for
    # backwards-compatibility.
    #
    # Since GitLab 10.0, verify_certificates defaults to true for security.
    server['verify_certificates'] = true if server['verify_certificates'].nil?
M
Michael Kozono 已提交
54

55 56 57 58 59
    # Expose ability to set `tls_options` directly. Deprecate `ca_file` and
    # `ssl_version` in favor of `tls_options` hash option.
    server['tls_options'] ||= {}

    if server['ssl_version'] || server['ca_file']
M
Mayra Cabrera 已提交
60
      Rails.logger.warn 'DEPRECATED: LDAP options `ssl_version` and `ca_file` should be nested within `tls_options`' # rubocop:disable Gitlab/RailsLogger
61 62 63 64 65 66 67 68 69 70 71 72
    end

    if server['ssl_version']
      server['tls_options']['ssl_version'] ||= server['ssl_version']
      server.delete('ssl_version')
    end

    if server['ca_file']
      server['tls_options']['ca_file'] ||= server['ca_file']
      server.delete('ca_file')
    end

M
Michael Kozono 已提交
73
    Settings.ldap['servers'][key] = server
74 75
  end
end
R
Riyad Preukschas 已提交
76

77 78 79 80
Gitlab.ee do
  Settings['smartcard'] ||= Settingslogic.new({})
  Settings.smartcard['enabled'] = false if Settings.smartcard['enabled'].nil?
  Settings.smartcard['client_certificate_required_port'] = 3444 if Settings.smartcard['client_certificate_required_port'].nil?
81
  Settings.smartcard['required_for_git_access'] = false if Settings.smartcard['required_for_git_access'].nil?
82
  Settings.smartcard['san_extensions'] = false if Settings.smartcard['san_extensions'].nil?
83 84
end

R
Riyad Preukschas 已提交
85
Settings['omniauth'] ||= Settingslogic.new({})
N
Nick Thomas 已提交
86
Settings.omniauth['enabled'] = true if Settings.omniauth['enabled'].nil?
87
Settings.omniauth['auto_sign_in_with_provider'] = false if Settings.omniauth['auto_sign_in_with_provider'].nil?
88
Settings.omniauth['allow_single_sign_on'] = false if Settings.omniauth['allow_single_sign_on'].nil?
89
Settings.omniauth['allow_bypass_two_factor'] = false if Settings.omniauth['allow_bypass_two_factor'].nil?
90
Settings.omniauth['external_providers'] = [] if Settings.omniauth['external_providers'].nil?
91 92
Settings.omniauth['block_auto_created_users'] = true if Settings.omniauth['block_auto_created_users'].nil?
Settings.omniauth['auto_link_ldap_user'] = false if Settings.omniauth['auto_link_ldap_user'].nil?
93
Settings.omniauth['auto_link_saml_user'] = false if Settings.omniauth['auto_link_saml_user'].nil?
94 95 96 97 98 99 100 101 102 103 104 105 106 107

Settings.omniauth['sync_profile_from_provider'] = false if Settings.omniauth['sync_profile_from_provider'].nil?
Settings.omniauth['sync_profile_attributes'] = ['email'] if Settings.omniauth['sync_profile_attributes'].nil?

# Handle backwards compatibility with merge request 11268
if Settings.omniauth['sync_email_from_provider']
  if Settings.omniauth['sync_profile_from_provider'].is_a?(Array)
    Settings.omniauth['sync_profile_from_provider'] |= [Settings.omniauth['sync_email_from_provider']]
  elsif !Settings.omniauth['sync_profile_from_provider']
    Settings.omniauth['sync_profile_from_provider'] = [Settings.omniauth['sync_email_from_provider']]
  end

  Settings.omniauth['sync_profile_attributes'] |= ['email'] unless Settings.omniauth['sync_profile_attributes'] == true
end
108

109
Settings.omniauth['providers'] ||= []
T
tduehr 已提交
110 111 112 113
Settings.omniauth['cas3'] ||= Settingslogic.new({})
Settings.omniauth.cas3['session_duration'] ||= 8.hours
Settings.omniauth['session_tickets'] ||= Settingslogic.new({})
Settings.omniauth.session_tickets['cas3'] = 'ticket'
R
Riyad Preukschas 已提交
114

115 116 117
# Fill out omniauth-gitlab settings. It is needed for easy set up GHE or GH by just specifying url.

github_default_url = "https://github.com"
118
github_settings = Settings.omniauth['providers'].find { |provider| provider["name"] == "github" }
119 120 121 122 123 124 125 126 127 128

if github_settings
  # For compatibility with old config files (before 7.8)
  # where people dont have url in github settings
  if github_settings['url'].blank?
    github_settings['url'] = github_default_url
  end

  github_settings["args"] ||= Settingslogic.new({})

D
Douwe Maan 已提交
129 130 131 132 133 134 135 136 137 138
  github_settings["args"]["client_options"] =
    if github_settings["url"].include?(github_default_url)
      OmniAuth::Strategies::GitHub.default_options[:client_options]
    else
      {
        "site"          => File.join(github_settings["url"], "api/v3"),
        "authorize_url" => File.join(github_settings["url"], "login/oauth/authorize"),
        "token_url"     => File.join(github_settings["url"], "login/oauth/access_token")
      }
    end
139
end
140

141 142 143 144 145 146 147 148 149
# SAML should be enabled for the tests automatically, but only for EE.
saml_provider_enabled = Settings.omniauth.providers.any? do |provider|
  provider['name'] == 'group_saml'
end

if Gitlab.ee? && Rails.env.test? && !saml_provider_enabled
  Settings.omniauth.providers << Settingslogic.new({ 'name' => 'group_saml' })
end

150
Settings['shared'] ||= Settingslogic.new({})
151
Settings.shared['path'] = Settings.absolute(Settings.shared['path'] || "shared")
152

153
Settings['issues_tracker'] ||= {}
154

155 156 157
#
# GitLab
#
R
Riyad Preukschas 已提交
158
Settings['gitlab'] ||= Settingslogic.new({})
G
Gosia Ksionek 已提交
159
Settings.gitlab['default_project_creation'] ||= ::Gitlab::Access::DEVELOPER_MAINTAINER_PROJECT_ACCESS
160
Settings.gitlab['default_project_deletion_protection'] ||= false
161
Settings.gitlab['default_projects_limit'] ||= 100000
162
Settings.gitlab['default_branch_protection'] ||= 2
163
Settings.gitlab['default_can_create_group'] = true if Settings.gitlab['default_can_create_group'].nil?
164
Settings.gitlab['default_theme'] = Gitlab::Themes::APPLICATION_DEFAULT if Settings.gitlab['default_theme'].nil?
165 166
Settings.gitlab['host'] ||= ENV['GITLAB_HOST'] || 'localhost'
Settings.gitlab['ssh_host'] ||= Settings.gitlab.host
167
Settings.gitlab['https']        = false if Settings.gitlab['https'].nil?
168
Settings.gitlab['port']       ||= ENV['GITLAB_PORT'] || (Settings.gitlab.https ? 443 : 80)
169
Settings.gitlab['relative_url_root'] ||= ENV['RAILS_RELATIVE_URL_ROOT'] || ''
170 171
# / is not a valid relative URL root
Settings.gitlab['relative_url_root']   = '' if Settings.gitlab['relative_url_root'] == '/'
172
Settings.gitlab['protocol'] ||= Settings.gitlab.https ? "https" : "http"
173
Settings.gitlab['email_enabled'] ||= true if Settings.gitlab['email_enabled'].nil?
174 175 176
Settings.gitlab['email_from'] ||= ENV['GITLAB_EMAIL_FROM'] || "gitlab@#{Settings.gitlab.host}"
Settings.gitlab['email_display_name'] ||= ENV['GITLAB_EMAIL_DISPLAY_NAME'] || 'GitLab'
Settings.gitlab['email_reply_to'] ||= ENV['GITLAB_EMAIL_REPLY_TO'] || "noreply@#{Settings.gitlab.host}"
F
Fu Xu 已提交
177
Settings.gitlab['email_subject_suffix'] ||= ENV['GITLAB_EMAIL_SUBJECT_SUFFIX'] || ""
178
Settings.gitlab['email_smime'] = SmimeSignatureSettings.parse(Settings.gitlab['email_smime'])
179 180 181 182
Settings.gitlab['base_url'] ||= Settings.__send__(:build_base_gitlab_url)
Settings.gitlab['url'] ||= Settings.__send__(:build_gitlab_url)
Settings.gitlab['user'] ||= 'git'
Settings.gitlab['user_home'] ||= begin
183 184 185 186
  Etc.getpwnam(Settings.gitlab['user']).dir
rescue ArgumentError # no user configured
  '/home/' + Settings.gitlab['user']
end
187
Settings.gitlab['time_zone'] ||= nil
D
Dmitriy Zaporozhets 已提交
188
Settings.gitlab['signup_enabled'] ||= true if Settings.gitlab['signup_enabled'].nil?
189
Settings.gitlab['signin_enabled'] ||= true if Settings.gitlab['signin_enabled'].nil?
190
Settings.gitlab['restricted_visibility_levels'] = Settings.__send__(:verify_constant_array, Gitlab::VisibilityLevel, Settings.gitlab['restricted_visibility_levels'], [])
191
Settings.gitlab['username_changing_enabled'] = true if Settings.gitlab['username_changing_enabled'].nil?
192
Settings.gitlab['issue_closing_pattern'] = '\b((?:[Cc]los(?:e[sd]?|ing)|\b[Ff]ix(?:e[sd]|ing)?|\b[Rr]esolv(?:e[sd]?|ing)|\b[Ii]mplement(?:s|ed|ing)?)(:?) +(?:(?:issues? +)?%{issue_ref}(?:(?: *,? +and +| *,? *)?)|([A-Z][A-Z0-9_]+-\d+))+)' if Settings.gitlab['issue_closing_pattern'].nil?
193
Settings.gitlab['default_projects_features'] ||= {}
194
Settings.gitlab['webhook_timeout'] ||= 10
195
Settings.gitlab['graphql_timeout'] ||= 30
196
Settings.gitlab['max_attachment_size'] ||= 10
197
Settings.gitlab['session_expire_delay'] ||= 10080
198
Settings.gitlab['unauthenticated_session_expire_delay'] ||= 2.hours.to_i
199 200 201
Settings.gitlab.default_projects_features['issues']             = true if Settings.gitlab.default_projects_features['issues'].nil?
Settings.gitlab.default_projects_features['merge_requests']     = true if Settings.gitlab.default_projects_features['merge_requests'].nil?
Settings.gitlab.default_projects_features['wiki']               = true if Settings.gitlab.default_projects_features['wiki'].nil?
202
Settings.gitlab.default_projects_features['snippets']           = true if Settings.gitlab.default_projects_features['snippets'].nil?
203 204
Settings.gitlab.default_projects_features['builds']             = true if Settings.gitlab.default_projects_features['builds'].nil?
Settings.gitlab.default_projects_features['container_registry'] = true if Settings.gitlab.default_projects_features['container_registry'].nil?
205
Settings.gitlab.default_projects_features['visibility_level']   = Settings.__send__(:verify_constant, Gitlab::VisibilityLevel, Settings.gitlab.default_projects_features['visibility_level'], Gitlab::VisibilityLevel::PRIVATE)
206
Settings.gitlab['domain_whitelist'] ||= []
207
Settings.gitlab['import_sources'] ||= Gitlab::ImportSources.values
208
Settings.gitlab['trusted_proxies'] ||= []
209
Settings.gitlab['content_security_policy'] ||= Gitlab::ContentSecurityPolicy::ConfigLoader.default_settings_hash
210
Settings.gitlab['no_todos_messages'] ||= YAML.load_file(Rails.root.join('config', 'no_todos_messages.yml'))
I
Imre Farkas 已提交
211
Settings.gitlab['impersonation_enabled'] ||= true if Settings.gitlab['impersonation_enabled'].nil?
212
Settings.gitlab['usage_ping_enabled'] = true if Settings.gitlab['usage_ping_enabled'].nil?
213
Settings.gitlab['max_request_duration_seconds'] ||= 57
R
Riyad Preukschas 已提交
214

215 216 217 218 219 220
Gitlab.ee do
  Settings.gitlab['mirror_max_delay'] ||= 300
  Settings.gitlab['mirror_max_capacity'] ||= 30
  Settings.gitlab['mirror_capacity_threshold'] ||= 15
end

221 222 223 224 225 226 227
#
# Elasticseacrh
#
Gitlab.ee do
  Settings['elasticsearch'] ||= Settingslogic.new({})
  Settings.elasticsearch['enabled'] = false if Settings.elasticsearch['enabled'].nil?
  Settings.elasticsearch['url'] = ENV['ELASTIC_URL'] || "http://localhost:9200"
L
Lin Jen-Shin 已提交
228
  Settings.elasticsearch['indexer_path'] ||= Gitlab::Utils.which('gitlab-elasticsearch-indexer')
229 230
end

V
Valery Sizov 已提交
231 232 233 234
#
# CI
#
Settings['gitlab_ci'] ||= Settingslogic.new({})
235 236 237
Settings.gitlab_ci['shared_runners_enabled'] = true if Settings.gitlab_ci['shared_runners_enabled'].nil?
Settings.gitlab_ci['all_broken_builds']     = true if Settings.gitlab_ci['all_broken_builds'].nil?
Settings.gitlab_ci['add_pusher']            = false if Settings.gitlab_ci['add_pusher'].nil?
238
Settings.gitlab_ci['builds_path']           = Settings.absolute(Settings.gitlab_ci['builds_path'] || "builds/")
239
Settings.gitlab_ci['url']                 ||= Settings.__send__(:build_gitlab_ci_url)
V
Valery Sizov 已提交
240

D
Douwe Maan 已提交
241 242 243
#
# Reply by email
#
244
Settings['incoming_email'] ||= Settingslogic.new({})
245
Settings.incoming_email['enabled'] = false if Settings.incoming_email['enabled'].nil?
D
Douwe Maan 已提交
246

K
Kamil Trzcinski 已提交
247 248 249 250 251
#
# Build Artifacts
#
Settings['artifacts'] ||= Settingslogic.new({})
Settings.artifacts['enabled']      = true if Settings.artifacts['enabled'].nil?
252 253 254 255
Settings.artifacts['storage_path'] = Settings.absolute(Settings.artifacts.values_at('path', 'storage_path').compact.first || File.join(Settings.shared['path'], "artifacts"))
# Settings.artifact['path'] is deprecated, use `storage_path` instead
Settings.artifacts['path']         = Settings.artifacts['storage_path']
Settings.artifacts['max_size'] ||= 100 # in megabytes
256
Settings.artifacts['object_store'] = ObjectStoreSettings.parse(Settings.artifacts['object_store'])
K
Kamil Trzcinski 已提交
257

258 259 260 261
#
# Registry
#
Settings['registry'] ||= Settingslogic.new({})
262 263 264 265 266 267 268
Settings.registry['enabled'] ||= false
Settings.registry['host'] ||= "example.com"
Settings.registry['port'] ||= nil
Settings.registry['api_url'] ||= "http://localhost:5000/"
Settings.registry['key'] ||= nil
Settings.registry['issuer'] ||= nil
Settings.registry['host_port'] ||= [Settings.registry['host'], Settings.registry['port']].compact.join(':')
269
Settings.registry['path']            = Settings.absolute(Settings.registry['path'] || File.join(Settings.shared['path'], 'registry'))
270
Settings.registry['notifications'] ||= []
271

272 273 274 275 276 277 278
#
# Error Reporting and Logging with Sentry
#
Settings['sentry'] ||= Settingslogic.new({})
Settings.sentry['enabled'] ||= false
Settings.sentry['dsn'] ||= nil
Settings.sentry['environment'] ||= nil
279
Settings.sentry['clientside_dsn'] ||= nil
280

281
#
K
Kamil Trzcinski 已提交
282
# Pages
283
#
K
Kamil Trzcinski 已提交
284
Settings['pages'] ||= Settingslogic.new({})
Z
Zeger-Jan van de Weg 已提交
285
Settings.pages['enabled']           = false if Settings.pages['enabled'].nil?
286
Settings.pages['access_control']    = false if Settings.pages['access_control'].nil?
Z
Zeger-Jan van de Weg 已提交
287 288
Settings.pages['path']              = Settings.absolute(Settings.pages['path'] || File.join(Settings.shared['path'], "pages"))
Settings.pages['https']             = false if Settings.pages['https'].nil?
289 290 291 292 293 294 295
Settings.pages['host'] ||= "example.com"
Settings.pages['port'] ||= Settings.pages.https ? 443 : 80
Settings.pages['protocol'] ||= Settings.pages.https ? "https" : "http"
Settings.pages['url'] ||= Settings.__send__(:build_pages_url)
Settings.pages['external_http'] ||= false unless Settings.pages['external_http'].present?
Settings.pages['external_https'] ||= false unless Settings.pages['external_https'].present?
Settings.pages['artifacts_server'] ||= Settings.pages['enabled'] if Settings.pages['artifacts_server'].nil?
296
Settings.pages['secret_file'] ||= Rails.root.join('.gitlab_pages_secret')
297

298 299 300 301 302 303 304
#
# Geo
#
Gitlab.ee do
  Settings['geo'] ||= Settingslogic.new({})
  # For backwards compatibility, default to gitlab_url and if so, ensure it ends with "/"
  Settings.geo['node_name'] = Settings.geo['node_name'].presence || Settings.gitlab['url'].chomp('/').concat('/')
305 306 307 308 309 310

  #
  # Registry replication
  #
  Settings.geo['registry_replication'] ||= Settingslogic.new({})
  Settings.geo.registry_replication['enabled'] ||= false
311 312
end

313 314 315 316 317 318 319
#
# Unleash
#
Settings['feature_flags'] ||= Settingslogic.new({})
Settings.feature_flags['unleash'] ||= Settingslogic.new({})
Settings.feature_flags.unleash['enabled'] = false if Settings.feature_flags.unleash['enabled'].nil?

320 321 322 323 324
#
# External merge request diffs
#
Settings['external_diffs'] ||= Settingslogic.new({})
Settings.external_diffs['enabled']      = false if Settings.external_diffs['enabled'].nil?
325
Settings.external_diffs['when']         = 'always' if Settings.external_diffs['when'].nil?
326 327 328
Settings.external_diffs['storage_path'] = Settings.absolute(Settings.external_diffs['storage_path'] || File.join(Settings.shared['path'], 'external-diffs'))
Settings.external_diffs['object_store'] = ObjectStoreSettings.parse(Settings.external_diffs['object_store'])

M
Marin Jankovski 已提交
329 330 331 332
#
# Git LFS
#
Settings['lfs'] ||= Settingslogic.new({})
M
Marin Jankovski 已提交
333
Settings.lfs['enabled']      = true if Settings.lfs['enabled'].nil?
334
Settings.lfs['storage_path'] = Settings.absolute(Settings.lfs['storage_path'] || File.join(Settings.shared['path'], "lfs-objects"))
335
Settings.lfs['object_store'] = ObjectStoreSettings.parse(Settings.lfs['object_store'])
M
Marin Jankovski 已提交
336

337 338 339 340 341 342
#
# Uploads
#
Settings['uploads'] ||= Settingslogic.new({})
Settings.uploads['storage_path'] = Settings.absolute(Settings.uploads['storage_path'] || 'public')
Settings.uploads['base_dir'] = Settings.uploads['base_dir'] || 'uploads/-/system'
343 344
Settings.uploads['object_store'] = ObjectStoreSettings.parse(Settings.uploads['object_store'])
Settings.uploads['object_store']['remote_directory'] ||= 'uploads'
345

346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
#
# Packages
#
Gitlab.ee do
  Settings['packages'] ||= Settingslogic.new({})
  Settings.packages['enabled']      = true if Settings.packages['enabled'].nil?
  Settings.packages['storage_path'] = Settings.absolute(Settings.packages['storage_path'] || File.join(Settings.shared['path'], "packages"))
  Settings.packages['object_store'] = ObjectStoreSettings.parse(Settings.packages['object_store'])
end

#
# Dependency Proxy
#
Gitlab.ee do
  Settings['dependency_proxy'] ||= Settingslogic.new({})
  Settings.dependency_proxy['enabled']      = true if Settings.dependency_proxy['enabled'].nil?
  Settings.dependency_proxy['storage_path'] = Settings.absolute(Settings.dependency_proxy['storage_path'] || File.join(Settings.shared['path'], "dependency_proxy"))
  Settings.dependency_proxy['object_store'] = ObjectStoreSettings.parse(Settings.dependency_proxy['object_store'])

  # For first iteration dependency proxy uses Rails server to download blobs.
  # To ensure acceptable performance we only allow feature to be used with
  # multithreaded web-server Puma. This will be removed once download logic is moved
  # to GitLab workhorse
369
  Settings.dependency_proxy['enabled'] = false unless Gitlab::Runtime.puma?
370 371
end

K
Kamil Trzcinski 已提交
372 373 374 375
#
# Mattermost
#
Settings['mattermost'] ||= Settingslogic.new({})
K
Kamil Trzcinski 已提交
376 377
Settings.mattermost['enabled'] = false if Settings.mattermost['enabled'].nil?
Settings.mattermost['host'] = nil unless Settings.mattermost.enabled
K
Kamil Trzcinski 已提交
378

379 380 381
#
# Gravatar
#
R
Riyad Preukschas 已提交
382
Settings['gravatar'] ||= Settingslogic.new({})
383
Settings.gravatar['enabled']      = true if Settings.gravatar['enabled'].nil?
384
Settings.gravatar['plain_url']  ||= 'https://www.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon'
385
Settings.gravatar['ssl_url']    ||= 'https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon'
386
Settings.gravatar['host']         = Settings.host_without_www(Settings.gravatar['plain_url'])
R
Riyad Preukschas 已提交
387

388 389 390 391
#
# Cron Jobs
#
Settings['cron_jobs'] ||= Settingslogic.new({})
392 393 394 395 396

if Gitlab.ee? && Settings['ee_cron_jobs']
  Settings.cron_jobs.merge!(Settings.ee_cron_jobs)
end

397 398 399
Settings.cron_jobs['stuck_ci_jobs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['stuck_ci_jobs_worker']['cron'] ||= '0 * * * *'
Settings.cron_jobs['stuck_ci_jobs_worker']['job_class'] = 'StuckCiJobsWorker'
400
Settings.cron_jobs['pipeline_schedule_worker'] ||= Settingslogic.new({})
401
Settings.cron_jobs['pipeline_schedule_worker']['cron'] ||= '19 * * * *'
402
Settings.cron_jobs['pipeline_schedule_worker']['job_class'] = 'PipelineScheduleWorker'
403
Settings.cron_jobs['expire_build_artifacts_worker'] ||= Settingslogic.new({})
404
Settings.cron_jobs['expire_build_artifacts_worker']['cron'] ||= '50 * * * *'
405
Settings.cron_jobs['expire_build_artifacts_worker']['job_class'] = 'ExpireBuildArtifactsWorker'
406 407 408
Settings.cron_jobs['environments_auto_stop_cron_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['environments_auto_stop_cron_worker']['cron'] ||= '24 * * * *'
Settings.cron_jobs['environments_auto_stop_cron_worker']['job_class'] = 'Environments::AutoStopCronWorker'
J
Jacob Vosmaer 已提交
409 410
Settings.cron_jobs['repository_check_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['repository_check_worker']['cron'] ||= '20 * * * *'
411
Settings.cron_jobs['repository_check_worker']['job_class'] = 'RepositoryCheck::DispatchWorker'
J
Jacob Vosmaer 已提交
412
Settings.cron_jobs['admin_email_worker'] ||= Settingslogic.new({})
413
Settings.cron_jobs['admin_email_worker']['cron'] ||= '0 0 * * 0'
J
Jacob Vosmaer 已提交
414
Settings.cron_jobs['admin_email_worker']['job_class'] = 'AdminEmailWorker'
415 416 417
Settings.cron_jobs['personal_access_tokens_expiring_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['personal_access_tokens_expiring_worker']['cron'] ||= '0 1 * * *'
Settings.cron_jobs['personal_access_tokens_expiring_worker']['job_class'] = 'PersonalAccessTokens::ExpiringWorker'
418 419 420
Settings.cron_jobs['repository_archive_cache_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['repository_archive_cache_worker']['cron'] ||= '0 * * * *'
Settings.cron_jobs['repository_archive_cache_worker']['job_class'] = 'RepositoryArchiveCacheWorker'
421 422 423
Settings.cron_jobs['import_export_project_cleanup_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['import_export_project_cleanup_worker']['cron'] ||= '0 * * * *'
Settings.cron_jobs['import_export_project_cleanup_worker']['job_class'] = 'ImportExportProjectCleanupWorker'
424 425 426
Settings.cron_jobs['ci_archive_traces_cron_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['ci_archive_traces_cron_worker']['cron'] ||= '17 * * * *'
Settings.cron_jobs['ci_archive_traces_cron_worker']['job_class'] = 'Ci::ArchiveTracesCronWorker'
427 428 429
Settings.cron_jobs['requests_profiles_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['requests_profiles_worker']['cron'] ||= '0 0 * * *'
Settings.cron_jobs['requests_profiles_worker']['job_class'] = 'RequestsProfilesWorker'
430 431 432
Settings.cron_jobs['remove_expired_members_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['remove_expired_members_worker']['cron'] ||= '10 0 * * *'
Settings.cron_jobs['remove_expired_members_worker']['job_class'] = 'RemoveExpiredMembersWorker'
D
Douwe Maan 已提交
433 434 435
Settings.cron_jobs['remove_expired_group_links_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['remove_expired_group_links_worker']['cron'] ||= '10 0 * * *'
Settings.cron_jobs['remove_expired_group_links_worker']['job_class'] = 'RemoveExpiredGroupLinksWorker'
436
Settings.cron_jobs['prune_old_events_worker'] ||= Settingslogic.new({})
437
Settings.cron_jobs['prune_old_events_worker']['cron'] ||= '0 */6 * * *'
438
Settings.cron_jobs['prune_old_events_worker']['job_class'] = 'PruneOldEventsWorker'
Y
Yorick Peterse 已提交
439 440 441
Settings.cron_jobs['trending_projects_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['trending_projects_worker']['cron'] = '0 1 * * *'
Settings.cron_jobs['trending_projects_worker']['job_class'] = 'TrendingProjectsWorker'
442 443 444
Settings.cron_jobs['remove_unreferenced_lfs_objects_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['remove_unreferenced_lfs_objects_worker']['cron'] ||= '20 0 * * *'
Settings.cron_jobs['remove_unreferenced_lfs_objects_worker']['job_class'] = 'RemoveUnreferencedLfsObjectsWorker'
445 446 447
Settings.cron_jobs['stuck_import_jobs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['stuck_import_jobs_worker']['cron'] ||= '15 * * * *'
Settings.cron_jobs['stuck_import_jobs_worker']['job_class'] = 'StuckImportJobsWorker'
S
Sean McGivern 已提交
448
Settings.cron_jobs['gitlab_usage_ping_worker'] ||= Settingslogic.new({})
449
Settings.cron_jobs['gitlab_usage_ping_worker']['cron'] ||= Settings.__send__(:cron_for_usage_ping)
S
Sean McGivern 已提交
450
Settings.cron_jobs['gitlab_usage_ping_worker']['job_class'] = 'GitlabUsagePingWorker'
451 452 453
Settings.cron_jobs['stuck_merge_jobs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['stuck_merge_jobs_worker']['cron'] ||= '0 */2 * * *'
Settings.cron_jobs['stuck_merge_jobs_worker']['job_class'] = 'StuckMergeJobsWorker'
454 455 456
Settings.cron_jobs['pages_domain_verification_cron_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['pages_domain_verification_cron_worker']['cron'] ||= '*/15 * * * *'
Settings.cron_jobs['pages_domain_verification_cron_worker']['job_class'] = 'PagesDomainVerificationCronWorker'
457 458 459
Settings.cron_jobs['pages_domain_removal_cron_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['pages_domain_removal_cron_worker']['cron'] ||= '47 0 * * *'
Settings.cron_jobs['pages_domain_removal_cron_worker']['job_class'] = 'PagesDomainRemovalCronWorker'
460
Settings.cron_jobs['pages_domain_ssl_renewal_cron_worker'] ||= Settingslogic.new({})
461
Settings.cron_jobs['pages_domain_ssl_renewal_cron_worker']['cron'] ||= '*/10 * * * *'
462
Settings.cron_jobs['pages_domain_ssl_renewal_cron_worker']['job_class'] = 'PagesDomainSslRenewalCronWorker'
463 464 465
Settings.cron_jobs['issue_due_scheduler_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['issue_due_scheduler_worker']['cron'] ||= '50 00 * * *'
Settings.cron_jobs['issue_due_scheduler_worker']['job_class'] = 'IssueDueSchedulerWorker'
466 467 468
Settings.cron_jobs['prune_web_hook_logs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['prune_web_hook_logs_worker']['cron'] ||= '0 */1 * * *'
Settings.cron_jobs['prune_web_hook_logs_worker']['job_class'] = 'PruneWebHookLogsWorker'
469 470 471
Settings.cron_jobs['schedule_migrate_external_diffs_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['schedule_migrate_external_diffs_worker']['cron'] ||= '15 * * * *'
Settings.cron_jobs['schedule_migrate_external_diffs_worker']['job_class'] = 'ScheduleMigrateExternalDiffsWorker'
472 473 474
Settings.cron_jobs['namespaces_prune_aggregation_schedules_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['namespaces_prune_aggregation_schedules_worker']['cron'] ||= '5 1 * * *'
Settings.cron_jobs['namespaces_prune_aggregation_schedules_worker']['job_class'] = 'Namespaces::PruneAggregationSchedulesWorker'
475 476 477
Settings.cron_jobs['container_expiration_policy_worker'] ||= Settingslogic.new({})
Settings.cron_jobs['container_expiration_policy_worker']['cron'] ||= '50 * * * *'
Settings.cron_jobs['container_expiration_policy_worker']['job_class'] = 'ContainerExpirationPolicyWorker'
478

479
Gitlab.ee do
480 481 482
  Settings.cron_jobs['adjourned_group_deletion_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['adjourned_group_deletion_worker']['cron'] ||= '0 3 * * *'
  Settings.cron_jobs['adjourned_group_deletion_worker']['job_class'] = 'AdjournedGroupDeletionWorker'
483 484 485
  Settings.cron_jobs['clear_shared_runners_minutes_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['clear_shared_runners_minutes_worker']['cron'] ||= '0 0 1 * *'
  Settings.cron_jobs['clear_shared_runners_minutes_worker']['job_class'] = 'ClearSharedRunnersMinutesWorker'
486 487 488
  Settings.cron_jobs['adjourned_projects_deletion_cron_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['adjourned_projects_deletion_cron_worker']['cron'] ||= '0 4 * * *'
  Settings.cron_jobs['adjourned_projects_deletion_cron_worker']['job_class'] = 'AdjournedProjectsDeletionCronWorker'
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
  Settings.cron_jobs['geo_file_download_dispatch_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['geo_file_download_dispatch_worker']['cron'] ||= '*/1 * * * *'
  Settings.cron_jobs['geo_file_download_dispatch_worker']['job_class'] ||= 'Geo::FileDownloadDispatchWorker'
  Settings.cron_jobs['geo_metrics_update_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['geo_metrics_update_worker']['cron'] ||= '*/1 * * * *'
  Settings.cron_jobs['geo_metrics_update_worker']['job_class'] ||= 'Geo::MetricsUpdateWorker'
  Settings.cron_jobs['geo_migrated_local_files_clean_up_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['geo_migrated_local_files_clean_up_worker']['cron'] ||= '15 */6 * * *'
  Settings.cron_jobs['geo_migrated_local_files_clean_up_worker']['job_class'] ||= 'Geo::MigratedLocalFilesCleanUpWorker'
  Settings.cron_jobs['geo_prune_event_log_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['geo_prune_event_log_worker']['cron'] ||= '*/5 * * * *'
  Settings.cron_jobs['geo_prune_event_log_worker']['job_class'] ||= 'Geo::PruneEventLogWorker'
  Settings.cron_jobs['geo_repository_sync_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['geo_repository_sync_worker']['cron'] ||= '*/1 * * * *'
  Settings.cron_jobs['geo_repository_sync_worker']['job_class'] ||= 'Geo::RepositorySyncWorker'
504 505 506
  Settings.cron_jobs['geo_secondary_registry_consistency_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['geo_secondary_registry_consistency_worker']['cron'] ||= '* * * * *'
  Settings.cron_jobs['geo_secondary_registry_consistency_worker']['job_class'] ||= 'Geo::Secondary::RegistryConsistencyWorker'
507 508 509 510 511 512
  Settings.cron_jobs['geo_repository_verification_primary_batch_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['geo_repository_verification_primary_batch_worker']['cron'] ||= '*/1 * * * *'
  Settings.cron_jobs['geo_repository_verification_primary_batch_worker']['job_class'] ||= 'Geo::RepositoryVerification::Primary::BatchWorker'
  Settings.cron_jobs['geo_repository_verification_secondary_scheduler_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['geo_repository_verification_secondary_scheduler_worker']['cron'] ||= '*/1 * * * *'
  Settings.cron_jobs['geo_repository_verification_secondary_scheduler_worker']['job_class'] ||= 'Geo::RepositoryVerification::Secondary::SchedulerWorker'
513 514 515
  Settings.cron_jobs['geo_container_repository_sync_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['geo_container_repository_sync_worker']['cron'] ||= '*/1 * * * *'
  Settings.cron_jobs['geo_container_repository_sync_worker']['job_class'] ||= 'Geo::ContainerRepositorySyncDispatchWorker'
516 517 518
  Settings.cron_jobs['historical_data_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['historical_data_worker']['cron'] ||= '0 12 * * *'
  Settings.cron_jobs['historical_data_worker']['job_class'] = 'HistoricalDataWorker'
519 520 521
  Settings.cron_jobs['import_software_licenses_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['import_software_licenses_worker']['cron'] ||= '0 3 * * 0'
  Settings.cron_jobs['import_software_licenses_worker']['job_class'] = 'ImportSoftwareLicensesWorker'
522 523 524 525 526 527 528 529 530 531 532 533 534 535
  Settings.cron_jobs['ldap_group_sync_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['ldap_group_sync_worker']['cron'] ||= '0 * * * *'
  Settings.cron_jobs['ldap_group_sync_worker']['job_class'] = 'LdapAllGroupsSyncWorker'
  Settings.cron_jobs['ldap_sync_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['ldap_sync_worker']['cron'] ||= '30 1 * * *'
  Settings.cron_jobs['ldap_sync_worker']['job_class'] = 'LdapSyncWorker'
  Settings.cron_jobs['pseudonymizer_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['pseudonymizer_worker']['cron'] ||= '0 23 * * *'
  Settings.cron_jobs['pseudonymizer_worker']['job_class'] ||= 'PseudonymizerWorker'
  Settings.cron_jobs['update_max_seats_used_for_gitlab_com_subscriptions_worker'] ||= Settingslogic.new({})
  Settings.cron_jobs['update_max_seats_used_for_gitlab_com_subscriptions_worker']['cron'] ||= '0 12 * * *'
  Settings.cron_jobs['update_max_seats_used_for_gitlab_com_subscriptions_worker']['job_class'] = 'UpdateMaxSeatsUsedForGitlabComSubscriptionsWorker'
end

S
Stan Hu 已提交
536 537 538 539 540 541
#
# Sidekiq
#
Settings['sidekiq'] ||= Settingslogic.new({})
Settings['sidekiq']['log_format'] ||= 'default'

542 543 544 545
#
# GitLab Shell
#
Settings['gitlab_shell'] ||= Settingslogic.new({})
546
Settings.gitlab_shell['path']           = Settings.absolute(Settings.gitlab_shell['path'] || Settings.gitlab['user_home'] + '/gitlab-shell/')
547
Settings.gitlab_shell['hooks_path']     = :deprecated_use_gitlab_shell_path_instead
P
Patrick Bajao 已提交
548
Settings.gitlab_shell['authorized_keys_file'] ||= File.join(Dir.home, '.ssh', 'authorized_keys')
549
Settings.gitlab_shell['secret_file'] ||= Rails.root.join('.gitlab_shell_secret')
550 551
Settings.gitlab_shell['receive_pack']   = true if Settings.gitlab_shell['receive_pack'].nil?
Settings.gitlab_shell['upload_pack']    = true if Settings.gitlab_shell['upload_pack'].nil?
D
Dmitriy Zaporozhets 已提交
552
Settings.gitlab_shell['ssh_host']     ||= Settings.gitlab.ssh_host
553 554 555
Settings.gitlab_shell['ssh_port']     ||= 22
Settings.gitlab_shell['ssh_user']     ||= Settings.gitlab.user
Settings.gitlab_shell['owner_group']  ||= Settings.gitlab.user
556
Settings.gitlab_shell['ssh_path_prefix'] ||= Settings.__send__(:build_gitlab_shell_ssh_path_prefix)
557
Settings.gitlab_shell['git_timeout'] ||= 10800
R
Riyad Preukschas 已提交
558

559 560 561 562 563 564
#
# Workhorse
#
Settings['workhorse'] ||= Settingslogic.new({})
Settings.workhorse['secret_file'] ||= Rails.root.join('.gitlab_workhorse_secret')

565 566 567 568 569
#
# Repositories
#
Settings['repositories'] ||= Settingslogic.new({})
Settings.repositories['storages'] ||= {}
570 571 572 573 574 575 576
unless Settings.repositories.storages['default']
  Settings.repositories.storages['default'] ||= {}
  # We set the path only if the default storage doesn't exist, in case it exists
  # but follows the pre-9.0 configuration structure. `6_validations.rb` initializer
  # will validate all storages and throw a relevant error to the user if necessary.
  Settings.repositories.storages['default']['path'] ||= Settings.gitlab['user_home'] + '/repositories/'
end
577

578
Settings.repositories.storages.each do |key, storage|
579
  Settings.repositories.storages[key] = Gitlab::GitalyClient::StorageSettings.new(storage)
580 581
end

582 583 584 585 586 587 588
#
# The repository_downloads_path is used to remove outdated repository
# archives, if someone has it configured incorrectly, and it points
# to the path where repositories are stored this can cause some
# data-integrity issue. In this case, we sets it to the default
# repository_downloads_path value.
#
589
repositories_storages          = Settings.repositories.storages.values
590
repository_downloads_path      = Settings.gitlab['repository_downloads_path'].to_s.gsub(%r{/$}, '')
591 592
repository_downloads_full_path = File.expand_path(repository_downloads_path, Settings.gitlab['user_home'])

593
# Gitaly migration: https://gitlab.com/gitlab-org/gitaly/issues/1255
594 595 596 597
Gitlab::GitalyClient::StorageSettings.allow_disk_access do
  if repository_downloads_path.blank? || repositories_storages.any? { |rs| [repository_downloads_path, repository_downloads_full_path].include?(rs.legacy_disk_path.gsub(%r{/$}, '')) }
    Settings.gitlab['repository_downloads_path'] = File.join(Settings.shared['path'], 'cache/archive')
  end
598 599
end

600 601 602
#
# Backup
#
R
Riyad Preukschas 已提交
603
Settings['backup'] ||= Settingslogic.new({})
604
Settings.backup['keep_time'] ||= 0
V
Valery Sizov 已提交
605
Settings.backup['pg_schema']    = nil
606
Settings.backup['path']         = Settings.absolute(Settings.backup['path'] || "tmp/backups/")
607
Settings.backup['archive_permissions'] ||= 0600
608
Settings.backup['upload'] ||= Settingslogic.new({ 'remote_directory' => nil, 'connection' => nil })
609
Settings.backup['upload']['multipart_chunk_size'] ||= 104857600
610
Settings.backup['upload']['encryption'] ||= nil
611
Settings.backup['upload']['encryption_key'] ||= ENV['GITLAB_BACKUP_ENCRYPTION_KEY']
612
Settings.backup['upload']['storage_class'] ||= nil
R
Riyad Preukschas 已提交
613

614 615 616 617 618 619 620 621 622 623
#
# Pseudonymizer
#
Gitlab.ee do
  Settings['pseudonymizer'] ||= Settingslogic.new({})
  Settings.pseudonymizer['manifest'] = Settings.absolute(Settings.pseudonymizer['manifest'] || Rails.root.join("config/pseudonymizer.yml"))
  Settings.pseudonymizer['upload'] ||= Settingslogic.new({ 'remote_directory' => nil, 'connection' => nil })
  # Settings.pseudonymizer['upload']['multipart_chunk_size'] ||= 104857600
end

624 625 626
#
# Git
#
R
Riyad Preukschas 已提交
627
Settings['git'] ||= Settingslogic.new({})
628
Settings.git['bin_path'] ||= '/usr/bin/git'
629

630 631 632
# Important: keep the satellites.path setting until GitLab 9.0 at
# least. This setting is fed to 'rm -rf' in
# db/migrate/20151023144219_remove_satellites.rb
R
Riyad Preukschas 已提交
633
Settings['satellites'] ||= Settingslogic.new({})
634
Settings.satellites['path'] = Settings.absolute(Settings.satellites['path'] || "tmp/repo_satellites/")
635

636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
#
# Kerberos
#
Gitlab.ee do
  Settings['kerberos'] ||= Settingslogic.new({})
  Settings.kerberos['enabled'] = false if Settings.kerberos['enabled'].nil?
  Settings.kerberos['keytab'] = nil if Settings.kerberos['keytab'].blank? # nil means use default keytab
  Settings.kerberos['service_principal_name'] = nil if Settings.kerberos['service_principal_name'].blank? # nil means any SPN in keytab
  Settings.kerberos['use_dedicated_port'] = false if Settings.kerberos['use_dedicated_port'].nil?
  Settings.kerberos['https'] = Settings.gitlab.https if Settings.kerberos['https'].nil?
  Settings.kerberos['port'] ||= Settings.kerberos.https ? 8443 : 8088

  if Settings.kerberos['enabled'] && !Settings.omniauth.providers.map(&:name).include?('kerberos_spnego')
    Settings.omniauth.providers << Settingslogic.new({ 'name' => 'kerberos_spnego' })
  end
end

653 654 655 656
#
# Extra customization
#
Settings['extra'] ||= Settingslogic.new({})
657

658 659 660 661 662
#
# Rack::Attack settings
#
Settings['rack_attack'] ||= Settingslogic.new({})
Settings.rack_attack['git_basic_auth'] ||= Settingslogic.new({})
T
Tiago Botelho 已提交
663
Settings.rack_attack.git_basic_auth['enabled'] = false if Settings.rack_attack.git_basic_auth['enabled'].nil?
664
Settings.rack_attack.git_basic_auth['ip_whitelist'] ||= %w{127.0.0.1}
665 666 667
Settings.rack_attack.git_basic_auth['maxretry'] ||= 10
Settings.rack_attack.git_basic_auth['findtime'] ||= 1.minute
Settings.rack_attack.git_basic_auth['bantime'] ||= 1.hour
668
Settings.rack_attack['admin_area_protected_paths_enabled'] ||= false
669

670 671 672 673 674
#
# Gitaly
#
Settings['gitaly'] ||= Settingslogic.new({})

675 676 677 678 679 680 681 682 683
#
# Webpack settings
#
Settings['webpack'] ||= Settingslogic.new({})
Settings.webpack['dev_server'] ||= Settingslogic.new({})
Settings.webpack.dev_server['enabled'] ||= false
Settings.webpack.dev_server['host']    ||= 'localhost'
Settings.webpack.dev_server['port']    ||= 3808

684
#
685
# Monitoring settings
686
#
687
Settings['monitoring'] ||= Settingslogic.new({})
P
Pawel Chojnacki 已提交
688
Settings.monitoring['ip_whitelist'] ||= ['127.0.0.1/8']
689
Settings.monitoring['unicorn_sampler_interval'] ||= 10
J
Jan Provaznik 已提交
690
Settings.monitoring['puma_sampler_interval'] ||= 5
P
Pawel Chojnacki 已提交
691
Settings.monitoring['ruby_sampler_interval'] ||= 60
692 693 694
Settings.monitoring['sidekiq_exporter'] ||= Settingslogic.new({})
Settings.monitoring.sidekiq_exporter['enabled'] ||= false
Settings.monitoring.sidekiq_exporter['address'] ||= 'localhost'
695 696 697 698 699
Settings.monitoring.sidekiq_exporter['port'] ||= 8082
Settings.monitoring['web_exporter'] ||= Settingslogic.new({})
Settings.monitoring.web_exporter['enabled'] ||= false
Settings.monitoring.web_exporter['address'] ||= 'localhost'
Settings.monitoring.web_exporter['port'] ||= 8083
700 701 702 703 704 705

#
# Shutdown settings
#
Settings['shutdown'] ||= Settingslogic.new({})
Settings.shutdown['blackout_seconds'] ||= 10
706

707 708 709 710 711
#
# Testing settings
#
if Rails.env.test?
  Settings.gitlab['default_projects_limit']   = 42
712
  Settings.gitlab['default_can_create_group'] = true
713
  Settings.gitlab['default_can_create_team']  = false
R
Robert Speicher 已提交
714
end