Welcome to mirror list, hosted at ThFree Co, Russian Federation.

database.yml.decomposed-clusterwide-postgresql « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63d35184953f6e0849ca8efe228be51872bc14ce (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Defaults

defaults: &defaults
  adapter: postgresql
  encoding: unicode
  host: localhost
  username: git
  password: "secure password"

#
# PRODUCTION
#
production:
  main: &main
    <<: *defaults
    database: gitlabhq_production
  ci:
    <<: *defaults
    database: gitlabhq_production_ci
  main_clusterwide:
    <: *main
    database_tasks: false
  geo:
    <<: *defaults
    database: gitlabhq_geo_production

#
# Development specific
#
development:
  main: &main
    <<: *defaults
    database: gitlabhq_development
    username: postgres
    variables:
      statement_timeout: 15s
  ci:
    <<: *defaults
    database: gitlabhq_development_ci
    username: postgres
    variables:
      statement_timeout: 15s
  main_clusterwide:
    <<: *main
    database_tasks: false
    variables:
      statement_timeout: 15s
  geo:
    <<: *defaults
    database: gitlabhq_geo_development
    username: postgres

# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
  main: &main
    <<: *defaults
    database: gitlabhq_test
    username: postgres
    password:
    prepared_statements: false
    reaping_frequency: nil
    variables:
      statement_timeout: 15s
  ci:
    <<: *defaults
    database: gitlabhq_test_ci
    username: postgres
    password:
    prepared_statements: false
    reaping_frequency: nil
    variables:
      statement_timeout: 15s
  main_clusterwide:
    <<: *main
    database_tasks: false
    reaping_frequency: nil
  geo:
    <<: *defaults
    database: gitlabhq_geo_test
    username: postgres
    password:
    reaping_frequency: nil
  embedding:
    <<: *defaults
    database: gitlabhq_embedding_test
    username: postgres
    password:
    reaping_frequency: nil