add ccsdk-sli-northbound
[infra/cicd.git] / jjb / nolabs / handle-booking.sh
1 #!/bin/bash
2 set -o errexit
3 set -o nounset
4 set -o pipefail
5
6 cd $WORKSPACE
7
8 # install dependencies
9 sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse" > /dev/null
10 sudo apt install -y virtualenv jq > /dev/null
11 /bin/rm -rf /opt/engine $NOLABS_VENV
12 mkdir -p $NOLABS_VENV
13 virtualenv -p python3 $NOLABS_VENV > /dev/null
14 set +u
15 source $NOLABS_VENV/bin/activate > /dev/null
16 set -u
17 pip install httpie > /dev/null
18
19 # check if the booking is cancelled or not
20 echo "API Request: http --ignore-stdin GET $NOLABS_API_BOOKINGS_ENDPOINT/$BOOKING_ID | jq -r '.status_text'"
21 BOOKING_STATUS=$(http --ignore-stdin GET $NOLABS_API_BOOKINGS_ENDPOINT/$BOOKING_ID | jq -r '.status_text')
22 if [[ $BOOKING_STATUS != 'new' ]]; then
23   echo "Info: Booking is either cancelled or not valid! Exiting!"
24   exit 0;
25 fi
26
27 # get authentication token
28 echo "API Request: http --ignore-stdin POST $NOLABS_API_TOKENS_ENDPOINT --auth dummy@dummy.com:dummy | jq -r '.token'"
29 NOLABS_TOKEN=$(http --ignore-stdin POST $NOLABS_API_TOKENS_ENDPOINT --auth $NOLABS_API_USERNAME:$NOLABS_API_PASSWORD | jq -r '.token')
30 echo "API Request: http --ignore-stdin PUT $NOLABS_API_BOOKINGS_ENDPOINT/$BOOKING_ID \"status_text=deploying\" \"Authorization:Bearer DUMMY_TOKEN\""
31 http --ignore-stdin PUT $NOLABS_API_BOOKINGS_ENDPOINT/$BOOKING_ID "status_text=deploying" \
32     "Authorization:Bearer $NOLABS_TOKEN"
33
34 # get ssh public key of the user
35 echo "API Request: http GET $NOLABS_API_BOOKINGS_ENDPOINT/$BOOKING_ID | jq -r '.user_id'"
36 NOLABS_USER_ID=$(http GET $NOLABS_API_BOOKINGS_ENDPOINT/$BOOKING_ID | jq -r '.user_id')
37 echo "API Request: http --ignore-stdin GET $NOLABS_API_USERS_ENDPOINT/$NOLABS_USER_ID \"Authorization:Bearer DUMMY_TOKEN\" | jq -r '.ssh_public_key'"
38 http --ignore-stdin GET $NOLABS_API_USERS_ENDPOINT/$NOLABS_USER_ID "Authorization:Bearer $NOLABS_TOKEN" | jq -r '.ssh_public_key' > $NOLABS_USER_SSHPUBKEY
39
40 set +u
41 deactivate
42 set -u
43 # get the specific patch
44 cd $WORKSPACE
45 git fetch "https://gerrit.nordix.org/infra/engine" $GERRIT_REFSPEC && git checkout FETCH_HEAD
46
47 export STACK_NAME="nordix-nolabs-booking${BOOKING_ID}-${DEPLOY_SCENARIO}"
48 echo "Info: STACK_NAME is set to $STACK_NAME"
49 cd engine
50 ./deploy.sh -c -r heat -u /tmp/openrc -s $DEPLOY_SCENARIO -e "$HEAT_ENVIRONMENT_FILE"
51
52 cd $WORKSPACE
53
54 set +u
55 source $NOLABS_VENV/bin/activate > /dev/null
56 set -u
57 ENGINE_VERSION=$(git rev-parse HEAD)
58 cd /opt/engine/.cache/repos/swconfig
59 SCENARIO_VERSION=$(git rev-parse HEAD)
60 cd $WORKSPACE
61 FLOATING_IP=$(cat /opt/engine/.cache/config/inventory.ini | grep 'jumphost ansible_host' | awk '{print $2}' | cut -d'=' -f2)
62
63 # get authentication token
64 echo "API Request: http --ignore-stdin POST $NOLABS_API_TOKENS_ENDPOINT --auth dummy@dummy.com:dummy | jq -r '.token'"
65 NOLABS_TOKEN=$(http --ignore-stdin POST $NOLABS_API_TOKENS_ENDPOINT --auth $NOLABS_API_USERNAME:$NOLABS_API_PASSWORD | jq -r '.token')
66
67 # update booking
68 echo "API Request: http --ignore-stdin PUT $NOLABS_API_BOOKINGS_ENDPOINT/$BOOKING_ID \
69     \"Authorization:Bearer DUMMY_TOKEN\" \
70     status_text=active \
71     floating_ip=$FLOATING_IP \
72     heat_stack_name=$STACK_NAME \
73     scenario_deploy_log_url=${BUILD_URL}consoleFull \
74     engine_version=$ENGINE_VERSION \
75     scenario_version=$SCENARIO_VERSION"
76 http --ignore-stdin PUT $NOLABS_API_BOOKINGS_ENDPOINT/$BOOKING_ID \
77     "Authorization:Bearer $NOLABS_TOKEN" \
78     status_text=active \
79     floating_ip=$FLOATING_IP \
80     heat_stack_name=$STACK_NAME \
81     scenario_deploy_log_url=${BUILD_URL}consoleFull \
82     engine_version=$ENGINE_VERSION \
83     scenario_version=$SCENARIO_VERSION