fix(creds): remove underscores
[arvados-formula.git] / test / salt / pillar / arvados.sls
1 # -*- coding: utf-8 -*-
2 # vim: ft=yaml
3 ---
4 # The variables commented out are the default values that the formula uses.
5 # The uncommented values are REQUIRED values. If you don't set them, running
6 # this formula will fail.
7 arvados:
8   ### GENERAL CONFIG
9   # version: '2.0.4'
10   ## It makes little sense to disable this flag, but you can, if you want :)
11   # use_upstream_repo: true
12
13   ## Repo URL is built with grains values. If desired, it can be completely
14   ## overwritten with the pillar parameter 'repo_url'
15   # repo:
16   #   humanname: Arvados Official Repository
17
18   ## IMPORTANT!!!!!
19   ## api, workbench and shell require some gems, so you need to make sure ruby
20   ## and deps are installed in order to install and compile the gems.
21   ## We default to `false` in these two variables as it's expected you already
22   ## manage OS packages with some other tool and you don't want us messing up
23   ## with your setup.
24   ruby:
25     ## We set these to `true` here for testing purposes.
26     ## They both default to `false`.
27     manage_ruby: true
28     manage_gems_deps: true
29
30   ### ARVADOS CLUSTER CONFIG
31   cluster:
32     name: fixme
33     domain: example.net
34
35     database:
36       # max concurrent connections per arvados server daemon
37       # connection_pool_max: 32
38       name: arvados
39       host: 127.0.0.1
40       password: changeme_arvados
41       user: arvados
42       encoding: en_US.utf8
43       client_encoding: UTF8
44       # Centos7 does not enable SSL by default, so we disable
45       # it here just for testing of the formula purposes only.
46       # You should not do this in production, and should
47       # configure Postgres certificates correctly
48       {%- if grains.os_family in ('RedHat',) %}
49       extra_conn_params:
50         sslmode: disable
51       {%- endif %}
52
53     tls:
54       # certificate: ''
55       # key: ''
56       # required to test with snakeoil certs
57       insecure: true
58
59     ### TOKENS
60     tokens:
61       system_root: changemesystemroottoken
62       management: changememanagementtoken
63       rails_secret: changemerailssecrettoken
64       anonymous_user: changemeanonymoususertoken
65
66     ### KEYS
67     secrets:
68       blob_signing_key: changemeblobsigningkey
69       workbench_secret_key: changemeworkbenchsecretkey
70       dispatcher_access_key: changemedispatcheraccesskey
71       dispatcher_secret_key: changemedispatchersecretkey
72       keep_access_key: changemekeepaccesskey
73       keep_secret_key: changemekeepsecretkey
74
75     AuditLogs:
76       Section_to_ignore:
77         - some_random_value
78
79     ### VOLUMES
80     ## This should usually match all your `keepstore` instances
81     Volumes:
82       # the volume name will be composed with
83       # <cluster>-nyw5e-<volume>
84       fixme-nyw5e-000000000000000:
85         AccessViaHosts:
86           http://keep0.fixme.example.net:25107:
87             ReadOnly: false
88         Replication: 2
89         Driver: Directory
90         DriverParameters:
91           Root: /tmp
92
93     Users:
94       NewUsersAreActive: true
95       AutoAdminFirstUser: true
96       AutoSetupNewUsers: true
97       AutoSetupNewUsersWithRepository: true
98
99     Services:
100       Controller:
101         ExternalURL: https://fixme.example.net
102         InternalURLs:
103           http://127.0.0.2:8003: {}
104       DispatchCloud:
105         InternalURLs:
106           http://fixme.example.net:9006: {}
107       Keepbalance:
108         InternalURLs:
109           http://fixme.example.net:9005: {}
110       Keepproxy:
111         ExternalURL: https://keep.fixme.example.net
112         InternalURLs:
113           http://127.0.0.2:25100: {}
114       Keepstore:
115         InternalURLs:
116           http://keep0.fixme.example.net:25107: {}
117       RailsAPI:
118         InternalURLs:
119           http://127.0.0.2:8004: {}
120       WebDAV:
121         ExternalURL: https://collections.fixme.example.net
122         InternalURLs:
123           http://127.0.0.2:9002: {}
124       WebDAVDownload:
125         ExternalURL: https://download.fixme.example.net
126       WebShell:
127         ExternalURL: https://webshell.fixme.example.net
128       Websocket:
129         ExternalURL: wss://ws.fixme.example.net/websocket
130         InternalURLs:
131           http://127.0.0.2:8005: {}
132       Workbench1:
133         ExternalURL: https://workbench.fixme.example.net
134       Workbench2:
135         ExternalURL: https://workbench2.fixme.example.net