You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 12, 2025. It is now read-only.
namespace=flag.String("namespace", "default", "the namespace the operator and tests should be deployed in")
42
43
deployDir=flag.String("deployDir", "deploy/", "the path to the directory which contains the yaml deployment files")
43
44
operatorImage=flag.String("operatorImage", "quay.io/mongodb/community-operator-dev:latest", "the image which should be used for the operator deployment")
44
45
testImage=flag.String("testImage", "quay.io/mongodb/community-operator-e2e:latest", "the image which should be used for the operator e2e tests")
46
+
test=flag.String("test", "", "test e2e test that should be run. (name of folder containing the test)")
45
47
flag.Parse()
46
48
47
49
returnflags{
48
50
deployDir: *deployDir,
49
51
namespace: *namespace,
50
52
operatorImage: *operatorImage,
51
53
testImage: *testImage,
54
+
test: *test,
52
55
}
53
56
}
54
57
@@ -87,13 +90,12 @@ func runCmd(f flags) error {
87
90
}
88
91
fmt.Println("Successfully deployed the operator")
89
92
90
-
testToRun:="test/replica_set_test.yaml"// TODO: this should be configurable
0 commit comments