fix(provision): force user to properly set cluster & domain parameters
[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 FIVE ALPHANUMERIC CHARACTERS name you want to give your cluster
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 # When setting the cluster in a single host, you can use a single hostname
15 # to access all the instances. When using virtualization (ie AWS), this should be
16 # the EXTERNAL/PUBLIC hostname for the instance.
17 # If empty, the INTERNAL HOST IP will be used
18 HOSTNAME_EXT=""
19 # The internal hostname for the host. In the example files, only used in the
20 # single_host/single_hostname example
21 HOSTNAME_INT="127.0.1.1"
22 # Host SSL port where you want to point your browser to access Arvados
23 # Defaults to 443 for regular runs, and to 8443 when called in Vagrant.
24 # You can point it to another port if desired
25 # In Vagrant, make sure it matches what you set in the Vagrantfile (8443)
26 CONTROLLER_EXT_SSL_PORT=9443
27 KEEP_EXT_SSL_PORT=35101
28 # Both for collections and downloads
29 KEEPWEB_EXT_SSL_PORT=11002
30 WEBSHELL_EXT_SSL_PORT=14202
31 WEBSOCKET_EXT_SSL_PORT=18002
32 WORKBENCH1_EXT_SSL_PORT=9444
33 WORKBENCH2_EXT_SSL_PORT=9445
34
35 INITIAL_USER="admin"
36
37 # If not specified, the initial user email will be composed as
38 # INITIAL_USER@CLUSTER.DOMAIN
39 INITIAL_USER_EMAIL="admin@cluster_fixme_or_this_wont_work.domain_fixme_or_this_wont_work"
40 INITIAL_USER_PASSWORD="password"
41
42 # YOU SHOULD CHANGE THESE TO SOME RANDOM STRINGS
43 BLOB_SIGNING_KEY=blobsigningkeymushaveatleast32characters
44 MANAGEMENT_TOKEN=managementtokenmushaveatleast32characters
45 SYSTEM_ROOT_TOKEN=systemroottokenmushaveatleast32characters
46 ANONYMOUS_USER_TOKEN=anonymoususertokenmushaveatleast32characters
47 WORKBENCH_SECRET_KEY=workbenchsecretkeymushaveatleast32characters
48
49 # The directory to check for the config files (pillars, states) you want to use.
50 # There are a few examples under 'config_examples'. If you don't change this
51 # variable, the single_host, multiple_hostnames config will be used
52 # CONFIG_DIR="config_examples/single_host/single_hostname"
53 CONFIG_DIR="config_examples/single_host/single_hostname"
54 # Extra states to apply. If you use your own subdir, change this value accordingly
55 # This is the value for the single_host/multiple_hostnames example
56 # EXTRA_STATES_DIR="${F_DIR}/arvados-formula/test/salt/states/examples/single_host"
57
58 # When using the single_host/single_hostname example, change to this one
59 EXTRA_STATES_DIR="${CONFIG_DIR}/states"
60
61 # Which release of Arvados repo you want to use
62 RELEASE="production"
63 # Which version of Arvados you want to install. Defaults to 'latest'
64 # in the desired repo
65 VERSION="latest"
66
67 # This is an arvados-formula setting.
68 # If branch is set, the script will switch to it before running salt
69 # Usually not needed, only used for testing
70 # BRANCH="master"
71
72 ##########################################################
73 # Usually there's no need to modify things below this line
74
75 # Formulas versions
76 ARVADOS_TAG="v1.1.4"
77 POSTGRES_TAG="v0.41.3"
78 NGINX_TAG="v2.4.0"
79 DOCKER_TAG="v1.0.0"
80 LOCALE_TAG="v0.3.4"