X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/431b8df752ca99dd8aa777864f7c5ada650d0ac9..9d095072a57089b4858b632199f3b57871458dee:/tools/salt-install/local.params.example.multiple_hosts diff --git a/tools/salt-install/local.params.example.multiple_hosts b/tools/salt-install/local.params.example.multiple_hosts index 86f28be37c..c6f196ca9a 100644 --- a/tools/salt-install/local.params.example.multiple_hosts +++ b/tools/salt-install/local.params.example.multiple_hosts @@ -26,20 +26,23 @@ WORKBENCH2_EXT_SSL_PORT=443 # Internal IPs for the configuration CLUSTER_INT_CIDR=10.0.0.0/16 + +# Note the IPs in this example are shared between roles, as suggested in +# https://doc.arvados.org/main/install/salt-multi-host.html CONTROLLER_INT_IP=10.0.0.1 WEBSOCKET_INT_IP=10.0.0.1 KEEP_INT_IP=10.0.0.2 +# Both for collections and downloads +KEEPWEB_INT_IP=10.0.0.2 KEEPSTORE0_INT_IP=10.0.0.3 KEEPSTORE1_INT_IP=10.0.0.4 -# Both for collections and downloads -KEEPWEB_INT_IP=10.0.0.5 -WEBSHELL_INT_IP=10.0.0.6 -WORKBENCH1_INT_IP=10.0.0.7 -WORKBENCH2_INT_IP=10.0.0.7 -DATABASE_INT_IP=10.0.0.8 +WORKBENCH1_INT_IP=10.0.0.5 +WORKBENCH2_INT_IP=10.0.0.5 +WEBSHELL_INT_IP=10.0.0.5 +DATABASE_INT_IP=10.0.0.6 +SHELL_INT_IP=10.0.0.7 INITIAL_USER="admin" -INITIAL_USER_PASSWORD="password" # If not specified, the initial user email will be composed as # INITIAL_USER@CLUSTER.DOMAIN @@ -60,7 +63,7 @@ DATABASE_PASSWORD=please_set_this_to_some_secure_value # salt formula (https://github.com/saltstack-formulas/letsencrypt-formula) to try to # automatically obtain and install SSL certificates for your instances or set this # variable to "no", provide and upload your own certificates to the instances and -# modify the 'nginx_*' salt pillars accordingly +# modify the 'nginx_*' salt pillars accordingly (see CUSTOM_CERTS_DIR below) USE_LETSENCRYPT="yes" USE_LETSENCRYPT_IAM_USER="yes" # For collections, we need to obtain a wildcard certificate for @@ -72,12 +75,35 @@ LE_AWS_REGION="us-east-1" LE_AWS_ACCESS_KEY_ID="AKIABCDEFGHIJKLMNOPQ" LE_AWS_SECRET_ACCESS_KEY="thisistherandomstringthatisyoursecretkey" +# If you going to provide your own certificates for Arvados, the provision script can +# help you deploy them. In order to do that, you need to set `USE_LETSENCRYPT=no` above, +# and copy the required certificates under the directory specified in the next line. +# The certs will be copied from this directory by the provision script. +# Please set it to the FULL PATH to the certs dir if you're going to use a different dir +# Default is "${SCRIPT_DIR}/certs", where the variable "SCRIPT_DIR" has the path to the +# directory where the "provision.sh" script was copied in the destination host. +# CUSTOM_CERTS_DIR="${SCRIPT_DIR}/certs" +# The script expects cert/key files with these basenames (matching the role except for +# keepweb, which is split in both download/collections): +# "controller" +# "websocket" +# "workbench" +# "workbench2" +# "webshell" +# "download" # Part of keepweb +# "collections" # Part of keepweb +# "keepproxy" # Keepproxy +# Ie., 'keep', the script will lookup for +# ${CUSTOM_CERTS_DIR}/keepproxy.crt +# ${CUSTOM_CERTS_DIR}/keepproxy.key + # The directory to check for the config files (pillars, states) you want to use. # There are a few examples under 'config_examples'. # CONFIG_DIR="local_config_dir" # Extra states to apply. If you use your own subdir, change this value accordingly # EXTRA_STATES_DIR="${CONFIG_DIR}/states" +# These are ARVADOS-related settings. # Which release of Arvados repo you want to use RELEASE="production" # Which version of Arvados you want to install. Defaults to latest stable @@ -86,15 +112,15 @@ RELEASE="production" # This is an arvados-formula setting. # If branch is set, the script will switch to it before running salt # Usually not needed, only used for testing -# BRANCH="master" +# BRANCH="main" ########################################################## # Usually there's no need to modify things below this line # Formulas versions -# ARVADOS_TAG="v1.1.4" +# ARVADOS_TAG="2.2.0" # POSTGRES_TAG="v0.41.6" # NGINX_TAG="temp-fix-missing-statements-in-pillar" -# DOCKER_TAG="v1.0.0" +# DOCKER_TAG="v2.0.7" # LOCALE_TAG="v0.3.4" # LETSENCRYPT_TAG="v2.1.0"