Skip to content

Commit ad3335a

Browse files
authored
Merge pull request #973 from mauriciopoppe/update-prepull-image
Increase prepull image timeout
2 parents 445028f + 94373f9 commit ad3335a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff 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

4343
gce-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/
4747
else

test/k8s-integration/prepull-image.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ readonly prepull_daemonset=prepull-test-containers
99

1010
wait_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}")

0 commit comments

Comments
 (0)