ac668b2b00a12ce514ce47ea6309fae42774a3ac
[releng.git] / jjb / armband / armband-deploy.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2017 Ericsson AB, Mirantis Inc., Enea Software AB and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10 set -o nounset
11 set -o pipefail
12
13 export TERM="vt220"
14
15 if [[ "$BRANCH" != 'master' ]]; then
16     # source the file so we get OPNFV vars
17     source latest.properties
18
19     # echo the info about artifact that is used during the deployment
20     echo "Using ${OPNFV_ARTIFACT_URL/*\/} for deployment"
21 fi
22
23 # shellcheck disable=SC2153
24 if [[ "${JOB_NAME}" =~ "merge" ]]; then
25     # set simplest scenario for virtual deploys to run for merges
26     DEPLOY_SCENARIO="os-nosdn-nofeature-ha"
27 elif [[ "${BRANCH}" != 'master' ]]; then
28     # for none-merge deployments
29     # checkout the commit that was used for building the downloaded artifact
30     # to make sure the ISO and deployment mechanism uses same versions
31     echo "Checking out ${OPNFV_GIT_SHA1}"
32     git checkout "${OPNFV_GIT_SHA1}" --quiet
33 fi
34
35 # set deployment parameters
36 export TMPDIR=${HOME}/tmpdir
37 BRIDGE=${BRIDGE:-pxebr}
38 # shellcheck disable=SC2153
39 LAB_NAME=${NODE_NAME/-*}
40 # shellcheck disable=SC2153
41 POD_NAME=${NODE_NAME/*-}
42 # Armband does not require deploy script to be ran with sudo
43 SUDO=
44
45 # we currently support arm, enea labs
46 if [[ ! "${LAB_NAME}" =~ (arm|enea) ]]; then
47     echo "Unsupported/unidentified lab ${LAB_NAME}. Cannot continue!"
48     exit 1
49 fi
50
51 echo "Using configuration for ${LAB_NAME}"
52
53 # create TMPDIR if it doesn't exist, change permissions
54 mkdir -p "${TMPDIR}"
55 chmod a+x "${HOME}" "${TMPDIR}"
56
57 cd "${WORKSPACE}" || exit 1
58 if [[ "${LAB_CONFIG_URL}" =~ ^(git|ssh):// ]]; then
59     echo "Cloning securedlab repo ${BRANCH}"
60     git clone --quiet --branch "${BRANCH}" "${LAB_CONFIG_URL}" lab-config
61     LAB_CONFIG_URL=file://${WORKSPACE}/lab-config
62
63     # Source local_env if present, which contains POD-specific config
64     local_env="${WORKSPACE}/lab-config/labs/${LAB_NAME}/${POD_NAME}/fuel/config/local_env"
65     if [ -e "${local_env}" ]; then
66         echo "-- Sourcing local environment file"
67         source "${local_env}"
68     fi
69 fi
70
71 # releng wants us to use nothing else but opnfv.iso for now. We comply.
72 ISO_FILE=file://${WORKSPACE}/opnfv.iso
73
74 # log file name
75 FUEL_LOG_FILENAME="${JOB_NAME}_${BUILD_NUMBER}.log.tar.gz"
76
77 # construct the command
78 DEPLOY_COMMAND="${SUDO} ${WORKSPACE}/ci/deploy.sh -b ${LAB_CONFIG_URL} \
79     -l ${LAB_NAME} -p ${POD_NAME} -s ${DEPLOY_SCENARIO} -i ${ISO_FILE} \
80     -B ${DEFAULT_BRIDGE:-${BRIDGE}} -S ${TMPDIR} \
81     -L ${WORKSPACE}/${FUEL_LOG_FILENAME}"
82
83 # log info to console
84 echo "Deployment parameters"
85 echo "--------------------------------------------------------"
86 echo "Scenario: ${DEPLOY_SCENARIO}"
87 echo "Lab: ${LAB_NAME}"
88 echo "POD: ${POD_NAME}"
89 [[ "${BRANCH}" != 'master' ]] && echo "ISO: ${OPNFV_ARTIFACT_URL/*\/}"
90 echo
91 echo "Starting the deployment using ${INSTALLER_TYPE}. This could take some time..."
92 echo "--------------------------------------------------------"
93 echo
94
95 # start the deployment
96 echo "Issuing command"
97 echo "${DEPLOY_COMMAND}"
98 echo
99
100 ${DEPLOY_COMMAND}
101 exit_code=$?
102
103 echo
104 echo "--------------------------------------------------------"
105 echo "Deployment is done!"
106
107 # upload logs for baremetal deployments
108 # work with virtual deployments is still going on, so skip that for now
109 if [[ "${JOB_NAME}" =~ (baremetal-daily|baremetal-weekly) ]]; then
110     echo "Uploading deployment logs"
111     gsutil cp "${WORKSPACE}/${FUEL_LOG_FILENAME}" \
112         "gs://${GS_URL}/logs/${FUEL_LOG_FILENAME}" > /dev/null 2>&1
113     echo "Logs are available at http://${GS_URL}/logs/${FUEL_LOG_FILENAME}"
114 fi
115
116 if [[ "${exit_code}" -ne 0 ]]; then
117     echo "Deployment failed!"
118     exit "${exit_code}"
119 fi
120
121 echo "Deployment is successful!"
122 exit 0