1 ##########################################################
2 # Copyright (C) The Arvados Authors. All rights reserved.
4 # SPDX-License-Identifier: CC-BY-SA-3.0
6 # These are the basic parameters to configure the installation
8 # The FIVE ALPHANUMERIC CHARACTERS name you want to give your cluster
9 CLUSTER="cluster_fixme_or_this_wont_work"
11 # The domainname you want tou give to your cluster's hosts
12 DOMAIN="domain_fixme_or_this_wont_work"
14 # External ports used by the Arvados services
15 CONTROLLER_EXT_SSL_PORT=443
16 KEEP_EXT_SSL_PORT=25101
17 KEEPWEB_EXT_SSL_PORT=9002
18 WEBSHELL_EXT_SSL_PORT=4202
19 WEBSOCKET_EXT_SSL_PORT=8002
20 WORKBENCH1_EXT_SSL_PORT=443
21 WORKBENCH2_EXT_SSL_PORT=3001
24 # If not specified, the initial user email will be composed as
25 # INITIAL_USER@CLUSTER.DOMAIN
26 INITIAL_USER_EMAIL="admin@cluster_fixme_or_this_wont_work.domain_fixme_or_this_wont_work"
27 INITIAL_USER_PASSWORD="password"
29 # YOU SHOULD CHANGE THESE TO SOME RANDOM STRINGS
30 BLOB_SIGNING_KEY=blobsigningkeymushaveatleast32characters
31 MANAGEMENT_TOKEN=managementtokenmushaveatleast32characters
32 SYSTEM_ROOT_TOKEN=systemroottokenmushaveatleast32characters
33 ANONYMOUS_USER_TOKEN=anonymoususertokenmushaveatleast32characters
34 WORKBENCH_SECRET_KEY=workbenchsecretkeymushaveatleast32characters
35 DATABASE_PASSWORD=please_set_this_to_some_secure_value
38 # Arvados requires SSL certificates to work correctly. This installer supports these options:
39 # * self-signed: let the installer create self-signed certificate(s)
40 # * bring-your-own: supply your own certificate(s) in the `certs` directory
41 # * lets-encrypt: automatically obtain and install SSL certificates for your hostname(s)
43 # See https://doc.arvados.org/intall/salt-single-host.html#certificates for more information.
44 SSL_MODE="self-signed"
46 # CUSTOM_CERTS_DIR is only used when SSL_MODE is set to "bring-your-own".
47 # See https://doc.arvados.org/intall/salt-single-host.html#bring-your-own for more information.
48 # CUSTOM_CERTS_DIR="${SCRIPT_DIR}/certs"
50 # The directory to check for the config files (pillars, states) you want to use.
51 # There are a few examples under 'config_examples'.
52 # CONFIG_DIR="local_config_dir"
54 # Extra states to apply. If you use your own subdir, change this value accordingly
55 # EXTRA_STATES_DIR="${CONFIG_DIR}/states"
57 # These are ARVADOS-related settings.
58 # Which release of Arvados repo you want to use
60 # Which version of Arvados you want to install. Defaults to latest stable
63 # This is an arvados-formula setting.
64 # If branch is set, the script will switch to it before running salt
65 # Usually not needed, only used for testing
68 ##########################################################
69 # Usually there's no need to modify things below this line
73 # POSTGRES_TAG="v0.44.0"
77 # LETSENCRYPT_TAG="v2.1.0"