Ignore ssl verification when downloading workload image

Change-Id: I2c4e2a9c3f1d525fb922a68fc5337c6f2efbde97
This commit is contained in:
Khomesh Thakre 2023-06-16 18:53:18 +05:30
parent b7b48d42f3
commit b13b949584

View File

@ -202,7 +202,7 @@ function workload_launch {
if [ $? -ne 0 ]; then
echo "Downloading image ${IMAGE_URL}"
curl -4fsSL --retry 5 -o ${IMAGE_FILE} ${IMAGE_URL}
curl -4fsSLk --retry 5 -o ${IMAGE_FILE} ${IMAGE_URL}
if [ $? -ne 0 ]; then
echo "Failed to download ${IMAGE_URL}"