Skip to content

Commit

Permalink
ignition/empty: exclude brightbox
Browse files Browse the repository at this point in the history
Signed-off-by: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
  • Loading branch information
tormath1 committed Nov 17, 2023
1 parent 506da10 commit 4e78735
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions kola/tests/ignition/empty.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ import (
func init() {
// Tests for https://github.com/coreos/bugs/issues/1184
register.Register(&register.Test{
Name: "cl.ignition.misc.empty",
Run: empty,
ClusterSize: 1,
ExcludePlatforms: []string{"qemu", "esx"},
Name: "cl.ignition.misc.empty",
Run: empty,
ClusterSize: 1,
// 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
Expand All @@ -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}`),
Expand All @@ -53,7 +54,7 @@ func init() {
Name: "cl.ignition.v2.noop",
Run: empty,
ClusterSize: 1,
ExcludePlatforms: []string{"qemu", "esx"},
ExcludePlatforms: []string{"qemu", "esx", "brightbox"},
Distros: []string{"cl"},
Flags: []register.Flag{register.NoSSHKeyInUserData},
UserData: conf.Ignition(`{"ignition":{"version":"2.0.0"}}`),
Expand Down

0 comments on commit 4e78735

Please sign in to comment.