Adding an easy install Script 49/25349/6
authorNikolas Hermanns <nikolas.hermanns@ericsson.com>
Thu, 1 Dec 2016 17:51:28 +0000 (12:51 -0500)
committerNikolas Hermanns <nikolas.hermanns@ericsson.com>
Fri, 13 Jan 2017 12:20:00 +0000 (13:20 +0100)
This script is for new commers. It deployes apex in the most
easiest way. People can just execute it and see what happens.
As well the script is so short and easy that they directly
see what needs to be done.

Change-Id: I02c9773ad6df154c735024de2ffd02254c8f67bb
Signed-off-by: Nikolas Hermanns <nikolas.hermanns@ericsson.com>
contrib/simple_deploy.sh [new file with mode: 0644]

diff --git a/contrib/simple_deploy.sh b/contrib/simple_deploy.sh
new file mode 100644 (file)
index 0000000..f4b082a
--- /dev/null
@@ -0,0 +1,19 @@
+#!/bin/bash
+set -e
+apex_home=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
+export CONFIG=$apex_home/build
+export LIB=$apex_home/lib
+export RESOURCES=$apex_home/.build/images/
+export PYTHONPATH=$PYTHONPATH:$apex_home/lib/python
+$apex_home/ci/dev_dep_check.sh
+pushd $apex_home/build
+make clean
+make undercloud
+make overcloud-opendaylight
+pushd $apex_home/ci
+./clean.sh
+./dev_dep_check.sh
+out=/tmp/opnfv-deploy.out
+echo "All further output will be piped to $out"
+(nohup ./deploy.sh -v -n $apex_home/config/network/network_settings.yaml -d $apex_home/config/deploy/os-odl_l3-nofeature-noha.yaml &> $out &)
+popd