Remove demo, testuite/properties repos in robot VM
[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 HTTP_PROXY=$(cat /opt/config/http_proxy.txt)
12 HTTPS_PROXY=$(cat /opt/config/https_proxy.txt)
13
14 if [ $HTTP_PROXY != "no_proxy" ]
15 then
16     export http_proxy=$HTTP_PROXY
17     export https_proxy=$HTTPS_PROXY
18 fi
19
20 # Short-term fix to get around MSO to SO name change
21 cp /opt/config/so_ip_addr.txt /opt/config/mso_ip_addr.txt
22
23 # Add host name to /etc/host to avoid warnings in openstack images
24 if [[ $CLOUD_ENV != "rackspace" ]]
25 then
26         echo 127.0.0.1 $(hostname) >> /etc/hosts
27
28         # Allow remote login as root
29         mv /root/.ssh/authorized_keys /root/.ssh/authorized_keys.bk
30         cp /home/ubuntu/.ssh/authorized_keys /root/.ssh
31 fi
32
33 # Set private IP in /etc/network/interfaces manually in the presence of public interface
34 # Some VM images don't add the private interface automatically, we have to do it during the component installation
35 if [[ $CLOUD_ENV == "openstack_nofloat" ]]
36 then
37         LOCAL_IP=$(cat /opt/config/local_ip_addr.txt)
38         CIDR=$(cat /opt/config/oam_network_cidr.txt)
39         BITMASK=$(echo $CIDR | cut -d"/" -f2)
40
41         # Compute the netmask based on the network cidr
42         if [[ $BITMASK == "8" ]]
43         then
44                 NETMASK=255.0.0.0
45         elif [[ $BITMASK == "16" ]]
46         then
47                 NETMASK=255.255.0.0
48         elif [[ $BITMASK == "24" ]]
49         then
50                 NETMASK=255.255.255.0
51         fi
52
53         echo "auto eth1" >> /etc/network/interfaces
54         echo "iface eth1 inet static" >> /etc/network/interfaces
55         echo "    address $LOCAL_IP" >> /etc/network/interfaces
56         echo "    netmask $NETMASK" >> /etc/network/interfaces
57         echo "    mtu $MTU" >> /etc/network/interfaces
58         ifup eth1
59 fi
60
61 apt-get update
62 apt-get install -y apt-transport-https ca-certificates wget git ntp ntpdate make
63
64 # Download scripts from Nexus
65 unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip robot_vm_init.sh > /opt/robot_vm_init.sh
66 unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip robot_serv.sh > /opt/robot_serv.sh
67 unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip imagetest.sh > /opt/imagetest.sh
68
69 mkdir -p /opt/eteshare/config
70 unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip robot/integration_preload_parameters.py > /opt/eteshare/config/integration_preload_parameters.py
71 unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip robot/integration_robot_properties.py > /opt/eteshare/config/integration_robot_properties.py
72 unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip robot/vm_config2robot.sh > /opt/eteshare/config/vm_config2robot.sh
73 chmod +x /opt/eteshare/config/vm_config2robot.sh
74 unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip robot/ete.sh > /opt/ete.sh
75 chmod +x /opt/ete.sh
76 unzip -p -j /opt/boot-$ARTIFACTS_VERSION.zip robot/demo.sh > /opt/demo.sh
77 chmod +x /opt/demo.sh
78
79 mkdir -p /opt/eteshare/logs
80
81 mv /opt/robot_serv.sh /etc/init.d
82 update-rc.d robot_serv.sh defaults
83
84 # Download and install docker-engine
85 echo "deb https://apt.dockerproject.org/repo ubuntu-xenial main" | sudo tee /etc/apt/sources.list.d/docker.list
86 apt-get update
87 apt-get install -y linux-image-extra-$(uname -r) linux-image-extra-virtual
88 apt-get install -y --allow-unauthenticated docker-engine
89
90 # 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
91 DNS_FLAG=""
92 if [ -s /opt/config/dns_ip_addr.txt ]
93 then
94         DNS_FLAG=$DNS_FLAG"--dns $(cat /opt/config/dns_ip_addr.txt) "
95 fi
96 if [ -s /opt/config/external_dns.txt ]
97 then
98         DNS_FLAG=$DNS_FLAG"--dns $(cat /opt/config/external_dns.txt) "
99 fi
100 echo "DOCKER_OPTS=\"$DNS_FLAG--mtu=$MTU\"" >> /etc/default/docker
101
102 cp /lib/systemd/system/docker.service /etc/systemd/system
103 sed -i "/ExecStart/s/$/ --mtu=$MTU/g" /etc/systemd/system/docker.service
104 if [ $HTTP_PROXY != "no_proxy" ]
105 then
106 cd /opt
107 ./imagetest.sh
108 fi
109 service docker restart
110
111 # DNS IP address configuration
112 echo "nameserver "$DNS_IP_ADDR >> /etc/resolvconf/resolv.conf.d/head
113 resolvconf -u
114
115
116 # Rename network interface in openstack Ubuntu 16.04 images. Then, reboot the VM to pick up changes
117 if [[ $CLOUD_ENV != "rackspace" ]]
118 then
119         sed -i "s/GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub
120         grub-mkconfig -o /boot/grub/grub.cfg
121         sed -i "s/ens[0-9]*/eth0/g" /etc/network/interfaces.d/*.cfg
122         sed -i "s/ens[0-9]*/eth0/g" /etc/udev/rules.d/70-persistent-net.rules
123         echo 'network: {config: disabled}' >> /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg
124         echo "APT::Periodic::Unattended-Upgrade \"0\";" >> /etc/apt/apt.conf.d/10periodic
125         reboot
126 fi
127
128 # Run docker containers. For openstack Ubuntu 16.04 images this will run as a service after the VM has restarted
129 ./robot_vm_init.sh