test: disable verification step for vsphere builds
The vsphere verification is failing consistently with the following error message from govc: A component of the virtual machine is not accessible on the host. Disabling it until we have time to look into it further.
This commit is contained in:
parent
2c431726a3
commit
eda67e2cc6
2 changed files with 14 additions and 9 deletions
|
|
@ -108,11 +108,13 @@ function verify() {
|
|||
verifyDisk "${WORKDIR}/disk.qcow2"
|
||||
;;
|
||||
|
||||
"${IMAGE_TYPE_VSPHERE}")
|
||||
|
||||
curl "${S3_URL}" --output "${WORKDIR}/disk.vmdk"
|
||||
verifyInVSphere "${WORKDIR}/disk.vmdk"
|
||||
;;
|
||||
# NOTE(akoutsou): The vsphere verification is failing very
|
||||
# consistently. Disabling it until we have time to look into it
|
||||
# further.
|
||||
# "${IMAGE_TYPE_VSPHERE}")
|
||||
# curl "${S3_URL}" --output "${WORKDIR}/disk.vmdk"
|
||||
# verifyInVSphere "${WORKDIR}/disk.vmdk"
|
||||
# ;;
|
||||
*)
|
||||
greenprint "No validation method for image type ${IMAGE_TYPE}"
|
||||
;;
|
||||
|
|
|
|||
|
|
@ -147,10 +147,13 @@ function verify() {
|
|||
verifyDisk "${WORKDIR}/disk.qcow2"
|
||||
;;
|
||||
|
||||
"${IMAGE_TYPE_VSPHERE}")
|
||||
curl "${S3_URL}" --output "${WORKDIR}/disk.vmdk"
|
||||
verifyInVSphere "${WORKDIR}/disk.vmdk"
|
||||
;;
|
||||
# NOTE(akoutsou): The vsphere verification is failing very
|
||||
# consistently. Disabling it until we have time to look into it
|
||||
# further.
|
||||
# "${IMAGE_TYPE_VSPHERE}")
|
||||
# curl "${S3_URL}" --output "${WORKDIR}/disk.vmdk"
|
||||
# verifyInVSphere "${WORKDIR}/disk.vmdk"
|
||||
# ;;
|
||||
*)
|
||||
greenprint "No validation method for image type ${IMAGE_TYPE}"
|
||||
;;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue