Merge branch '18681-install-passenger-only-when-required'
[arvados.git] / tools / salt-install / local.params.example.single_host_single_hostname
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 five alphanumeric characters.
9 CLUSTER="cluster_fixme_or_this_wont_work"
10
11 # The domainname for your cluster's hosts
12 DOMAIN="domain_fixme_or_this_wont_work"
13
14 # Set this value when installing a cluster in a single host with a single
15 # hostname to access all the instances. HOSTNAME_EXT should be set to the
16 # external hostname for the instance.
17 HOSTNAME_EXT="hostname_ext_fixme_or_this_wont_work"
18
19 # The internal IP address for the host.
20 IP_INT="ip_int_fixme_or_this_wont_work"
21
22 # External ports used by the Arvados services
23 CONTROLLER_EXT_SSL_PORT=8800
24 KEEP_EXT_SSL_PORT=8801
25 KEEPWEB_EXT_SSL_PORT=8802
26 WEBSHELL_EXT_SSL_PORT=8803
27 WEBSOCKET_EXT_SSL_PORT=8804
28 WORKBENCH1_EXT_SSL_PORT=8805
29 WORKBENCH2_EXT_SSL_PORT=443
30
31 INITIAL_USER="admin"
32 # If not specified, the initial user email will be composed as
33 # INITIAL_USER@CLUSTER.DOMAIN
34 INITIAL_USER_EMAIL="admin@cluster_fixme_or_this_wont_work.domain_fixme_or_this_wont_work"
35 INITIAL_USER_PASSWORD="password"
36
37 # Populate these values with random strings
38 BLOB_SIGNING_KEY=blobsigningkeymushaveatleast32characters
39 MANAGEMENT_TOKEN=managementtokenmushaveatleast32characters
40 SYSTEM_ROOT_TOKEN=systemroottokenmushaveatleast32characters
41 ANONYMOUS_USER_TOKEN=anonymoususertokenmushaveatleast32characters
42 WORKBENCH_SECRET_KEY=workbenchsecretkeymushaveatleast32characters
43 DATABASE_PASSWORD=please_set_this_to_some_secure_value
44
45 # SSL CERTIFICATES
46 # Arvados requires SSL certificates to work correctly. This installer supports these options:
47 # * self-signed: let the installer create self-signed certificate(s)
48 # * bring-your-own: supply your own certificate(s) in the `certs` directory
49 # * lets-encrypt: automatically obtain and install SSL certificates for your hostname(s)
50 #
51 # See https://doc.arvados.org/intall/salt-single-host.html#certificates for more information.
52 SSL_MODE="self-signed"
53
54 # CUSTOM_CERTS_DIR is only used when SSL_MODE is set to "bring-your-own".
55 # See https://doc.arvados.org/intall/salt-single-host.html#bring-your-own for more information.
56 # CUSTOM_CERTS_DIR="${SCRIPT_DIR}/certs"
57
58 # The directory to check for the config files (pillars, states) you want to use.
59 # There are a few examples under 'config_examples'.
60 # CONFIG_DIR="local_config_dir"
61
62 # Extra states to apply. If you use your own subdir, change this value accordingly
63 # EXTRA_STATES_DIR="${CONFIG_DIR}/states"
64
65 # These are ARVADOS-related settings.
66 # Which release of Arvados repo you want to use
67 RELEASE="production"
68 # Which version of Arvados you want to install. Defaults to latest stable
69 # VERSION="2.1.2-1"
70
71 # This is an arvados-formula setting.
72 # If branch is set, the script will switch to it before running salt
73 # Usually not needed, only used for testing
74 # BRANCH="main"
75
76 ##########################################################
77 # Usually there's no need to modify things below this line
78
79 # Formulas versions
80 # ARVADOS_TAG="2.2.0"
81 # POSTGRES_TAG="v0.44.0"
82 # NGINX_TAG="v2.8.1"
83 # DOCKER_TAG="v2.4.2"
84 # LOCALE_TAG="v0.3.4"
85 # LETSENCRYPT_TAG="v2.1.0"