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
Copy file name to clipboardExpand all lines: test/e2e/e2e_suite_test.go
+4-1
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,9 @@ var (
92
92
// kubetestConfigFilePath is the path to the kubetest configuration file
93
93
kubetestConfigFilePathstring
94
94
95
+
// kubetestRepoListPath
96
+
kubetestRepoListPathstring
97
+
95
98
// useCIArtifacts specifies whether or not to use the latest build from the main branch of the Kubernetes repository
96
99
useCIArtifactsbool
97
100
)
@@ -238,7 +241,7 @@ func init() {
238
241
flag.BoolVar(&skipCleanup, "e2e.skip-resource-cleanup", false, "if true, the resource cleanup after tests will be skipped")
239
242
flag.BoolVar(&useExistingCluster, "e2e.use-existing-cluster", false, "if true, the test uses the current cluster instead of creating a new one (default discovery rules apply)")
240
243
flag.StringVar(&kubetestConfigFilePath, "kubetest.config-file", "", "path to the kubetest configuration file")
241
-
244
+
flag.StringVar(&kubetestRepoListPath, "kubetest.repo-list-file", "", "path to the kubetest repo-list file")
0 commit comments