diff options
author | bobzhou <bob.zh@huawei.com> | 2017-03-10 10:09:55 +0800 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2017-05-08 16:05:14 +0000 |
commit | df5596005c4f0a98c39375feef0bcca55c89f239 (patch) | |
tree | 7df01195d6daed3e565e850beff17f92c850d321 /build/overcloud-onos.sh | |
parent | b5e4091424ced384b49f6ff13b1ef2b63466f947 (diff) |
add onos deployment steps
opnfv-tht-pr: 128
opnfv-puppet-tripleo-pr: 23
Change-Id: Ib99f7e3968ed03bd86ca0de9c6c37c9871921486
Signed-off-by: bobzhou <bob.zh@huawei.com>
(cherry picked from commit 266e9a5336defeff5f10331ab8316d69e7b20cc1)
Diffstat (limited to 'build/overcloud-onos.sh')
-rwxr-xr-x | build/overcloud-onos.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build/overcloud-onos.sh b/build/overcloud-onos.sh index 40f9f66a..c64c19b3 100755 --- a/build/overcloud-onos.sh +++ b/build/overcloud-onos.sh @@ -28,12 +28,16 @@ LIBGUESTFS_BACKEND=direct virt-customize --upload ${CACHE_DIR}/${onos_release_fi -a overcloud-full-onos_build.qcow2 #Those files can be store in local cache for saving download time -git clone https://github.com/saravanaonos/puppet-onos.git +git clone https://github.com/bobzhouHW/puppet-onos.git tar --xform="s:puppet-onos/:onos/:" -czf puppet-onos.tar.gz puppet-onos LIBGUESTFS_BACKEND=direct virt-customize --upload ${CACHE_DIR}/jdk-8u51-linux-x64.tar.gz:/opt/ \ --upload ${BUILD_DIR}/puppet-onos/files/install_jdk8.tar:/opt/ \ --run-command "cd /opt/ && tar -xf install_jdk8.tar && sh /opt/install_jdk8/install_jdk8.sh" \ + --upload ${BUILD_DIR}/puppet-onos/files/networking-onos.tar:/opt/ \ + --run-command "cd /opt/ && tar -xf networking-onos.tar && sh /opt/networking-onos/install_driver.sh" \ + --upload ${BUILD_DIR}/puppet-onos/files/networking-sfc.tar:/opt/ \ + --run-command "cd /opt/ && tar -xf networking-sfc.tar && sh /opt/networking-sfc/install_driver.sh" \ --upload ${BUILD_DIR}/puppet-onos.tar.gz:/etc/puppet/modules/ \ --run-command "cd /etc/puppet/modules/ && tar xzf puppet-onos.tar.gz" \ -a overcloud-full-onos_build.qcow2 |