Skip to content

Commit

Permalink
test/ignition: do not test Afterburn SSH key fetching
Browse files Browse the repository at this point in the history
This does not work on Akamai.

Signed-off-by: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
  • Loading branch information
tormath1 committed Dec 3, 2024
1 parent dfb631d commit 8ed6145
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions kola/tests/ignition/empty.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ func init() {
Run: empty,
ClusterSize: 1,
// brightbox does not support yet adding SSH keys to the metadata service.
ExcludePlatforms: []string{"qemu", "esx", "brightbox"},
// akamai does not provide SSH keys as metadata (https://github.com/coreos/afterburn/issues/1111)
ExcludePlatforms: []string{"qemu", "esx", "brightbox", "akamai"},
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 @@ -44,7 +45,7 @@ func init() {
Name: "cl.ignition.v1.noop",
Run: empty,
ClusterSize: 1,
ExcludePlatforms: []string{"qemu", "esx", "openstack", "brightbox"},
ExcludePlatforms: []string{"qemu", "esx", "openstack", "brightbox", "akamai"},
Distros: []string{"cl"},
Flags: []register.Flag{register.NoSSHKeyInUserData},
UserData: conf.Ignition(`{"ignitionVersion": 1}`),
Expand All @@ -54,7 +55,7 @@ func init() {
Name: "cl.ignition.v2.noop",
Run: empty,
ClusterSize: 1,
ExcludePlatforms: []string{"qemu", "esx", "brightbox"},
ExcludePlatforms: []string{"qemu", "esx", "brightbox", "akamai"},
Distros: []string{"cl"},
Flags: []register.Flag{register.NoSSHKeyInUserData},
UserData: conf.Ignition(`{"ignition":{"version":"2.0.0"}}`),
Expand Down

0 comments on commit 8ed6145

Please sign in to comment.