From da5e0c3f535f28ee18e90bc837b882b369540a22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Rop=C3=A9?= Date: Wed, 6 Nov 2024 11:27:36 +0100 Subject: [PATCH] ci: skip nginx connectivity test with crio We have an error with service name resolution with this test when using crio. This error could not be reproduced outside of the CI for now. Skipping it to keep the CI job running until we find a solution. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See: #10414 Signed-off-by: Julien Ropé --- tests/integration/kubernetes/k8s-nginx-connectivity.bats | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integration/kubernetes/k8s-nginx-connectivity.bats b/tests/integration/kubernetes/k8s-nginx-connectivity.bats index 87dac92180..7867795083 100644 --- a/tests/integration/kubernetes/k8s-nginx-connectivity.bats +++ b/tests/integration/kubernetes/k8s-nginx-connectivity.bats @@ -9,6 +9,8 @@ load "${BATS_TEST_DIRNAME}/../../common.bash" load "${BATS_TEST_DIRNAME}/tests_common.sh" setup() { + [ "${CONTAINER_RUNTIME}" == "crio" ] && skip "test not working see: https://github.com/kata-containers/kata-containers/issues/10414" + nginx_version="${docker_images_nginx_version}" nginx_image="nginx:$nginx_version" busybox_image="quay.io/prometheus/busybox:latest" @@ -42,6 +44,8 @@ setup() { } teardown() { + [ "${CONTAINER_RUNTIME}" == "crio" ] && skip "test not working see: https://github.com/kata-containers/kata-containers/issues/10414" + # Debugging information kubectl describe "pod/$busybox_pod" kubectl get "pod/$busybox_pod" -o yaml