File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ gce-pd-driver: require-GCE_PD_CSI_STAGING_VERSION
4141 go build -mod=vendor -gcflags=$(GCFLAGS ) -ldflags " -X main.version=$( STAGINGVERSION) " -o bin/${DRIVERBINARY} ./cmd/gce-pd-csi-driver/
4242
4343gce-pd-driver-windows : require-GCE_PD_CSI_STAGING_VERSION
44- ifeq (GOARCH, amd64)
44+ ifeq (${ GOARCH} , amd64)
4545 mkdir -p bin
4646 GOOS=windows go build -mod=vendor -ldflags -X=main.version=$(STAGINGVERSION) -o bin/${DRIVERWINDOWSBINARY} ./cmd/gce-pd-csi-driver/
4747else
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ readonly prepull_daemonset=prepull-test-containers
99
1010wait_on_prepull ()
1111{
12- # Wait up to 15 minutes for the test images to be pulled onto the nodes.
13- retries=90
12+ # Wait up to 30 minutes for the test images to be pulled onto the nodes.
13+ retries=180
1414 while [[ $retries -ge 0 ]]; do
1515 ready=$( kubectl get daemonset " ${prepull_daemonset} " -o jsonpath=" {.status.numberReady}" )
1616 required=$( kubectl get daemonset " ${prepull_daemonset} " -o jsonpath=" {.status.desiredNumberScheduled}" )
You can’t perform that action at this time.
0 commit comments