Retrieve boot scripts from new demo artifact zip
[demo.git] / boot / robot_install.sh
1 #!/bin/bash
2
3 # Read configuration files
4 ARTIFACTS_VERSION=$(cat /opt/config/artifacts_version.txt)
5 DNS_IP_ADDR=$(cat /opt/config/dns_ip_addr.txt)
6 CLOUD_ENV=$(cat /opt/config/cloud_env.txt)
7 GERRIT_BRANCH=$(cat /opt/config/gerrit_branch.txt)
8 MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1)
9 CODE_REPO=$(cat /opt/config/remote_repo.txt)
10 HEAT_CODE_REPO=http://gerrit.onap.org/r/demo.git
11
12 # Short-term fix to get around MSO to SO name change
13 cp /opt/config/so_ip_addr.txt /opt/config/mso_ip_addr.txt
14
15 # Add host name to /etc/host to avoid warnings in openstack images
16 if [[ $CLOUD_ENV != "rackspace" ]]
17 then
18         echo 127.0.0.1 $(hostname) >> /etc/hosts
19
20         # Allow remote login as root
21         mv /root/.ssh/authorized_keys /root/.ssh/authorized_keys.bk
22         cp /home/ubuntu/.ssh/authorized_keys /root/.ssh
23 fi
24
25 # Set private IP in /etc/network/interfaces manually in the presence of public interface
26 # Some VM images don't add the private interface automatically, we have to do it during the component installation
27 if [[ $CLOUD_ENV == "openstack_nofloat" ]]
28 then
29         LOCAL_IP=$(cat /opt/config/local_ip_addr.txt)
30         CIDR=$(cat /opt/config/oam_network_cidr.txt)
31         BITMASK=$(echo $CIDR | cut -d"/" -f2)
32
33         # Compute the netmask based on the network cidr
34         if [[ $BITMASK == "8" ]]
35         then
36                 NETMASK=255.0.0.0
37         elif [[ $BITMASK == "16" ]]
38         then
39                 NETMASK=255.255.0.0
40         elif [[ $BITMASK == "24" ]]
41         then
42                 NETMASK=255.255.255.0
43         fi
44
45         echo "auto eth1" >> /etc/network/interfaces
46         echo "iface eth1 inet static" >> /etc/network/interfaces
47         echo "    address $LOCAL_IP" >> /etc/network/interfaces
48         echo "    netmask $NETMASK" >> /etc/network/interfaces
49         echo "    mtu $MTU" >> /etc/network/interfaces
50         ifup eth1
51 fi
52
53 # Download dependencies
54 echo "deb http://ppa.launchpad.net/openjdk-r/ppa/ubuntu $(lsb_release -c -s) main" >>  /etc/apt/sources.list.d/java.list
55 echo "deb-src http://ppa.launchpad.net/openjdk-r/ppa/ubuntu $(lsb_release -c -s) main" >>  /etc/apt/sources.list.d/java.list
56 apt-get update
57 apt-get install --allow-unauthenticated -y apt-transport-https ca-certificates wget openjdk-8-jdk git ntp ntpdate make
58
59 # Download scripts from Nexus
60 unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip robot_vm_init.sh > /opt/robot_vm_init.sh
61 unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip robot_serv.sh > /opt/robot_serv.sh
62 chmod +x /opt/robot_vm_init.sh
63 chmod +x /opt/robot_serv.sh
64 mv /opt/robot_serv.sh /etc/init.d
65 update-rc.d robot_serv.sh defaults
66
67 # Download and install docker-engine and docker-compose
68 echo "deb https://apt.dockerproject.org/repo ubuntu-xenial main" | sudo tee /etc/apt/sources.list.d/docker.list
69 apt-get update
70 apt-get install -y linux-image-extra-$(uname -r) linux-image-extra-virtual
71 apt-get install -y --allow-unauthenticated docker-engine
72
73 mkdir /opt/docker
74 curl -L https://github.com/docker/compose/releases/download/1.9.0/docker-compose-`uname -s`-`uname -m` > /opt/docker/docker-compose
75 chmod +x /opt/docker/docker-compose
76
77 # Set the MTU size of docker containers to the minimum MTU size supported by vNICs. OpenStack deployments may need to know the external DNS IP
78 DNS_FLAG=""
79 if [ -s /opt/config/dns_ip_addr.txt ]
80 then
81         DNS_FLAG=$DNS_FLAG"--dns $(cat /opt/config/dns_ip_addr.txt) "
82 fi
83 if [ -s /opt/config/external_dns.txt ]
84 then
85         DNS_FLAG=$DNS_FLAG"--dns $(cat /opt/config/external_dns.txt) "
86 fi
87 echo "DOCKER_OPTS=\"$DNS_FLAG--mtu=$MTU\"" >> /etc/default/docker
88
89 cp /lib/systemd/system/docker.service /etc/systemd/system
90 sed -i "/ExecStart/s/$/ --mtu=$MTU/g" /etc/systemd/system/docker.service
91 service docker restart
92
93 # DNS IP address configuration
94 echo "nameserver "$DNS_IP_ADDR >> /etc/resolvconf/resolv.conf.d/head
95 resolvconf -u
96
97 # Clone Gerrit repository
98 mkdir -p /opt/eteshare/logs
99 mkdir -p /opt/eteshare/config
100 cd /opt
101 git clone -b $GERRIT_BRANCH --single-branch $CODE_REPO testsuite/properties
102 git clone -b $GERRIT_BRANCH --single-branch $HEAT_CODE_REPO demo
103
104 # Rename network interface in openstack Ubuntu 16.04 images. Then, reboot the VM to pick up changes
105 if [[ $CLOUD_ENV != "rackspace" ]]
106 then
107         sed -i "s/GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub
108         grub-mkconfig -o /boot/grub/grub.cfg
109         sed -i "s/ens[0-9]*/eth0/g" /etc/network/interfaces.d/*.cfg
110         sed -i "s/ens[0-9]*/eth0/g" /etc/udev/rules.d/70-persistent-net.rules
111         echo 'network: {config: disabled}' >> /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg
112         echo "APT::Periodic::Unattended-Upgrade \"0\";" >> /etc/apt/apt.conf.d/10periodic
113         reboot
114 fi
115
116 # Run docker containers. For openstack Ubuntu 16.04 images this will run as a service after the VM has restarted
117 ./robot_vm_init.sh