Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ func TestMain(m *testing.M) {
flag.StringVar(&globalOpts.ConfigurableClusterOptions.PullSecretFile, "e2e.pull-secret-file", "", "path to pull secret")
flag.StringVar(&globalOpts.ConfigurableClusterOptions.SSHKeyFile, "e2e.ssh-key-file", "", "Path to a ssh public key")
flag.StringVar(&globalOpts.N1MinorReleaseImage, "e2e.n1-minor-release-image", "", "The n-1 minor OCP release image relative to the latest")
flag.StringVar(&globalOpts.N2MinorReleaseImage, "e2e.n2-minor-release-image", "", "The n-2 minor OCP release image relative to the latest")
flag.StringVar(&globalOpts.N3MinorReleaseImage, "e2e.n3-minor-release-image", "", "The n-3 minor OCP release image relative to the latest")
flag.StringVar(&globalOpts.N4MinorReleaseImage, "e2e.n4-minor-release-image", "", "The n-4 minor OCP release image relative to the latest")
flag.StringVar(&globalOpts.PlatformRaw, "e2e.platform", string(hyperv1.AWSPlatform), "The platform to use for the tests")
flag.Var(&globalOpts.ConfigurableClusterOptions.Annotations, "e2e.annotations", "Annotations to apply to the HostedCluster (key=value). Can be specified multiple times")
flag.Var(&globalOpts.ConfigurableClusterOptions.DisableClusterCapabilities, "e2e.disable-cluster-capabilities", "Cluster capabilities to disable (e.g. ImageRegistry,Console). Can be specified multiple times")
Expand Down
12 changes: 0 additions & 12 deletions test/e2e/nodepool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,18 +125,6 @@ func TestNodePool(t *testing.T) {
name: "TestNodePoolPrevReleaseN1",
test: NewNodePoolPrevReleaseCreateTest(hostedCluster, globalOpts.N1MinorReleaseImage, clusterOpts, true),
},
{
name: "TestNodePoolPrevReleaseN2",
test: NewNodePoolPrevReleaseCreateTest(hostedCluster, globalOpts.N2MinorReleaseImage, clusterOpts, true),
},
{
name: "TestNodePoolPrevReleaseN3",
test: NewNodePoolPrevReleaseCreateTest(hostedCluster, globalOpts.N3MinorReleaseImage, clusterOpts, true),
},
{
name: "TestNodePoolPrevReleaseN4",
test: NewNodePoolPrevReleaseCreateTest(hostedCluster, globalOpts.N4MinorReleaseImage, clusterOpts, false),
},
{
name: "TestMirrorConfigs",
test: NewMirrorConfigsTest(ctx, mgtClient, hostedCluster, hostedClusterClient),
Expand Down
3 changes: 0 additions & 3 deletions test/e2e/util/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ const (
type Options struct {
LatestReleaseImage string
PreviousReleaseImage string
N4MinorReleaseImage string
N3MinorReleaseImage string
N2MinorReleaseImage string
N1MinorReleaseImage string
IsRunningInCI bool
ArtifactDir string
Expand Down
Loading