aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanley.cheung@gmail.com>2016-08-17 10:02:20 -0700
committerGravatar GitHub <noreply@github.com>2016-08-17 10:02:20 -0700
commitb70fdc7e23a169f8234919b3603dbab1940686a7 (patch)
tree2f3c9695db70401da5d36a5a4780b0e7d212b760 /tools
parent508e94ac00c645d80027e53342ebd6c532ac6aaf (diff)
parenta6bdb30311383a49337529ebde7976ba9239dab9 (diff)
Merge pull request #7679 from stanley-cheung/fix-jenkins-linux-image
Fix jenkins linux image in create script
Diffstat (limited to 'tools')
-rwxr-xr-xtools/gce/create_linux_worker.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gce/create_linux_worker.sh b/tools/gce/create_linux_worker.sh
index 8a2df40859..7bf8b24081 100755
--- a/tools/gce/create_linux_worker.sh
+++ b/tools/gce/create_linux_worker.sh
@@ -43,8 +43,8 @@ gcloud compute instances create $INSTANCE_NAME \
--project="$CLOUD_PROJECT" \
--zone "$ZONE" \
--machine-type n1-standard-8 \
- --image-family=ubuntu-1510 \
- --image-project=ubuntu-os-cloud \
+ --image=ubuntu-1510 \
+ --image-project=grpc-testing \
--boot-disk-size 1000
echo 'Created GCE instance, waiting 60 seconds for it to come online.'