16379: Updates for grafana install
[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 NODES=(
22   [localhost]=''
23 )
24
25 # External ports used by the Arvados services
26 CONTROLLER_EXT_SSL_PORT=443
27 KEEP_EXT_SSL_PORT=25101
28 KEEPWEB_EXT_SSL_PORT=9002
29 WEBSHELL_EXT_SSL_PORT=4202
30 WEBSOCKET_EXT_SSL_PORT=8002
31 WORKBENCH1_EXT_SSL_PORT=443
32 WORKBENCH2_EXT_SSL_PORT=3001
33
34 INITIAL_USER="admin"
35 # If not specified, the initial user email will be composed as
36 # INITIAL_USER@CLUSTER.DOMAIN
37 INITIAL_USER_EMAIL="admin@cluster_fixme_or_this_wont_work.domain_fixme_or_this_wont_work"
38 INITIAL_USER_PASSWORD="password"
39
40 # YOU SHOULD CHANGE THESE TO SOME RANDOM STRINGS
41 BLOB_SIGNING_KEY=fixmeblobsigningkeymushaveatleast32characters
42 MANAGEMENT_TOKEN=fixmemanagementtokenmushaveatleast32characters
43 SYSTEM_ROOT_TOKEN=fixmesystemroottokenmushaveatleast32characters
44 ANONYMOUS_USER_TOKEN=fixmeanonymoususertokenmushaveatleast32characters
45 WORKBENCH_SECRET_KEY=fixmeworkbenchsecretkeymushaveatleast32characters
46 DATABASE_PASSWORD=fixmeplease_set_this_to_some_secure_value
47
48 # SSL CERTIFICATES
49 # Arvados requires SSL certificates to work correctly. This installer supports these options:
50 # * self-signed: let the installer create self-signed certificate(s)
51 # * bring-your-own: supply your own certificate(s) in the `certs` directory
52 # * lets-encrypt: automatically obtain and install SSL certificates for your hostname(s)
53 #
54 # See https://doc.arvados.org/intall/salt-single-host.html#certificates for more information.
55 SSL_MODE="self-signed"
56
57 # CUSTOM_CERTS_DIR is only used when SSL_MODE is set to "bring-your-own".
58 # See https://doc.arvados.org/intall/salt-single-host.html#bring-your-own for more information.
59 # CUSTOM_CERTS_DIR="${SCRIPT_DIR}/local_config_dir/certs"
60
61 # Set the following to "yes" if the key files are encrypted and optionally set
62 # a custom AWS secret name for each node to retrieve the password.
63 SSL_KEY_ENCRYPTED="no"
64 SSL_KEY_AWS_SECRET_NAME="${CLUSTER}-arvados-ssl-privkey-password"
65
66 # Customize Prometheus & Grafana web UI access credentials
67 MONITORING_USERNAME=${INITIAL_USER}
68 MONITORING_PASSWORD=${INITIAL_USER_PASSWORD}
69 MONITORING_EMAIL=${INITIAL_USER_EMAIL}
70 # Sets the directory for Grafana dashboards
71 # GRAFANA_DASHBOARDS_DIR="${SCRIPT_DIR}/local_config_dir/dashboards"
72
73 # The directory to check for the config files (pillars, states) you want to use.
74 # There are a few examples under 'config_examples'.
75 # CONFIG_DIR="local_config_dir"
76
77 # Extra states to apply. If you use your own subdir, change this value accordingly
78 # EXTRA_STATES_DIR="${CONFIG_DIR}/states"
79
80 # These are ARVADOS-related settings.
81 # Which release of Arvados repo you want to use
82 RELEASE="production"
83 # Which version of Arvados you want to install. Defaults to latest stable
84 # VERSION="2.1.2-1"
85
86 # This is an arvados-formula setting.
87 # If branch is set, the script will switch to it before running salt
88 # Usually not needed, only used for testing
89 # BRANCH="main"
90
91 ##########################################################
92 # Usually there's no need to modify things below this line
93
94 # Formulas versions
95 # ARVADOS_TAG="2.2.0"
96 # POSTGRES_TAG="v0.44.0"
97 # NGINX_TAG="v2.8.1"
98 # DOCKER_TAG="v2.4.2"
99 # LOCALE_TAG="v0.3.4"
100 # LETSENCRYPT_TAG="v2.1.0"