blob: ef6a5d175c95d0bd182d4e15e021c52c4bb53403 [file] [log] [blame]
Jan Tattermusch96839f82016-02-06 18:11:39 -08001#!/bin/bash
Craig Tiller6169d5f2016-03-31 07:46:18 -07002# Copyright 2015, Google Inc.
Jan Tattermusch96839f82016-02-06 18:11:39 -08003# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met:
8#
9# * Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# * Redistributions in binary form must reproduce the above
12# copyright notice, this list of conditions and the following disclaimer
13# in the documentation and/or other materials provided with the
14# distribution.
15# * Neither the name of Google Inc. nor the names of its
16# contributors may be used to endorse or promote products derived from
17# this software without specific prior written permission.
18#
19# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31# Initializes a fresh GCE VM to become a jenkins linux worker.
32# You shouldn't run this script on your own, use create_linux_worker.sh
33# instead.
34
35set -ex
36
37sudo apt-get update
38
39# Install JRE
40sudo apt-get install -y openjdk-7-jre
41sudo apt-get install -y unzip lsof
42
43# Install Docker
44curl -sSL https://get.docker.com/ | sh
45
46# Setup jenkins user (or the user will already exist bcuz magic)
47sudo adduser jenkins --disabled-password || true
48
49# Enable jenkins to use docker without sudo:
50sudo usermod -aG docker jenkins
51
52# Use "overlay" storage driver for docker
53# see https://github.com/grpc/grpc/issues/4988
54echo 'DOCKER_OPTS="${DOCKER_OPTS} --storage-driver=overlay"' | sudo tee --append /etc/default/docker
55
56# Install RVM
57# TODO(jtattermusch): why is RVM needed?
58gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
59curl -sSL https://get.rvm.io | bash -s stable --ruby
60
61# Add pubkey of jenkins@grpc-jenkins-master to authorized keys of jenkins@
62# This needs to happen as the last step to prevent Jenkins master from connecting
63# to a machine that hasn't been properly setup yet.
64cat jenkins_master.pub | sudo tee --append ~jenkins/.ssh/authorized_keys
65
66# Restart for docker to pickup the config changes.
67echo 'Successfully initialized the linux worker, going for reboot in 10 seconds'
68sleep 10
69
70sudo reboot