18870: git stuff
[arvados.git] / tools / salt-install / local.params.example.single_host_multiple_hostnames
1 ##########################################################
2 # Copyright (C) The Arvados Authors. All rights reserved.
3 #
4 # SPDX-License-Identifier: CC-BY-SA-3.0
5
6 # These are the basic parameters to configure the installation
7
8 # The Arvados cluster ID, needs to be 5 lowercase alphanumeric characters.
9 CLUSTER="cluster_fixme_or_this_wont_work"
10
11 # The domainname you want tou give to your cluster's hosts
12 DOMAIN="domain_fixme_or_this_wont_work"
13
14 # For multi-node installs, the ssh log in for each node
15 # must be root or able to sudo
16 DEPLOY_USER=root
17
18 # The mapping of nodes to roles
19 # installer.sh will log in to each of these nodes and then provision
20 # it for the specified roles.
21 declare -A NODES
22 NODES=(
23   [localhost]=api,controller,websocket,dispatcher,keepbalance,keepstore,keepproxy,keepweb,workbench,workbench2,webshell
24 )
25
26 # External ports used by the Arvados services
27 CONTROLLER_EXT_SSL_PORT=443
28 KEEP_EXT_SSL_PORT=25101
29 KEEPWEB_EXT_SSL_PORT=9002
30 WEBSHELL_EXT_SSL_PORT=4202
31 WEBSOCKET_EXT_SSL_PORT=8002
32 WORKBENCH1_EXT_SSL_PORT=443
33 WORKBENCH2_EXT_SSL_PORT=3001
34
35 INITIAL_USER="admin"
36 # If not specified, the initial user email will be composed as
37 # INITIAL_USER@CLUSTER.DOMAIN
38 INITIAL_USER_EMAIL="admin@cluster_fixme_or_this_wont_work.domain_fixme_or_this_wont_work"
39 INITIAL_USER_PASSWORD="password"
40
41 # YOU SHOULD CHANGE THESE TO SOME RANDOM STRINGS
42 BLOB_SIGNING_KEY=blobsigningkeymushaveatleast32characters
43 MANAGEMENT_TOKEN=managementtokenmushaveatleast32characters
44 SYSTEM_ROOT_TOKEN=systemroottokenmushaveatleast32characters
45 ANONYMOUS_USER_TOKEN=anonymoususertokenmushaveatleast32characters
46 WORKBENCH_SECRET_KEY=workbenchsecretkeymushaveatleast32characters
47 DATABASE_PASSWORD=please_set_this_to_some_secure_value
48
49 # SSL CERTIFICATES
50 # Arvados requires SSL certificates to work correctly. This installer supports these options:
51 # * self-signed: let the installer create self-signed certificate(s)
52 # * bring-your-own: supply your own certificate(s) in the `certs` directory
53 # * lets-encrypt: automatically obtain and install SSL certificates for your hostname(s)
54 #
55 # See https://doc.arvados.org/intall/salt-single-host.html#certificates for more information.
56 SSL_MODE="self-signed"
57
58 # CUSTOM_CERTS_DIR is only used when SSL_MODE is set to "bring-your-own".
59 # See https://doc.arvados.org/intall/salt-single-host.html#bring-your-own for more information.
60 # CUSTOM_CERTS_DIR="${SCRIPT_DIR}/local_config_dir/certs"
61
62 # The directory to check for the config files (pillars, states) you want to use.
63 # There are a few examples under 'config_examples'.
64 # CONFIG_DIR="local_config_dir"
65
66 # Extra states to apply. If you use your own subdir, change this value accordingly
67 # EXTRA_STATES_DIR="${CONFIG_DIR}/states"
68
69 # These are ARVADOS-related settings.
70 # Which release of Arvados repo you want to use
71 RELEASE="production"
72 # Which version of Arvados you want to install. Defaults to latest stable
73 # VERSION="2.1.2-1"
74
75 # This is an arvados-formula setting.
76 # If branch is set, the script will switch to it before running salt
77 # Usually not needed, only used for testing
78 # BRANCH="main"
79
80 ##########################################################
81 # Usually there's no need to modify things below this line
82
83 # Formulas versions
84 # ARVADOS_TAG="2.2.0"
85 # POSTGRES_TAG="v0.44.0"
86 # NGINX_TAG="v2.8.1"
87 # DOCKER_TAG="v2.4.2"
88 # LOCALE_TAG="v0.3.4"
89 # LETSENCRYPT_TAG="v2.1.0"