helm: Add a Helm chart for installing Arvados
[arvados-k8s.git] / arvados / config / workbench / application.yml
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 # Copy this file to application.yml and edit to suit.
6 #
7 # Consult application.default.yml for the full list of configuration
8 # settings.
9 #
10 # The order of precedence is:
11 # 1. config/environments/{RAILS_ENV}.rb (deprecated)
12 # 2. Section in application.yml corresponding to RAILS_ENV (e.g., development)
13 # 3. Section in application.yml called "common"
14 # 4. Section in application.default.yml corresponding to RAILS_ENV
15 # 5. Section in application.default.yml called "common"
16
17 development:
18   # At minimum, you need a nice long randomly generated secret_token here.
19   secret_token: ~
20
21   # You probably also want to point to your API server.
22   arvados_login_base: https://arvados.local:3030/login
23   arvados_v1_base: https://arvados.local:3030/arvados/v1
24   arvados_insecure_https: true
25
26   # You need to configure at least one of these:
27   keep_web_url: false
28   keep_web_download_url: false
29
30 production:
31   # At minimum, you need a nice long randomly generated secret_token here.
32   secret_token: 69f1fd650250e925cb1d9428094add92
33
34   # You probably also want to point to your API server.
35   arvados_login_base: https://8.8.8.8:444/login
36   arvados_v1_base: https://8.8.8.8:444/arvados/v1
37   arvados_insecure_https: true # TODO: Change this to false.
38
39   # You need to configure at least one of these:
40   keep_web_url: https://8.8.8.8:9002/c=%{uuid_or_pdh}
41   keep_web_download_url: https://8.8.8.8:9002/c=%{uuid_or_pdh}
42   trust_all_content: true # TODO: remove this.