diff options
author | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2016-05-10 10:24:03 -0700 |
---|---|---|
committer | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2016-05-10 10:24:03 -0700 |
commit | 430b4f98433b36b8d19a2482ec17aec473471129 (patch) | |
tree | 7fb032f03fec55fb1254d49cf02ad45e4f5d93d3 /tools | |
parent | fffd296bc5473787aa50a595215444e55b7394c5 (diff) | |
parent | 49beb933a7af096c2b775ff220d38d79c5eee46c (diff) |
Merge pull request #6492 from jtattermusch/upgrade_gce_scripts
Upgrade linux worker setup scripts to ubuntu 15.10
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/gce/create_linux_worker.sh | 2 | ||||
-rwxr-xr-x | tools/gce/linux_worker_init.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/gce/create_linux_worker.sh b/tools/gce/create_linux_worker.sh index dff0b1ce5f..c41e4d299b 100755 --- a/tools/gce/create_linux_worker.sh +++ b/tools/gce/create_linux_worker.sh @@ -43,7 +43,7 @@ gcloud compute instances create $INSTANCE_NAME \ --project="$CLOUD_PROJECT" \ --zone "$ZONE" \ --machine-type n1-standard-8 \ - --image ubuntu-14-04 \ + --image ubuntu-15-10 \ --boot-disk-size 1000 echo 'Created GCE instance, waiting 60 seconds for it to come online.' diff --git a/tools/gce/linux_worker_init.sh b/tools/gce/linux_worker_init.sh index ef6a5d175c..afcf7a52d9 100755 --- a/tools/gce/linux_worker_init.sh +++ b/tools/gce/linux_worker_init.sh @@ -37,7 +37,7 @@ set -ex sudo apt-get update # Install JRE -sudo apt-get install -y openjdk-7-jre +sudo apt-get install -y openjdk-8-jre sudo apt-get install -y unzip lsof # Install Docker |