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/k8s-integration/main.go
+21-5
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ var (
57
57
// Test infrastructure flags
58
58
boskosResourceType=flag.String("boskos-resource-type", "gce-project", "name of the boskos resource type to reserve")
59
59
storageClassFiles=flag.String("storageclass-files", "", "name of storageclass yaml file to use for test relative to test/k8s-integration/config. This may be a comma-separated list to test multiple storage classes")
60
-
snapshotClassFile=flag.String("snapshotclass-file", "", "name of snapshotclass yaml file to use for test relative to test/k8s-integration/config")
60
+
snapshotClassFiles=flag.String("snapshotclass-files", "", "name of snapshotclass yaml file to use for test relative to test/k8s-integration/config. This may be a comma-separated list to test multiple storage classes")
61
61
inProw=flag.Bool("run-in-prow", false, "is the test running in PROW")
62
62
63
63
// Driver flags
@@ -203,7 +203,6 @@ func handle() error {
203
203
testParams:=&testParameters{
204
204
platform: *platform,
205
205
testFocus: *testFocus,
206
-
snapshotClassFile: *snapshotClassFile,
207
206
stagingVersion: string(uuid.NewUUID()),
208
207
deploymentStrategy: *deploymentStrat,
209
208
useGKEManagedDriver: *useGKEManagedDriver,
@@ -481,6 +480,7 @@ func handle() error {
481
480
// Run the tests using the k8sSourceDir kubernetes
0 commit comments