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