File tree 2 files changed +3
-3
lines changed
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
41
41
go build -mod=vendor -gcflags=$(GCFLAGS ) -ldflags " -X main.version=$( STAGINGVERSION) " -o bin/${DRIVERBINARY} ./cmd/gce-pd-csi-driver/
42
42
43
43
gce-pd-driver-windows : require-GCE_PD_CSI_STAGING_VERSION
44
- ifeq (GOARCH, amd64)
44
+ ifeq (${ GOARCH} , amd64)
45
45
mkdir -p bin
46
46
GOOS=windows go build -mod=vendor -ldflags -X=main.version=$(STAGINGVERSION) -o bin/${DRIVERWINDOWSBINARY} ./cmd/gce-pd-csi-driver/
47
47
else
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ readonly prepull_daemonset=prepull-test-containers
9
9
10
10
wait_on_prepull ()
11
11
{
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
14
14
while [[ $retries -ge 0 ]]; do
15
15
ready=$( kubectl get daemonset " ${prepull_daemonset} " -o jsonpath=" {.status.numberReady}" )
16
16
required=$( kubectl get daemonset " ${prepull_daemonset} " -o jsonpath=" {.status.desiredNumberScheduled}" )
You can’t perform that action at this time.
0 commit comments