X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=src%2Fuse_cases%2Fseba_on_arm%2Ftest%2Fponsim%2Finstall.sh;fp=src%2Fuse_cases%2Fseba_on_arm%2Ftest%2Fponsim%2Finstall.sh;h=6aa728b4e409846167a4f126afd37d3fcc7ae467;hb=e70f1cbe15e44cc01e3114cd69481e9b33ce351f;hp=0000000000000000000000000000000000000000;hpb=8c69ce1b6d03bd191b720a98adfad200d3d99745;p=iec.git diff --git a/src/use_cases/seba_on_arm/test/ponsim/install.sh b/src/use_cases/seba_on_arm/test/ponsim/install.sh new file mode 100755 index 0000000..6aa728b --- /dev/null +++ b/src/use_cases/seba_on_arm/test/ponsim/install.sh @@ -0,0 +1,64 @@ +#!/bin/bash +# shellcheck disable=SC2016 + +set -ex + +basepath=$(cd "$(dirname "$0")"; pwd) + +# Using opencord automation-tools from the cord-6.1 maintenance branch +AUTO_TOOLS_GIT="https://github.com/opencord/automation-tools.git" +AUTO_TOOLS_VER=${AUTO_TOOLS_VER:-cord-6.1} + +export M=/tmp/milestones +export SEBAVALUE= +export WORKSPACE=${HOME} + +mkdir -p ${M} "${WORKSPACE}/cord/test" + +# Update helm-charts submdule needed later +# ignore subproject commit and use latest remote version +git submodule update --init --remote "${basepath}/../../src_repo/helm-charts" + +cd "${WORKSPACE}" +test -d automation-tools || git clone "${AUTO_TOOLS_GIT}" +cd "${WORKSPACE}/automation-tools" && git checkout "${AUTO_TOOLS_VER}" + +# Fake the setup phase so that portcheck.sh is not called +# also install some required packages +sudo apt install -y httpie jq software-properties-common bridge-utils make +# add iptbles rule needed to forward DHCP packets comming from the RG_POD +sudo iptables -P FORWARD ACCEPT +touch "${M}/setup" + +# Skip helm installation if it already exists and fake /usr/local/bin/helm +if xhelm=$(command -v helm) +then + if [ "${xhelm}" != "/usr/local/bin/helm" ] + then + echo "helm is installed at ${xhelm}; symlinking to /usr/local/bin/helm" + mkdir -p /usr/local/bin/ || true + sudo ln -sf "${xhelm}" /usr/local/bin/helm + fi +else + echo "helm is not installed" +fi + +# Faking helm-charts repo clone to our own git submodule if not already there +CHARTS="${WORKSPACE}/cord/helm-charts" +test -d "${CHARTS}" || test -h "${CHARTS}" || \ + ln -s "${basepath}/../../src_repo/helm-charts" "${CHARTS}" + +# Fake SiaB components setup since they are already installed +milestones="kubeadm helm-init kafka kafka-running etcd-operator-ready voltha \ + voltha-running nem onos siab" + +for m in ${milestones} +do + echo "Faking SiaB milestone ${M}/${m}" + test -f "${M}/${m}" || touch "${M}/${m}" +done + +# Now calling make, to install PONSim +cd "${WORKSPACE}/automation-tools/seba-in-a-box" +make stable +