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