From e53791d3c5e25453dc41cf16e7630e5c68d30110 Mon Sep 17 00:00:00 2001 From: Mathieu Tortuyaux Date: Fri, 17 Nov 2023 12:25:45 +0100 Subject: [PATCH] ignition/empty: exclude brightbox Signed-off-by: Mathieu Tortuyaux --- kola/tests/ignition/empty.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kola/tests/ignition/empty.go b/kola/tests/ignition/empty.go index 1a024e665..4203857c0 100644 --- a/kola/tests/ignition/empty.go +++ b/kola/tests/ignition/empty.go @@ -30,7 +30,8 @@ func init() { Name: "cl.ignition.misc.empty", Run: empty, ClusterSize: 1, - ExcludePlatforms: []string{"qemu", "esx"}, + // brightbox does not support yet adding SSH keys to the metadata service. + ExcludePlatforms: []string{"qemu", "esx", "brightbox"}, Distros: []string{"cl"}, // The userdata injection of disabling the update server won't work // for an empty config, we still take care of doing later it via SSH @@ -43,7 +44,7 @@ func init() { Name: "cl.ignition.v1.noop", Run: empty, ClusterSize: 1, - ExcludePlatforms: []string{"qemu", "esx", "openstack"}, + ExcludePlatforms: []string{"qemu", "esx", "openstack", "brightbox"}, Distros: []string{"cl"}, Flags: []register.Flag{register.NoSSHKeyInUserData}, UserData: conf.Ignition(`{"ignitionVersion": 1}`),