Update VPP/ODL versions for FDIO scenarios
[apex.git] / build / overcloud-full.sh
1 #!/bin/sh
2 ##############################################################################
3 # Copyright (c) 2015 Tim Rozet (Red Hat), Dan Radez (Red Hat) and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10 set -xe
11 source ./cache.sh
12 source ./variables.sh
13 source ./functions.sh
14
15 populate_cache "$rdo_images_uri/overcloud-full.tar"
16
17 if [ ! -d ${BUILD_DIR} ]; then mkdir ${BUILD_DIR}; fi
18 tar -xf ${CACHE_DIR}/overcloud-full.tar -C ${BUILD_DIR}/
19 mv -f ${BUILD_DIR}/overcloud-full.qcow2 ${BUILD_DIR}/overcloud-full_build.qcow2
20
21 ##########################################################
22 #####  Prep initial overcloud image with common deps #####
23 ##########################################################
24
25 pushd ${BUILD_DIR} > /dev/null
26
27 # prep opnfv-puppet-tripleo for undercloud
28 clone_fork opnfv-puppet-tripleo
29 pushd opnfv-puppet-tripleo > /dev/null
30 git archive --format=tar.gz --prefix=tripleo/ HEAD > ${BUILD_DIR}/opnfv-puppet-tripleo.tar.gz
31 popd > /dev/null
32
33 # download customized os-net-config
34 clone_fork os-net-config
35 pushd os-net-config/os_net_config > /dev/null
36 git archive --format=tar.gz --prefix=os_net_config/ HEAD > ${BUILD_DIR}/os-net-config.tar.gz
37 popd > /dev/null
38
39 dpdk_pkg_str=''
40 for package in ${dpdk_rpms[@]}; do
41   wget "$dpdk_uri_base/$package"
42   dpdk_pkg_str+=" --upload ${BUILD_DIR}/${package}:/root/dpdk_rpms"
43 done
44
45 # tar up the congress puppet module
46 rm -rf puppet-congress
47 git clone https://github.com/openstack/puppet-congress
48 pushd puppet-congress > /dev/null
49 git archive --format=tar.gz --prefix=congress/ HEAD > ${BUILD_DIR}/puppet-congress.tar.gz
50 popd > /dev/null
51
52 # tar up the fd.io module
53 rm -rf puppet-fdio
54 git clone https://git.fd.io/puppet-fdio
55 pushd puppet-fdio > /dev/null
56 git archive --format=tar.gz --prefix=fdio/ HEAD > ${BUILD_DIR}/puppet-fdio.tar.gz
57 popd > /dev/null
58
59 # tar up vsperf
60 rm -rf vsperf vsperf.tar.gz
61 git clone https://gerrit.opnfv.org/gerrit/vswitchperf vsperf
62 tar czf vsperf.tar.gz vsperf
63
64 # tar up the tacker puppet module
65 rm -rf puppet-tacker
66 git clone https://github.com/openstack/puppet-tacker
67 pushd puppet-tacker > /dev/null
68 git archive --format=tar.gz --prefix=tacker/ origin/stable/ocata > ${BUILD_DIR}/puppet-tacker.tar.gz
69 popd > /dev/null
70
71 # tar up the ovn puppet module
72 rm -rf puppet-ovn
73 git clone https://github.com/openstack/puppet-ovn
74 pushd puppet-ovn > /dev/null
75 git archive --format=tar.gz --prefix=ovn/ origin/stable/ocata > ${BUILD_DIR}/puppet-ovn.tar.gz
76 popd > /dev/null
77
78 # Get Real Time Kernel from kvm4nfv
79 populate_cache $kvmfornfv_uri_base/$kvmfornfv_kernel_rpm
80
81 # packages frozen for fdio scenarios
82 fdio_pkg_str=''
83 for package in ${fdio_pkgs[@]}; do
84   wget "$package"
85   fdio_pkg_str+=" --upload ${BUILD_DIR}/${package##*/}:/root/fdio/"
86 done
87
88 # Increase disk size by 900MB to accommodate more packages
89 qemu-img resize overcloud-full_build.qcow2 +900MB
90
91 # expand file system to max disk size
92 # installing forked opnfv-puppet-tripleo
93 # upload dpdk rpms but do not install
94 # install the congress rpms
95 # upload and explode the congress puppet module
96 # install fd.io yum repo and packages
97 # upload puppet fdio
98 # git clone vsperf into the overcloud image
99 # upload the tacker puppet module and untar it
100 # install tacker
101 # upload the rt_kvm kernel
102 LIBGUESTFS_BACKEND=direct virt-customize \
103     --run-command "xfs_growfs /dev/sda" \
104     --upload ${BUILD_DIR}/opnfv-puppet-tripleo.tar.gz:/etc/puppet/modules \
105     --run-command "cd /etc/puppet/modules && rm -rf tripleo && tar xzf opnfv-puppet-tripleo.tar.gz" \
106     --run-command "yum update -y python-ipaddress rabbitmq-server erlang*" \
107     --run-command "if ! rpm -qa | grep python-redis; then yum install -y python-redis; fi" \
108     --run-command "sed -i 's/^#UseDNS.*$/UseDNS no/' /etc/ssh/sshd_config" \
109     --run-command "sed -i 's/^GSSAPIAuthentication.*$/GSSAPIAuthentication no/' /etc/ssh/sshd_config" \
110     --run-command "mkdir /root/dpdk_rpms" \
111     $dpdk_pkg_str \
112     --run-command "mkdir /root/fdio" \
113     --upload ${BUILD_DIR}/noarch/$netvpp_pkg:/root/fdio \
114     $fdio_pkg_str \
115     --run-command "yum install -y /root/fdio/*.rpm" \
116     --run-command "yum install -y etcd" \
117     --install python-etcd \
118     --run-command "puppet module install cristifalcas/etcd" \
119     --run-command "yum update -y puppet" \
120     --install "centos-release-qemu-ev" \
121     --run-command "yum install -y qemu-kvm-ev-2.3.0-31.el7_2.21.1.x86_64" \
122     --run-command "yum remove -y qemu-system-x86" \
123     --upload ${BUILD_DIR}/os-net-config.tar.gz:/usr/lib/python2.7/site-packages \
124     --run-command "cd /usr/lib/python2.7/site-packages/ && rm -rf os_net_config && tar xzf os-net-config.tar.gz" \
125     --upload ${BUILD_DIR}/noarch/$congress_pkg:/root/ \
126     --install /root/$congress_pkg \
127     --install "python2-congressclient" \
128     --upload ${BUILD_DIR}/puppet-congress.tar.gz:/etc/puppet/modules/ \
129     --run-command "cd /etc/puppet/modules/ && tar xzf puppet-congress.tar.gz" \
130     --run-command "rm -f /etc/sysctl.d/80-vpp.conf" \
131     --install unzip \
132     --upload ${BUILD_DIR}/puppet-fdio.tar.gz:/etc/puppet/modules \
133     --run-command "cd /etc/puppet/modules && tar xzf puppet-fdio.tar.gz" \
134     --upload ${BUILD_DIR}/vsperf.tar.gz:/var/opt \
135     --run-command "cd /var/opt && tar xzf vsperf.tar.gz" \
136     --upload ${BUILD_DIR}/puppet-tacker.tar.gz:/etc/puppet/modules/ \
137     --run-command "cd /etc/puppet/modules/ && tar xzf puppet-tacker.tar.gz" \
138     --upload ${BUILD_DIR}/noarch/$tacker_pkg:/root/ \
139     --install /root/$tacker_pkg \
140     --upload ${BUILD_DIR}/noarch/$tackerclient_pkg:/root/ \
141     --install /root/$tackerclient_pkg \
142     --upload ${BUILD_DIR}/puppet-ovn.tar.gz:/etc/puppet/modules/ \
143     --run-command "cd /etc/puppet/modules/ && rm -fr ovn && tar xzf puppet-ovn.tar.gz" \
144     --run-command "curl -f https://copr.fedorainfracloud.org/coprs/leifmadsen/ovs-master/repo/epel-7/leifmadsen-ovs-master-epel-7.repo > /etc/yum.repos.d/leifmadsen-ovs-master-epel-7.repo" \
145     --run-command "mkdir /root/ovs27" \
146     --run-command "yumdownloader --destdir=/root/ovs27 openvswitch*2.7* python-openvswitch-2.7*" \
147     --run-command "pip install python-senlinclient" \
148     --run-command "sed -i -E 's/timeout=[0-9]+/timeout=60/g' /usr/share/openstack-puppet/modules/rabbitmq/lib/puppet/provider/rabbitmqctl.rb" \
149     --upload ${BUILD_ROOT}/patches/puppet-neutron-add-odl-settings.patch:/usr/share/openstack-puppet/modules/neutron/ \
150     --run-command "cd /usr/share/openstack-puppet/modules/neutron && patch -p1 <  puppet-neutron-add-odl-settings.patch" \
151     --upload ${CACHE_DIR}/$kvmfornfv_kernel_rpm:/root/ \
152     --upload ${BUILD_ROOT}/patches/puppet-neutron-vpp-ml2.patch:/usr/share/openstack-puppet/modules/neutron/ \
153     --run-command "cd /usr/share/openstack-puppet/modules/neutron && patch -p1 <  puppet-neutron-vpp-ml2.patch" \
154     -a overcloud-full_build.qcow2
155
156 mv -f overcloud-full_build.qcow2 overcloud-full.qcow2
157 popd > /dev/null