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 <[email protected]>
  • Loading branch information
tormath1 committed Nov 17, 2023
1 parent 506da10 commit e53791d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions kola/tests/ignition/empty.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 Down

0 comments on commit e53791d

Please sign in to comment.