diff --git a/tests/integration/kubernetes/k8s-guest-pull-image.bats b/tests/integration/kubernetes/k8s-guest-pull-image.bats index 56e17e39ec..28c86df6ac 100644 --- a/tests/integration/kubernetes/k8s-guest-pull-image.bats +++ b/tests/integration/kubernetes/k8s-guest-pull-image.bats @@ -91,6 +91,11 @@ setup() { @test "Test we can pull an image inside the guest using trusted storage" { # The image pulled in the guest will be downloaded and unpacked in the `/run/kata-containers/image` directory. # The tests will use `cryptsetup` to encrypt a block device and mount it at `/run/kata-containers/image`. + + if [ "${KATA_HYPERVISOR}" = "qemu-coco-dev" ]; then + skip "skip this specific one due to issue https://github.com/kata-containers/kata-containers/issues/10133" + fi + storage_config=$(mktemp "${BATS_FILE_TMPDIR}/$(basename "${storage_config_template}").XXX") local_device=$(create_loop_device) LOCAL_DEVICE="$local_device" NODE_NAME="$node" envsubst < "$storage_config_template" > "$storage_config" @@ -124,6 +129,11 @@ setup() { } @test "Test we cannot pull a large image that pull time exceeds createcontainer timeout inside the guest" { + + if [ "${KATA_HYPERVISOR}" = "qemu-coco-dev" ]; then + skip "skip this specific one due to issue https://github.com/kata-containers/kata-containers/issues/10133" + fi + storage_config=$(mktemp "${BATS_FILE_TMPDIR}/$(basename "${storage_config_template}").XXX") local_device=$(create_loop_device) LOCAL_DEVICE="$local_device" NODE_NAME="$node" envsubst < "$storage_config_template" > "$storage_config" @@ -164,7 +174,11 @@ setup() { 'context deadline exceeded' } -@test "Test we can pull a large image inside the guest with large createcontainer timeout" { +@test "Test we can pull a large image inside the guest with large createcontainer timeout" { + + if [ "${KATA_HYPERVISOR}" = "qemu-coco-dev" ]; then + skip "skip this specific one due to issue https://github.com/kata-containers/kata-containers/issues/10133" + fi storage_config=$(mktemp "${BATS_FILE_TMPDIR}/$(basename "${storage_config_template}").XXX") local_device=$(create_loop_device) LOCAL_DEVICE="$local_device" NODE_NAME="$node" envsubst < "$storage_config_template" > "$storage_config"