3 # Copyright (C) The Arvados Authors. All rights reserved.
5 # SPDX-License-Identifier: CC-BY-SA-3.0
10 # Helps manage the configuration in a git repository, and then deploy
11 # nodes by pushing a copy of the git repository to each node and
12 # running the provision script to do the actual installation and
20 declare CONFIG_FILE=local.params
22 # The salt template directory
23 declare CONFIG_DIR=local_config_dir
25 # The 5-character Arvados cluster id
26 # This will be populated by loadconfig()
29 # The parent domain (not including the cluster id)
30 # This will be populated by loadconfig()
33 # A bash associative array listing each node and mapping to the roles
34 # that should be provisioned on those nodes.
35 # This will be populated by loadconfig()
38 # The ssh user we'll use
39 # This will be populated by loadconfig()
42 # The git repository that we'll push to on all the nodes
43 # This will be populated by loadconfig()
46 # The public host used as an SSH jump host
47 # This will be populated by loadconfig()
48 declare USE_SSH_JUMPHOST
57 if [[ -n "$MISSING" ]] ; then
58 echo "Some tools are missing, please make sure you have the 'git' and 'iproute2' packages installed"
67 # Synchronizes the configuration by creating a git repository on
68 # each node, pushing our branch, and updating the checkout.
70 if [[ "$NODE" != localhost ]] ; then
72 GIT="eval `git_cmd $NODE`"
73 if ! $SSH $DEPLOY_USER@$NODE test -d ${GITTARGET}.git ; then
75 # Initialize the git repository (1st time case). We're
76 # actually going to make two repositories here because git
77 # will complain if you try to push to a repository with a
78 # checkout. So we're going to create a "bare" repository
79 # and then clone a regular repository (with a checkout)
82 $SSH $DEPLOY_USER@$NODE git init --bare --shared=0600 ${GITTARGET}.git
83 if ! $GIT remote add $NODE $DEPLOY_USER@$NODE:${GITTARGET}.git ; then
84 $GIT remote set-url $NODE $DEPLOY_USER@$NODE:${GITTARGET}.git
86 $GIT push $NODE $BRANCH
87 $SSH $DEPLOY_USER@$NODE "umask 0077 && git clone ${GITTARGET}.git ${GITTARGET}"
92 # Push to the bare repository on the remote node, then in the
93 # remote node repository with the checkout, pull the branch
94 # from the bare repository.
96 $GIT push $NODE $BRANCH
97 $SSH $DEPLOY_USER@$NODE "git -C ${GITTARGET} checkout ${BRANCH} && git -C ${GITTARGET} pull"
105 # Deploy a node. This runs the provision script on the node, with
106 # the appropriate roles.
108 if [[ -z "$ROLES" ]] ; then
109 echo "No roles specified for $NODE, will deploy all roles"
111 ROLES="--roles ${ROLES}"
114 logfile=deploy-${NODE}-$(date -Iseconds).log
115 SSH=`ssh_cmd "$NODE"`
117 if [[ "$NODE" = localhost ]] ; then
119 if [[ $(whoami) != 'root' ]] ; then
122 $SUDO ./provision.sh --config ${CONFIG_FILE} ${ROLES} 2>&1 | tee $logfile
124 $SSH $DEPLOY_USER@$NODE "cd ${GITTARGET} && sudo ./provision.sh --config ${CONFIG_FILE} ${ROLES}" 2>&1 | tee $logfile
129 if [[ ! -s $CONFIG_FILE ]] ; then
130 echo "Must be run from initialized setup dir, maybe you need to 'initialize' first?"
132 source ${CONFIG_FILE}
133 GITTARGET=arvados-deploy-config-${CLUSTER}
138 if [ -z "${USE_SSH_JUMPHOST}" -o "${NODE}" == "${USE_SSH_JUMPHOST}" -o "${NODE}" == "localhost" ]; then
141 echo "ssh -J ${DEPLOY_USER}@${USE_SSH_JUMPHOST}"
147 echo "GIT_SSH_COMMAND=\"`ssh_cmd ${NODE}`\" git"
154 if [[ -n "$subcmd" ]] ; then
159 if [[ ! -f provision.sh ]] ; then
160 echo "Must be run from arvados/tools/salt-install"
174 if [[ -z "$PARAMS" || ! -f local.params.example.$PARAMS ]] ; then
175 echo "Not found: local.params.example.$PARAMS"
176 echo "Expected one of multiple_hosts, single_host_multiple_hostnames, single_host_single_hostname"
180 if [[ -z "$SLS" || ! -d config_examples/$SLS ]] ; then
181 echo "Not found: config_examples/$SLS"
182 echo "Expected one of multi_host/aws, single_host/multiple_hostnames, single_host/single_hostname"
186 if [[ -z "$SETUPDIR" || -z "$PARAMS" || -z "$SLS" ]]; then
187 echo "installer.sh <setup dir to initialize> <params template> <config template>"
191 if [[ -n "$err" ]] ; then
195 echo "Initializing $SETUPDIR"
196 git init --shared=0600 $SETUPDIR
197 cp -r *.sh tests $SETUPDIR
199 cp local.params.example.$PARAMS $SETUPDIR/${CONFIG_FILE}
200 cp -r config_examples/$SLS $SETUPDIR/${CONFIG_DIR}
202 if [[ -n "$TERRAFORM" ]] ; then
203 mkdir $SETUPDIR/terraform
204 cp -r $TERRAFORM/* $SETUPDIR/terraform/
205 cp $TERRAFORM/.gitignore $SETUPDIR/terraform/
209 echo '*.log' > .gitignore
211 if [[ -n "$TERRAFORM" ]] ; then
215 git add *.sh ${CONFIG_FILE} ${CONFIG_DIR} tests .gitignore
216 git commit -m"initial commit"
219 echo "Setup directory $SETUPDIR initialized."
220 if [[ -n "$TERRAFORM" ]] ; then
221 (cd $SETUPDIR/terraform/vpc && terraform init)
222 (cd $SETUPDIR/terraform/data-storage && terraform init)
223 (cd $SETUPDIR/terraform/services && terraform init)
224 echo "Now go to $SETUPDIR, customize 'terraform/vpc/terraform.tfvars' as needed, then run 'installer.sh terraform'"
226 echo "Now go to $SETUPDIR, customize '${CONFIG_FILE}' and '${CONFIG_DIR}' as needed, then run 'installer.sh deploy'"
231 logfile=terraform-$(date -Iseconds).log
232 (cd terraform/vpc && terraform apply -auto-approve) 2>&1 | tee -a $logfile
233 (cd terraform/data-storage && terraform apply -auto-approve) 2>&1 | tee -a $logfile
234 (cd terraform/services && terraform apply -auto-approve) 2>&1 | grep -v letsencrypt_iam_secret_access_key | tee -a $logfile
235 (cd terraform/services && echo -n 'letsencrypt_iam_secret_access_key = ' && terraform output letsencrypt_iam_secret_access_key) 2>&1 | tee -a $logfile
239 for i in BLOB_SIGNING_KEY MANAGEMENT_TOKEN SYSTEM_ROOT_TOKEN ANONYMOUS_USER_TOKEN WORKBENCH_SECRET_KEY DATABASE_PASSWORD; do
240 echo ${i}=$(tr -dc A-Za-z0-9 </dev/urandom | head -c 32 ; echo '')
253 if grep -rni 'fixme' ${CONFIG_FILE} ${CONFIG_DIR} ; then
255 echo "Some parameters still need to be updated. Please fix them and then re-run deploy."
259 BRANCH=$(git branch --show-current)
264 if ! git diff --cached --exit-code ; then
265 git commit -m"prepare for deploy"
268 if [[ -z "$NODE" ]]; then
269 for NODE in "${!NODES[@]}"
271 # First, push the git repo to each node. This also
272 # confirms that we have git and can log into each
277 for NODE in "${!NODES[@]}"
279 # Do 'database' role first,
280 if [[ "${NODES[$NODE]}" =~ database ]] ; then
281 deploynode $NODE "${NODES[$NODE]}"
286 for NODE in "${!NODES[@]}"
288 # then 'api' or 'controller' roles
289 if [[ "${NODES[$NODE]}" =~ (api|controller) ]] ; then
290 deploynode $NODE "${NODES[$NODE]}"
295 for NODE in "${!NODES[@]}"
297 # Everything else (we removed the nodes that we
298 # already deployed from the list)
299 deploynode $NODE "${NODES[$NODE]}"
302 # Just deploy the node that was supplied on the command line.
304 deploynode $NODE "${NODES[$NODE]}"
309 echo "Completed deploy, run 'installer.sh diagnostics' to verify the install"
320 if ! which arvados-client ; then
321 echo "arvados-client not found, install 'arvados-client' package with 'apt-get' or 'yum'"
325 if [[ -z "$LOCATION" ]] ; then
326 echo "Need to provide '-internal-client' or '-external-client'"
328 echo "-internal-client You are running this on the same private network as the Arvados cluster (e.g. on one of the Arvados nodes)"
329 echo "-external-client You are running this outside the private network of the Arvados cluster (e.g. your workstation)"
333 export ARVADOS_API_HOST="${CLUSTER}.${DOMAIN}:${CONTROLLER_EXT_SSL_PORT}"
334 export ARVADOS_API_TOKEN="$SYSTEM_ROOT_TOKEN"
336 arvados-client diagnostics $LOCATION
340 echo "Arvados installer"
342 echo "initialize initialize the setup directory for configuration"
343 echo "terraform create cloud resources using terraform"
344 echo "generate-tokens generate random values for tokens"
345 echo "deploy deploy the configuration from the setup directory"
346 echo "diagnostics check your install using diagnostics"