fb4c1ead5e2751bfdf1dae1e89a988e5e05f080e
[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 errexit
12 set -o nounset
13 set -o pipefail
14
15 # source the file so we get OPNFV vars
16 source latest.properties
17
18 # echo the info about artifact that is used during the deployment
19 echo "Using ${OPNFV_ARTIFACT_URL/*\/} for deployment"
20
21 if [[ "$JOB_NAME" =~ "merge" ]]; then
22     # set simplest scenario for virtual deploys to run for merges
23     DEPLOY_SCENARIO="os-nosdn-nofeature-ha"
24 else
25     # for none-merge deployments
26     # checkout the commit that was used for building the downloaded artifact
27     # to make sure the ISO and deployment mechanism uses same versions
28     echo "Checking out $OPNFV_GIT_SHA1"
29     git checkout $OPNFV_GIT_SHA1 --quiet
30 fi
31
32 # set deployment parameters
33 export TMPDIR=${WORKSPACE}/tmpdir
34 LAB_NAME=${NODE_NAME/-*}
35 POD_NAME=${NODE_NAME/*-}
36
37 # we currently support enea
38 if [[ ! $LAB_NAME =~ (arm|enea) ]]; then
39     echo "Unsupported/unidentified lab $LAB_NAME. Cannot continue!"
40     exit 1
41 fi
42
43 echo "Using configuration for $LAB_NAME"
44
45 # create TMPDIR if it doesn't exist
46 mkdir -p $TMPDIR
47
48 cd $WORKSPACE
49 if [[ $LAB_CONFIG_URL =~ ^(git|ssh):// ]]; then
50     echo "cloning $LAB_CONFIG_URL"
51     git clone --quiet --branch ${GIT_BRANCH##origin/} $LAB_CONFIG_URL lab-config
52     LAB_CONFIG_URL=file://${WORKSPACE}/lab-config
53
54     # Source local_env if present, which contains POD-specific config
55     local_env="${WORKSPACE}/lab-config/labs/$LAB_NAME/$POD_NAME/fuel/config/local_env"
56     if [ -e $local_env ]; then
57         echo "-- Sourcing local environment file"
58         source $local_env
59     fi
60 fi
61
62 # releng wants us to use nothing else but opnfv.iso for now. We comply.
63 ISO_FILE=$WORKSPACE/opnfv.iso
64
65 # construct the command
66 DEPLOY_COMMAND="$WORKSPACE/ci/deploy.sh -l $LAB_NAME -p $POD_NAME -b ${LAB_CONFIG_URL} -s $DEPLOY_SCENARIO -i file://${ISO_FILE} -H -B ${DEFAULT_BRIDGE:-pxebr} -S $TMPDIR"
67
68 # log info to console
69 echo "Deployment parameters"
70 echo "--------------------------------------------------------"
71 echo "Scenario: $DEPLOY_SCENARIO"
72 echo "Lab: $LAB_NAME"
73 echo "POD: $POD_NAME"
74 echo "ISO: ${OPNFV_ARTIFACT_URL/*\/}"
75 echo
76 echo "Starting the deployment using $INSTALLER_TYPE. This could take some time..."
77 echo "--------------------------------------------------------"
78 echo
79
80 # start the deployment
81 echo "Issuing command"
82 echo "$DEPLOY_COMMAND"
83 echo
84
85 $DEPLOY_COMMAND
86
87 echo
88 echo "--------------------------------------------------------"
89 echo "Deployment is done successfully!"