Skip to content

Commit 10eb8db

Browse files
committed
Add ignore list for avoid hitting kernel bug
1 parent 99cae56 commit 10eb8db

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.automation.conf/config.sh

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ if [ ! -z ${KAYOBE_ENVIRONMENT:+x} ]; then
2525
if [[ "$KAYOBE_ENVIRONMENT" =~ "aio" ]]; then
2626
# Seem to get servers failing to spawn with higher concurrency
2727
export TEMPEST_CONCURRENCY=1
28+
# NOTE(seunghun1ee): Current Ubuntu Noble kernel 6.8.0-57-generic has a bug
29+
# https://bugs.launchpad.net/ubuntu/+source/linux-meta-oracle-6.8/+bug/2104178
30+
# which blocks attaching interfaces to neutron routers in OVS system.
31+
# Ignoring sets of tests failing because of this until kernel fix is released.
32+
export KAYOBE_AUTOMATION_TEMPEST_SKIPLIST=ci-aio-tempest-refstack
2833
fi
2934

3035
if [[ "$KAYOBE_ENVIRONMENT" =~ "ci-multinode" ]]; then
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
tempest.api.compute.servers.test_create_server.ServersTestJSON.test_host_name_is_same_as_server_name: "Ubuntu Noble kernel 6.8.0-57-generic has bug that doesn't work wtih OVS system"
2+
tempest.api.compute.servers.test_create_server.ServersTestJSON.test_verify_created_server_vcpus: "Ubuntu Noble kernel 6.8.0-57-generic has bug that doesn't work wtih OVS system"
3+
tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_host_name_is_same_as_server_name: "Ubuntu Noble kernel 6.8.0-57-generic has bug that doesn't work wtih OVS system"
4+
tempest.api.compute.servers.test_create_server.ServersTestManualDisk.test_verify_created_server_vcpus: "Ubuntu Noble kernel 6.8.0-57-generic has bug that doesn't work wtih OVS system"
5+
tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_lock_unlock_server: "Ubuntu Noble kernel 6.8.0-57-generic has bug that doesn't work wtih OVS system"
6+
tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_reboot_server_hard: "Ubuntu Noble kernel 6.8.0-57-generic has bug that doesn't work wtih OVS system"
7+
tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_rebuild_server: "Ubuntu Noble kernel 6.8.0-57-generic has bug that doesn't work wtih OVS system"
8+
tempest.api.compute.servers.test_server_actions.ServerActionsTestJSON.test_stop_start_server: "Ubuntu Noble kernel 6.8.0-57-generic has bug that doesn't work wtih OVS system"

0 commit comments

Comments
 (0)