diff --git a/mantle/kola/tests/crio/crio.go b/mantle/kola/tests/crio/crio.go index 30d2b45e55..db698766db 100644 --- a/mantle/kola/tests/crio/crio.go +++ b/mantle/kola/tests/crio/crio.go @@ -197,7 +197,7 @@ func init() { Distros: []string{"rhcos"}, UserData: enableCrioIgn, // crio pods require fetching a kubernetes pause image - Tags: []string{"crio", kola.NeedsInternetTag}, + Tags: []string{"crio", kola.NeedsInternetTag, "openshift"}, }) register.RegisterTest(®ister.Test{ Run: crioNetwork, @@ -207,7 +207,7 @@ func init() { Distros: []string{"rhcos"}, UserData: enableCrioIgn, // this test requires net connections outside the host - Tags: []string{"crio", kola.NeedsInternetTag}, + Tags: []string{"crio", kola.NeedsInternetTag, "openshift"}, // qemu machines cannot communicate between each other ExcludePlatforms: []string{"qemu"}, }) diff --git a/mantle/kola/tests/misc/network.go b/mantle/kola/tests/misc/network.go index 280bd665c0..23d29388f2 100644 --- a/mantle/kola/tests/misc/network.go +++ b/mantle/kola/tests/misc/network.go @@ -69,6 +69,7 @@ func init() { Timeout: 40 * time.Minute, Distros: []string{"rhcos"}, Platforms: []string{"qemu"}, + Tags: []string{"openshift"}, }) }