af8eeebeb8
We need to use the eval command together with curl so that the $TOKEN_HEADER variable is seems by curl as two arguments: "-H" and "'X-Auth-Token: ...". Without the eval bash would interpret the variable as only one argument "-H 'X-Auth-Token: ...'" making the curl command to not understand that parameter and fail to pass the auth_token to the Ironic API. Change-Id: I4dcfc323d6ab9b7fa207328386ef65a146a93617
52 lines
1.2 KiB
Plaintext
52 lines
1.2 KiB
Plaintext
readonly IRONIC_API_URL=$(get_kernel_parameter ironic_api_url)
|
|
|
|
if [ -z "$ISCSI_TARGET_IQN" ]; then
|
|
err_msg "iscsi_target_iqn is not defined"
|
|
troubleshoot
|
|
fi
|
|
|
|
t=0
|
|
while ! target_disk=$(find_disk "$DISK"); do
|
|
if [ $t -eq 10 ]; then
|
|
break
|
|
fi
|
|
t=$(($t + 1))
|
|
sleep 1
|
|
done
|
|
|
|
if [ -z "$target_disk" ]; then
|
|
err_msg "Could not find disk to use."
|
|
troubleshoot
|
|
fi
|
|
|
|
echo "start iSCSI target on $target_disk"
|
|
start_iscsi_target "$ISCSI_TARGET_IQN" "$target_disk" ALL
|
|
if [ $? -ne 0 ]; then
|
|
err_msg "Failed to start iscsi target."
|
|
troubleshoot
|
|
fi
|
|
|
|
TOKEN_FILE=token-$DEPLOYMENT_ID
|
|
|
|
if tftp -r /tftpboot/$TOKEN_FILE -g $BOOT_SERVER
|
|
then TOKEN_HEADER="-H 'X-Auth-Token: `cat $TOKEN_FILE`'"
|
|
else TOKEN_HEADER=""
|
|
fi
|
|
|
|
DATA="'{\"address\":\"$BOOT_IP_ADDRESS\",\"key\":\"$DEPLOYMENT_KEY\",\"iqn\":\"$ISCSI_TARGET_IQN\",\"error\":\"$FIRST_ERR_MSG\"}'"
|
|
|
|
echo "request Ironic API to deploy image"
|
|
eval curl -i -X POST \
|
|
"$TOKEN_HEADER" \
|
|
"-H 'Accept: application/json'" \
|
|
"-H 'Content-Type: application/json'" \
|
|
-d "$DATA" \
|
|
$IRONIC_API_URL/nodes/$DEPLOYMENT_ID/vendor_passthru/pass_deploy_info
|
|
|
|
echo "waiting for notice of complete"
|
|
nc -l -p 10000
|
|
|
|
echo "stop iSCSI target on $target_disk"
|
|
|
|
stop_iscsi_target
|