feat(provision): pin arvados version to latest stable
[arvados.git] / tools / salt-install / local.params.example.multiple_hosts
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 # Host SSL port where you want to point your browser to access Arvados
15 # Defaults to 443 for regular runs, and to 8443 when called in Vagrant.
16 # You can point it to another port if desired
17 # In Vagrant, make sure it matches what you set in the Vagrantfile (8443)
18 CONTROLLER_EXT_SSL_PORT=443
19 KEEP_EXT_SSL_PORT=443
20 # Both for collections and downloads
21 KEEPWEB_EXT_SSL_PORT=443
22 WEBSHELL_EXT_SSL_PORT=443
23 WEBSOCKET_EXT_SSL_PORT=443
24 WORKBENCH1_EXT_SSL_PORT=443
25 WORKBENCH2_EXT_SSL_PORT=443
26
27 # Internal IPs for the configuration
28 CLUSTER_INT_CIDR=10.0.0.0/16
29 CONTROLLER_INT_IP=10.0.0.1
30 WEBSOCKET_INT_IP=10.0.0.1
31 KEEP_INT_IP=10.0.0.2
32 KEEPSTORE0_INT_IP=10.0.0.3
33 KEEPSTORE1_INT_IP=10.0.0.4
34 # Both for collections and downloads
35 KEEPWEB_INT_IP=10.0.0.5
36 WEBSHELL_INT_IP=10.0.0.6
37 WORKBENCH1_INT_IP=10.0.0.7
38 WORKBENCH2_INT_IP=10.0.0.7
39 DATABASE_INT_IP=10.0.0.8
40
41 INITIAL_USER="admin"
42 INITIAL_USER_PASSWORD="password"
43
44 # If not specified, the initial user email will be composed as
45 # INITIAL_USER@CLUSTER.DOMAIN
46 INITIAL_USER_EMAIL="admin@cluster_fixme_or_this_wont_work.domain_fixme_or_this_wont_work"
47 INITIAL_USER_PASSWORD="password"
48
49 # YOU SHOULD CHANGE THESE TO SOME RANDOM STRINGS
50 BLOB_SIGNING_KEY=blobsigningkeymushaveatleast32characters
51 MANAGEMENT_TOKEN=managementtokenmushaveatleast32characters
52 SYSTEM_ROOT_TOKEN=systemroottokenmushaveatleast32characters
53 ANONYMOUS_USER_TOKEN=anonymoususertokenmushaveatleast32characters
54 WORKBENCH_SECRET_KEY=workbenchsecretkeymushaveatleast32characters
55 DATABASE_PASSWORD=please_set_this_to_some_secure_value
56
57 # SSL CERTIFICATES
58 # Arvados REQUIRES valid SSL to work correctly. Otherwise, some components will fail
59 # to communicate and can silently drop traffic. You can try to use the Letsencrypt
60 # salt formula (https://github.com/saltstack-formulas/letsencrypt-formula) to try to
61 # automatically obtain and install SSL certificates for your instances or set this
62 # variable to "no", provide and upload your own certificates to the instances and
63 # modify the 'nginx_*' salt pillars accordingly
64 USE_LETSENCRYPT="yes"
65
66 # The directory to check for the config files (pillars, states) you want to use.
67 # There are a few examples under 'config_examples'.
68 # CONFIG_DIR="local_config_dir"
69 # Extra states to apply. If you use your own subdir, change this value accordingly
70 # EXTRA_STATES_DIR="${CONFIG_DIR}/states"
71
72 # Which release of Arvados repo you want to use
73 RELEASE="production"
74 # Which version of Arvados you want to install. Defaults to latest stable
75 # VERSION="2.1.2-1"
76
77 # This is an arvados-formula setting.
78 # If branch is set, the script will switch to it before running salt
79 # Usually not needed, only used for testing
80 # BRANCH="master"
81
82 ##########################################################
83 # Usually there's no need to modify things below this line
84
85 # Formulas versions
86 # ARVADOS_TAG="v1.1.4"
87 # POSTGRES_TAG="v0.41.6"
88 # NGINX_TAG="temp-fix-missing-statements-in-pillar"
89 # DOCKER_TAG="v1.0.0"
90 # LOCALE_TAG="v0.3.4"
91 # LETSENCRYPT_TAG="v2.1.0"