Merge "CI: add missing --fail argument to curl"

This commit is contained in:
Zuul 2020-11-14 22:44:54 +00:00 committed by Gerrit Code Review
commit 6c2bb6b736
2 changed files with 3 additions and 2 deletions

View File

@ -16,7 +16,7 @@ function wait_for_placement_resources {
local expected_count=1
local resource_class="RC0"
curl -L -o jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64
curl --fail -L -o jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64
chmod +x jq
# TODO(mgoddard): switch to Placement OSC plugin, once it exists
@ -36,6 +36,7 @@ function wait_for_placement_resources {
# Fetch provider UUIDs from Placement
local providers
args=(
--fail
-sH "X-Auth-Token: $token"
)
if [[ "$TLS_ENABLED" = "True" ]]; then

View File

@ -66,7 +66,7 @@ if ! [ -f "${IMAGE_PATH}/${IMAGE}" ]; then
IMAGE_PATH='./'
if ! [ -f "${IMAGE_PATH}/${IMAGE}" ]; then
echo None found, downloading cirros image.
curl -L -o ${IMAGE_PATH}/${IMAGE} ${IMAGE_URL}/${IMAGE}
curl --fail -L -o ${IMAGE_PATH}/${IMAGE} ${IMAGE_URL}/${IMAGE}
fi
else
echo Using cached cirros image from the nodepool node.