feat(provision): refactor to add other setup examples
[arvados.git] / tools / salt-install / local.params.example
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 5 letters name you want to give your cluster
9 CLUSTER="fixme"
10
11 # The domainname you want tou give to your cluster's hosts
12 DOMAIN="some.domain"
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
20 HOSTNAME_INT="127.0.1.1"
21 CONTROLLER_EXT_SSL_PORT=8000
22 KEEP_EXT_SSL_PORT=25101
23 # Both for collections and downloads
24 KEEPWEB_EXT_SSL_PORT=9002
25 WEBSHELL_EXT_SSL_PORT=4202
26 WEBSOCKET_EXT_SSL_PORT=8002
27 WORKBENCH1_EXT_SSL_PORT=443
28 WORKBENCH2_EXT_SSL_PORT=3001
29
30 INITIAL_USER="admin"
31
32 # If not specified, the initial user email will be composed as
33 # INITIAL_USER@CLUSTER.DOMAIN
34 INITIAL_USER_EMAIL="admin@fixme.localdomain"
35 INITIAL_USER_PASSWORD="password"
36
37 # YOU SHOULD CHANGE THESE TO SOME RANDOM STRINGS
38 BLOB_SIGNING_KEY=blobsigningkeymushaveatleast32characters
39 MANAGEMENT_TOKEN=managementtokenmushaveatleast32characters
40 SYSTEM_ROOT_TOKEN=systemroottokenmushaveatleast32characters
41 RAILS_SECRET_TOKEN=railssecrettokenmushaveatleast32characters
42 ANONYMOUS_USER_TOKEN=anonymoususertokenmushaveatleast32characters
43 WORKBENCH_SECRET_KEY=workbenchsecretkeymushaveatleast32characters
44
45 # The example config files you want to use. There are a few examples
46 # under 'config_examples' 
47 CONFIG_DIR="config_examples/single_host/single_hostname"
48
49 # Which release of Arvados repo you want to use
50 RELEASE="production"
51 # Which version of Arvados you want to install. Defaults to 'latest'
52 # in the desired repo
53 VERSION="latest"
54
55 # Host SSL port where you want to point your browser to access Arvados
56 # Defaults to 443 for regular runs, and to 8443 when called in Vagrant.
57 # You can point it to another port if desired
58 # In Vagrant, make sure it matches what you set in the Vagrantfile
59 HOST_SSL_PORT=443
60
61 # This is an arvados-formula setting.
62 # If branch is set, the script will switch to it before running salt
63 # Usually not needed, only used for testing
64 BRANCH="master"
65
66 ##########################################################
67 # Usually there's no need to modify things below this line
68
69 # Formulas versions
70 ARVADOS_TAG="v1.1.4"
71 POSTGRES_TAG="v0.41.3"
72 NGINX_TAG="v2.4.0"
73 DOCKER_TAG="v1.0.0"
74 LOCALE_TAG="v0.3.4"