X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1c064386fd4ae04f349ca629beb13aa10a4d421b..8c0c1450726388aff2cb7d1986c9e78726659f2a:/tools/salt-install/installer.sh diff --git a/tools/salt-install/installer.sh b/tools/salt-install/installer.sh index ea79cfd660..0cb4b6e09e 100755 --- a/tools/salt-install/installer.sh +++ b/tools/salt-install/installer.sh @@ -14,6 +14,7 @@ # set -eu +set -o pipefail # The parameter file declare CONFIG_FILE=local.params @@ -43,7 +44,7 @@ declare DEPLOY_USER declare GITTARGET checktools() { - MISSING='' + local MISSING='' for a in git ip ; do if ! which $a ; then MISSING="$MISSING $a" @@ -63,7 +64,7 @@ sync() { # each node, pushing our branch, and updating the checkout. if [[ "$NODE" != localhost ]] ; then - if ! ssh $NODE test -d ${GITTARGET}.git ; then + if ! ssh $DEPLOY_USER@$NODE test -d ${GITTARGET}.git ; then # Initialize the git repository (1st time case). We're # actually going to make two repositories here because git @@ -72,12 +73,12 @@ sync() { # and then clone a regular repository (with a checkout) # from that. - ssh $NODE git init --bare ${GITTARGET}.git + ssh $DEPLOY_USER@$NODE git init --bare ${GITTARGET}.git if ! git remote add $NODE $DEPLOY_USER@$NODE:${GITTARGET}.git ; then - git remote set-url $NODE $DEPLOY_USER@$NODE:${GITTARGET}.git + git remote set-url $NODE $DEPLOY_USER@$NODE:${GITTARGET}.git fi git push $NODE $BRANCH - ssh $NODE git clone ${GITTARGET}.git ${GITTARGET} + ssh $DEPLOY_USER@$NODE git clone ${GITTARGET}.git ${GITTARGET} fi # The update case. @@ -87,7 +88,7 @@ sync() { # from the bare repository. git push $NODE $BRANCH - ssh $NODE "git -C ${GITTARGET} checkout ${BRANCH} && git -C ${GITTARGET} pull" + ssh $DEPLOY_USER@$NODE "git -C ${GITTARGET} checkout ${BRANCH} && git -C ${GITTARGET} pull" fi } @@ -99,8 +100,9 @@ deploynode() { # the appropriate roles. if [[ -z "$ROLES" ]] ; then - echo "No roles declared for '$NODE' in ${CONFIG_FILE}" - exit 1 + echo "No roles specified for $NODE, will deploy all roles" + else + ROLES="--roles ${ROLES}" fi logfile=deploy-${NODE}-$(date -Iseconds).log @@ -110,9 +112,9 @@ deploynode() { if [[ $(whoami) != 'root' ]] ; then SUDO=sudo fi - $SUDO ./provision.sh --config ${CONFIG_FILE} --roles ${ROLES} 2>&1 | tee $logfile + $SUDO ./provision.sh --config ${CONFIG_FILE} ${ROLES} 2>&1 | tee $logfile else - ssh $DEPLOY_USER@$NODE "cd ${GITTARGET} && sudo ./provision.sh --config ${CONFIG_FILE} --roles ${ROLES}" 2>&1 | tee $logfile + ssh $DEPLOY_USER@$NODE "cd ${GITTARGET} && sudo ./provision.sh --config ${CONFIG_FILE} ${ROLES}" 2>&1 | tee $logfile fi } @@ -124,7 +126,10 @@ loadconfig() { GITTARGET=arvados-deploy-config-${CLUSTER} } +set +u subcmd="$1" +set -u + if [[ -n "$subcmd" ]] ; then shift fi @@ -141,6 +146,7 @@ case "$subcmd" in SETUPDIR=$1 PARAMS=$2 SLS=$3 + TERRAFORM=$4 set -u err= @@ -172,14 +178,43 @@ case "$subcmd" in cp local.params.example.$PARAMS $SETUPDIR/${CONFIG_FILE} cp -r config_examples/$SLS $SETUPDIR/${CONFIG_DIR} + if [[ -n "$TERRAFORM" ]] ; then + mkdir $SETUPDIR/terraform + cp -r $TERRAFORM/* $SETUPDIR/terraform/ + fi + cd $SETUPDIR echo '*.log' > .gitignore git add *.sh ${CONFIG_FILE} ${CONFIG_DIR} tests .gitignore git commit -m"initial commit" - echo "setup directory initialized, now go to $SETUPDIR, edit '${CONFIG_FILE}' and '${CONFIG_DIR}' as needed, then run 'installer.sh deploy'" + echo + echo "Setup directory $SETUPDIR initialized." + if [[ -n "$TERRAFORM" ]] ; then + (cd $SETUPDIR/terraform/vpc && terraform init) + (cd $SETUPDIR/terraform/data-storage && terraform init) + (cd $SETUPDIR/terraform/services && terraform init) + echo "Now go to $SETUPDIR, customize 'terraform/vpc/terraform.tfvars' as needed, then run 'installer.sh terraform'" + else + echo "Now go to $SETUPDIR, customize '${CONFIG_FILE}' and '${CONFIG_DIR}' as needed, then run 'installer.sh deploy'" + fi ;; + + terraform) + logfile=terraform-$(date -Iseconds).log + (cd terraform/vpc && terraform apply) 2>&1 | tee -a $logfile + (cd terraform/data-storage && terraform apply) 2>&1 | tee -a $logfile + (cd terraform/services && terraform apply) 2>&1 | grep -v letsencrypt_iam_secret_access_key | tee -a $logfile + (cd terraform/services && echo -n 'letsencrypt_iam_secret_access_key = ' && terraform output letsencrypt_iam_secret_access_key) 2>&1 | tee -a $logfile + ;; + + generate-tokens) + for i in BLOB_SIGNING_KEY MANAGEMENT_TOKEN SYSTEM_ROOT_TOKEN ANONYMOUS_USER_TOKEN WORKBENCH_SECRET_KEY DATABASE_PASSWORD; do + echo ${i}=$(tr -dc A-Za-z0-9