Merge "Fixes nic templates for ovs dpdk"
[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 -e
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 images/ ]; then mkdir images; fi
18 tar -xf cache/overcloud-full.tar -C images/
19 mv -f images/overcloud-full.qcow2 images/overcloud-full_build.qcow2
20
21 ##########################################################
22 #####  Prep initial overcloud image with common deps #####
23 ##########################################################
24
25 # prep opnfv-puppet-tripleo for undercloud
26 clone_fork opnfv-puppet-tripleo
27 pushd opnfv-puppet-tripleo > /dev/null
28 git archive --format=tar.gz --prefix=tripleo/ HEAD > ../opnfv-puppet-tripleo.tar.gz
29 popd > /dev/null
30
31 # download customized os-net-config
32 rm -fr os-net-config
33 git clone https://github.com/trozet/os-net-config.git -b hiera_nic_mapping
34 pushd os-net-config > /dev/null
35 pushd os_net_config > /dev/null
36 git archive --format=tar.gz --prefix=os_net_config/ HEAD > ../../os-net-config.tar.gz
37 popd > /dev/null
38 popd > /dev/null
39
40 pushd images > /dev/null
41
42 dpdk_pkg_str=''
43 for package in ${dpdk_rpms[@]}; do
44   curl -O "$dpdk_uri_base/$package"
45   dpdk_pkg_str+=" --upload $package:/root/dpdk_rpms"
46 done
47
48 # installing forked opnfv-puppet-tripleo
49 # enable connection tracking for protocal sctp
50 # upload dpdk rpms but do not install
51 LIBGUESTFS_BACKEND=direct virt-customize \
52     --upload ../opnfv-puppet-tripleo.tar.gz:/etc/puppet/modules \
53     --run-command "cd /etc/puppet/modules && rm -rf tripleo && tar xzf opnfv-puppet-tripleo.tar.gz" \
54     --run-command "echo 'nf_conntrack_proto_sctp' > /etc/modules-load.d/nf_conntrack_proto_sctp.conf" \
55     --run-command "mkdir /root/dpdk_rpms" \
56     $dpdk_pkg_str \
57     --install "centos-release-qemu-ev" \
58     --run-command "yum update -y" \
59     --run-command "yum remove -y qemu-system-x86" \
60     --upload ../os-net-config.tar.gz:/usr/lib/python2.7/site-packages \
61     --run-command "cd /usr/lib/python2.7/site-packages/ && rm -rf os_net_config && tar xzf os-net-config.tar.gz" \
62     -a overcloud-full_build.qcow2
63
64 mv -f overcloud-full_build.qcow2 overcloud-full.qcow2
65 popd > /dev/null