From 828a7218383cdab795333b7e1df71a1647b960d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Sat, 8 Jul 2023 11:01:19 +0200 Subject: [PATCH] gha: k8s: dragonball: Skip k8s-oom MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let's skip the k8s-oom, as the test is currently failing. We've an issue opened for that, and we'll be working on re-enabling it as soon as possible. Reference: https://github.com/kata-containers/kata-containers/issues/7271 Fixes: #7253 Signed-off-by: Fabiano FidĂȘncio --- tests/integration/kubernetes/k8s-oom.bats | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/integration/kubernetes/k8s-oom.bats b/tests/integration/kubernetes/k8s-oom.bats index f89b761f8..5f45ad78a 100644 --- a/tests/integration/kubernetes/k8s-oom.bats +++ b/tests/integration/kubernetes/k8s-oom.bats @@ -9,11 +9,15 @@ load "${BATS_TEST_DIRNAME}/../../common.bash" load "${BATS_TEST_DIRNAME}/tests_common.sh" setup() { + [ "${KATA_HYPERVISOR}" == "dragonball" ] && skip "Test is currently failing, see: https://github.com/kata-containers/kata-containers/issues/7271" + pod_name="pod-oom" get_pod_config_dir } @test "Test OOM events for pods" { + [ "${KATA_HYPERVISOR}" == "dragonball" ] && skip "Test is currently failing, see: https://github.com/kata-containers/kata-containers/issues/7271" + # Create pod kubectl create -f "${pod_config_dir}/$pod_name.yaml" @@ -29,6 +33,8 @@ setup() { } teardown() { + [ "${KATA_HYPERVISOR}" == "dragonball" ] && skip "Test is currently failing, see: https://github.com/kata-containers/kata-containers/issues/7271" + # Debugging information kubectl describe "pod/$pod_name" kubectl get "pod/$pod_name" -o yaml