diff options
author | Romanos Skiadas <rski@intracom-telecom.com> | 2017-01-20 16:49:26 -0500 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2017-02-17 20:41:45 -0500 |
commit | a7155293dba7c21f060b671b15fc36a66b84de83 (patch) | |
tree | 104967a3691d4e042f086d2a2dba57a6b93da9cf /build/overcloud-opendaylight.sh | |
parent | 5e4c2ffc86d0426113f60b8069e81482f82bbc8d (diff) |
Adding Quagga to build
Builds 6Wind ZRPC, Quagga, and dependencies required for OpenDaylight
with BGPVPN scenario. Packages are built into RPMs, and left on the
overcloud disk in /root/quagga. They are then installed at deploy time
if VPN feature flag is enabled. Note, for proper upstream we should
create a zrpc OOO service, but that can be a follow up patch. For that
we would also need official packaging/build system upstream somewhere.
JIRA: APEX-357
Changes Include:
- Build thrift rpm
- Build c-capnproto rpm
- Build quagga rpm
- Build zrpcd rpm
- Configure bgpd
- Detect deploy with VPN and install pkgs
- Enable zrpcd with systemd
Change-Id: I9825694f46aaab48a3d1cd5fc4d9a24c7370e8fa
Signed-off-by: Tim Rozet <trozet@redhat.com>
Signed-off-by: Nikolas Hermanns <nikolas.hermanns@ericsson.com>
Signed-off-by: Romanos Skiadas <rski@intracom-telecom.com>
Diffstat (limited to 'build/overcloud-opendaylight.sh')
-rwxr-xr-x | build/overcloud-opendaylight.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/build/overcloud-opendaylight.sh b/build/overcloud-opendaylight.sh index af745f18..66bf53a7 100755 --- a/build/overcloud-opendaylight.sh +++ b/build/overcloud-opendaylight.sh @@ -71,10 +71,16 @@ pushd netready/ > /dev/null git archive --format=tar.gz HEAD:deploy/puppet/ > ${BUILD_DIR}/puppet-gluon.tar.gz popd > /dev/null +# Tar up all quagga/zrpc rpms +pushd ${QUAGGA_RPMS_DIR}/rpmbuild/RPMS > /dev/null +tar --transform "s/^x86_64/quagga/" -czvf ${BUILD_DIR}/quagga.tar.gz x86_64/ +popd > /dev/null + # install ODL packages # install Jolokia for ODL HA # Patch in OPNFV custom puppet-tripleO # install Honeycomb +# install quagga/zrpc LIBGUESTFS_BACKEND=direct virt-customize \ --upload ${BUILD_DIR}/opendaylight_boron.repo:/etc/yum.repos.d/opendaylight.repo \ --run-command "yum install --downloadonly --downloaddir=/root/boron/ opendaylight" \ @@ -96,6 +102,10 @@ LIBGUESTFS_BACKEND=direct virt-customize \ --install epel-release \ --install python-click \ --install http://artifacts.opnfv.org/netready/gluon-0.0.1-1_20170216.noarch.rpm \ + --upload ${BUILD_DIR}/quagga.tar.gz:/root/ \ + --run-command "cd /root/ && tar xzf quagga.tar.gz" \ + --install zeromq-4.1.4,zeromq-devel-4.1.4 \ + --install capnproto-devel,capnproto-libs,capnproto \ -a overcloud-full-opendaylight_build.qcow2 mv overcloud-full-opendaylight_build.qcow2 overcloud-full-opendaylight.qcow2 |