Skip to content

Commit

Permalink
kola/tests/rhcos/luks: add NeedsInternet tags to Tang and SSS
Browse files Browse the repository at this point in the history
The Tang and SSS tests require internet to pull the Tang container.
  • Loading branch information
mike-nguyen authored and openshift-merge-robot committed Jul 13, 2020
1 parent 0377a9f commit 6833e46
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions mantle/kola/tests/rhcos/luks.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"regexp"
"time"

"github.com/coreos/mantle/kola"
"github.com/coreos/mantle/kola/cluster"
"github.com/coreos/mantle/kola/register"
"github.com/coreos/mantle/platform"
Expand Down Expand Up @@ -50,7 +51,7 @@ func init() {
Flags: []register.Flag{},
Distros: []string{"rhcos"},
ExcludeArchitectures: []string{"s390x", "ppc64le"}, // no TPM support for s390x, ppc64le in qemu
Tags: []string{"luks", "tang"},
Tags: []string{"luks", "tang", kola.NeedsInternetTag},
})
register.RegisterTest(&register.Test{
Run: luksSSST1Test,
Expand All @@ -60,7 +61,7 @@ func init() {
Distros: []string{"rhcos"},
Platforms: []string{"qemu-unpriv"},
ExcludeArchitectures: []string{"s390x", "ppc64le"}, // no TPM support for s390x, ppc64le in qemu
Tags: []string{"luks", "tpm", "tang", "sss"},
Tags: []string{"luks", "tpm", "tang", "sss", kola.NeedsInternetTag},
})
register.RegisterTest(&register.Test{
Run: luksSSST2Test,
Expand All @@ -70,7 +71,7 @@ func init() {
Distros: []string{"rhcos"},
Platforms: []string{"qemu-unpriv"},
ExcludeArchitectures: []string{"s390x", "ppc64le"}, // no TPM support for s390x, ppc64le in qemu
Tags: []string{"luks", "tpm", "tang", "sss"},
Tags: []string{"luks", "tpm", "tang", "sss", kola.NeedsInternetTag},
})
}

Expand Down

0 comments on commit 6833e46

Please sign in to comment.