summaryrefslogtreecommitdiffstats
path: root/build/overcloud-full.sh
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2016-11-28 15:03:04 -0500
committerTim Rozet <trozet@redhat.com>2016-11-29 15:12:22 -0500
commit7c3da5d39dbf71429b0ac31c8b790e102031d645 (patch)
tree284cf940208f3ec4d32a90c1674d3ec7c28e6aeb /build/overcloud-full.sh
parent53ec4e9c172cfb527ec3b154ddd28109926f46b7 (diff)
Updates VPP packages to latest master version
JIRA: APEX-344 Change-Id: Ib1bf1ac6b76af3a4cbbc2b7a20753c232ff5fa16 Signed-off-by: Tim Rozet <trozet@redhat.com> (cherry picked from commit c5743c31f5018d34f756a2c48dd5e7f6948629e3)
Diffstat (limited to 'build/overcloud-full.sh')
-rwxr-xr-xbuild/overcloud-full.sh19
1 files changed, 11 insertions, 8 deletions
diff --git a/build/overcloud-full.sh b/build/overcloud-full.sh
index 8ec7af6b..4b348565 100755
--- a/build/overcloud-full.sh
+++ b/build/overcloud-full.sh
@@ -50,12 +50,6 @@ for package in ${dpdk_rpms[@]}; do
dpdk_pkg_str+=" --upload $package:/root/dpdk_rpms"
done
-fdio_pkg_str=''
-for package in ${fdio_pkgs[@]}; do
- wget "$fdio_uri_base/$package"
- fdio_pkg_str+=" --upload $package:/root/fdio"
-done
-
# tar up the congress puppet module
rm -rf puppet-congress
git clone -b stable/mitaka https://github.com/radez/puppet-congress
@@ -95,6 +89,15 @@ popd > /dev/null
# replace repo with latest delorean mitaka
wget https://trunk.rdoproject.org/centos7-mitaka/current-passed-ci/delorean.repo
+# Master FD.IO Repo
+cat > /tmp/fdio.repo << EOF
+[fdio-master]
+name=fd.io master branch latest merge
+baseurl=https://nexus.fd.io/content/repositories/fd.io.master.centos7/
+enabled=1
+gpgcheck=0
+EOF
+
# installing forked opnfv-puppet-tripleo
# enable connection tracking for protocal sctp
# upload dpdk rpms but do not install
@@ -116,9 +119,9 @@ LIBGUESTFS_BACKEND=direct virt-customize \
--run-command "cd /etc/puppet/modules && rm -rf tripleo && tar xzf opnfv-puppet-tripleo.tar.gz" \
--run-command "echo 'nf_conntrack_proto_sctp' > /etc/modules-load.d/nf_conntrack_proto_sctp.conf" \
--run-command "mkdir /root/dpdk_rpms" \
- --run-command "mkdir /root/fdio" \
+ --upload /tmp/fdio.repo:/etc/yum.repos.d/fdio.repo \
$dpdk_pkg_str \
- $fdio_pkg_str \
+ --run-command "yum install --downloadonly --downloaddir=/root/fdio vpp vpp-devel vpp-lib vpp-python-api vpp-plugins" \
--upload ../networking-vpp.noarch.rpm:/root/fdio \
--run-command "pip install distro flask_restful" \
--run-command "yum install -y etcd" \