Merge "qtip: adapt job template for different streams"
[releng.git] / jjb / armband / armband-deploy.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2016 Ericsson AB and others.
5 #           (c) 2016 Enea Software AB
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
11 set -o nounset
12 set -o pipefail
13
14 export TERM="vt220"
15
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
22 if [[ "$JOB_NAME" =~ "merge" ]]; then
23     # set simplest scenario for virtual deploys to run for merges
24     DEPLOY_SCENARIO="os-nosdn-nofeature-ha"
25 else
26     # for none-merge deployments
27     # checkout the commit that was used for building the downloaded artifact
28     # to make sure the ISO and deployment mechanism uses same versions
29     echo "Checking out $OPNFV_GIT_SHA1"
30     git checkout $OPNFV_GIT_SHA1 --quiet
31 fi
32
33 # set deployment parameters
34 export TMPDIR=${WORKSPACE}/tmpdir
35
36 # arm-pod3-2 is an aarch64 jenkins slave for the same POD as the
37 # x86 jenkins slave arm-pod3; therefore we use the same pod name
38 # to deploy the pod from both jenkins slaves
39 if [[ "${NODE_NAME}" == "arm-pod3-2" ]]; then
40     NODE_NAME="arm-pod3"
41 fi
42
43 LAB_NAME=${NODE_NAME/-*}
44 POD_NAME=${NODE_NAME/*-}
45
46 # we currently support enea
47 if [[ ! $LAB_NAME =~ (arm|enea) ]]; then
48     echo "Unsupported/unidentified lab $LAB_NAME. Cannot continue!"
49     exit 1
50 fi
51
52 echo "Using configuration for $LAB_NAME"
53
54 # create TMPDIR if it doesn't exist
55 mkdir -p $TMPDIR
56
57 cd $WORKSPACE
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 if [[ "$NODE_NAME" =~ "virtual" ]]; then
72     POD_NAME="virtual_kvm"
73 fi
74
75 # releng wants us to use nothing else but opnfv.iso for now. We comply.
76 ISO_FILE=$WORKSPACE/opnfv.iso
77
78 # log file name
79 FUEL_LOG_FILENAME="${JOB_NAME}_${BUILD_NUMBER}.log.tar.gz"
80
81 # Deploy Cache (to enable just create the deploy-cache subdir)
82 # NOTE: Only available when ISO files are cached using ISOSTORE mechanism
83 DEPLOY_CACHE=${ISOSTORE:-/iso_mount/opnfv_ci}/${BRANCH##*/}/deploy-cache
84 if [[ -d "${DEPLOY_CACHE}" ]]; then
85     echo "Deploy cache dir present."
86     echo "--------------------------------------------------------"
87     echo "Fuel@OPNFV deploy cache: ${DEPLOY_CACHE}"
88     DEPLOY_CACHE="-C ${DEPLOY_CACHE}"
89 else
90     DEPLOY_CACHE=""
91 fi
92
93 # construct the command
94 DEPLOY_COMMAND="$WORKSPACE/ci/deploy.sh -b ${LAB_CONFIG_URL} \
95     -l $LAB_NAME -p $POD_NAME -s $DEPLOY_SCENARIO -i file://${ISO_FILE} \
96     -H -B ${DEFAULT_BRIDGE:-pxebr} -S $TMPDIR -L $WORKSPACE/$FUEL_LOG_FILENAME \
97     ${DEPLOY_CACHE}"
98
99 # log info to console
100 echo "Deployment parameters"
101 echo "--------------------------------------------------------"
102 echo "Scenario: $DEPLOY_SCENARIO"
103 echo "Lab: $LAB_NAME"
104 echo "POD: $POD_NAME"
105 echo "ISO: ${OPNFV_ARTIFACT_URL/*\/}"
106 echo
107 echo "Starting the deployment using $INSTALLER_TYPE. This could take some time..."
108 echo "--------------------------------------------------------"
109 echo
110
111 # start the deployment
112 echo "Issuing command"
113 echo "$DEPLOY_COMMAND"
114 echo
115
116 $DEPLOY_COMMAND
117 exit_code=$?
118
119 echo
120 echo "--------------------------------------------------------"
121 echo "Deployment is done!"
122
123 # upload logs for baremetal deployments
124 # work with virtual deployments is still going on so we skip that for the timebeing
125 if [[ "$JOB_NAME" =~ "baremetal-daily" ]]; then
126     echo "Uploading deployment logs"
127     gsutil cp $WORKSPACE/$FUEL_LOG_FILENAME gs://$GS_URL/logs/$FUEL_LOG_FILENAME > /dev/null 2>&1
128     echo "Logs are available as http://$GS_URL/logs/$FUEL_LOG_FILENAME"
129 fi
130
131 if [[ $exit_code -ne 0 ]]; then
132     echo "Deployment failed!"
133     exit $exit_code
134 else
135     echo "Deployment is successful!"
136 fi