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