901f845bff133d90f957e44cc95f7bc7c7dd190c
[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 fi
54
55 # releng wants us to use nothing else but opnfv.iso for now. We comply.
56 ISO_FILE=$WORKSPACE/opnfv.iso
57
58 # construct the command
59 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"
60
61 # log info to console
62 echo "Deployment parameters"
63 echo "--------------------------------------------------------"
64 echo "Scenario: $DEPLOY_SCENARIO"
65 echo "Lab: $LAB_NAME"
66 echo "POD: $POD_NAME"
67 echo "ISO: ${OPNFV_ARTIFACT_URL/*\/}"
68 echo
69 echo "Starting the deployment using $INSTALLER_TYPE. This could take some time..."
70 echo "--------------------------------------------------------"
71 echo
72
73 # start the deployment
74 echo "Issuing command"
75 echo "$DEPLOY_COMMAND"
76 echo
77
78 $DEPLOY_COMMAND
79
80 echo
81 echo "--------------------------------------------------------"
82 echo "Deployment is done successfully!"