Project

General

Profile

Feature #17742 » arvados_config.yml

Javier Bértoli, 10/08/2021 10:33 AM

 
1
---
2
########################################################################
3
# File managed by Salt at <salt://arvados/files/default/config.tmpl.jinja>.
4
# Your changes will be overwritten.
5
#
6
# Please check https://doc.arvados.org/master/admin/config.html for
7
# documentation about the parameters configured here.
8
########################################################################
9
# (Experimental) Restart services automatically when config file
10
# changes are detected. Only supported by `arvados-server boot` in
11
# dev mode.
12
AutoReloadConfig: False
13

    
14
Clusters:
15
  harpo:
16

    
17
    SystemRootToken: "systemroottokenmushaveatleast32characters"
18
    ManagementToken: "managementtokenmushaveatleast32characters"
19

    
20
    API:
21

    
22
    Collections:
23
      BlobSigningKey: "blobsigningkeymushaveatleast32characters"
24

    
25
    TLS:
26
      Certificate: ""
27
      Key: ""
28
      Insecure: True
29

    
30
    Workbench:
31
      SecretKeyBase: "workbenchsecretkeymushaveatleast32characters"
32
      SiteName: HARPO
33
    Login:
34
      Test:
35
        Enable: true
36
        Users:
37
          admin:
38
            Email: admin@harpo.local
39
            Password: password
40
    Users:
41
      AnonymousUserToken: anonymoususertokenmushaveatleast32characters
42
      AutoAdminFirstUser: true
43
      AutoSetupNewUsers: true
44
      AutoSetupNewUsersWithRepository: true
45
      NewUsersAreActive: true
46
    Volumes:
47
      harpo-nyw5e-000000000000000:
48
        AccessViaHosts:
49
          http://keep0.harpo.local:25107:
50
            ReadOnly: false
51
        Driver: Directory
52
        DriverParameters:
53
          Root: /tmp
54
        Replication: 2
55

    
56
    ### DATABASE CONFIGURATION
57
    PostgreSQL:
58
      ConnectionPool: 32
59
      Connection:
60
        # All parameters here are passed to the PG client library in a connection string;
61
        # see https://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-PARAMKEYWORDS
62
        dbname: harpo_arvados
63
        host: 127.0.0.1
64
        password: "please_set_this_to_some_secure_value"
65
        user: harpo_arvados
66
        client_encoding: UTF8
67

    
68
    ### SERVICES URLs
69
    Services:
70
      Controller:
71
        ExternalURL: https://harpo.local:8443
72
        InternalURLs:
73
          http://controller.internal:8003: {}
74
      DispatchCloud:
75
        InternalURLs:
76
          http://harpo.local:9006: {}
77
      Keepbalance:
78
        InternalURLs:
79
          http://harpo.local:9005: {}
80
      Keepproxy:
81
        ExternalURL: https://keep.harpo.local:8443
82
        InternalURLs:
83
          http://keep.internal:25100: {}
84
      Keepstore:
85
        InternalURLs:
86
          http://keep0.harpo.local:25107: {}
87
      RailsAPI:
88
        InternalURLs:
89
          http://api.internal:8004: {}
90
      WebDAV:
91
        ExternalURL: https://collections.harpo.local:8443
92
        InternalURLs:
93
          http://collections.internal:9002: {}
94
      WebDAVDownload:
95
        ExternalURL: https://download.harpo.local:8443
96
      WebShell:
97
        ExternalURL: https://webshell.harpo.local:8443
98
      Websocket:
99
        ExternalURL: wss://ws.harpo.local:8443/websocket
100
        InternalURLs:
101
          http://ws.internal:8005: {}
102
      Workbench1:
103
        ExternalURL: https://workbench.harpo.local:8443
104
      Workbench2:
105
        ExternalURL: https://workbench2.harpo.local:8443
(3-3/3)