diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2017-06-16 13:44:28 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2017-06-16 13:44:28 -0700 |
commit | 213a8351fd266294e17a862b4d223c1968800a09 (patch) | |
tree | 0eaa87c3253da9f65fcbaf514c6b2baaf06fa162 /bootstrap/jenkins/vagrant/bootstrap.sh | |
parent | 06a50674c025c198585a6de4e6bb035cde63832d (diff) |
Added vagrant setup for a Jenkins system for ONAP
Add a set of vagrant scripts that will set up a
local Jenkins environment with pre-defined jobs
to build all the ONAP java code and docker images.
Change-Id: I67ed254bcb38a7be989b7c2861fd3ea4ec9c66f2
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'bootstrap/jenkins/vagrant/bootstrap.sh')
-rwxr-xr-x | bootstrap/jenkins/vagrant/bootstrap.sh | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/bootstrap/jenkins/vagrant/bootstrap.sh b/bootstrap/jenkins/vagrant/bootstrap.sh new file mode 100755 index 000000000..ab5c45f32 --- /dev/null +++ b/bootstrap/jenkins/vagrant/bootstrap.sh @@ -0,0 +1,43 @@ +#!/bin/sh + +sed -i 's|archive\.ubuntu\.com|mirrors.ocf.berkeley.edu|g' /etc/apt/sources.list + +echo "192.168.33.1 nexus-proxy" >> /etc/hosts + + +cat >> /etc/inputrc <<EOF +set show-all-if-ambiguous on +set show-all-if-unmodified on +set match-hidden-files off +set mark-symlinked-directories on +EOF + + +apt-get update +apt-get -y install git +git config --global user.email "gary.i.wu@huawei.com" +git config --global user.name "Gary Wu" +apt-get -y install curl openjdk-8-jdk maven unzip + +# install Jenkins +wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add - +sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list' +apt-get update +apt-get -y install jenkins jenkins-job-builder python-pip + +apt-get -y install docker.io +sudo usermod -aG docker ubuntu +sudo usermod -aG docker jenkins + +su -l jenkins -c "/vagrant/jenkins-init-1.sh" + +sudo systemctl restart jenkins +sleep 5 + +su -l jenkins -c "/vagrant/jenkins-init-2.sh" + +sudo systemctl restart jenkins +sleep 5 + +su -l jenkins -c "/vagrant/jjb-init.sh" + |