From: Felipe Vicens Date: Wed, 24 Jun 2020 19:23:44 +0000 (+0200) Subject: Adding VIM to OSM option X-Git-Tag: release-v9.0-start~56 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=55b615846cf5d0dbdf20a9971e1f568500bda23e;p=osm%2Ftests.git Adding VIM to OSM option Change-Id: Ifbcfeb50b451de19830e2fe9f537af0626742b4c Signed-off-by: Felipe Vicens --- diff --git a/robot-systest/run_test.sh b/robot-systest/run_test.sh index 1f8636d..ac2e330 100755 --- a/robot-systest/run_test.sh +++ b/robot-systest/run_test.sh @@ -32,6 +32,13 @@ download_packages(){ git checkout ${PACKAGES}) } +create_vim(){ + echo -e "\nCreating VIM ${VIM_TARGET}" + osm vim-create --name ${VIM_TARGET} --user ${OS_USERNAME} --password ${OS_PASSWORD} --tenant ${OS_PROJECT_NAME} \ + --auth_url ${OS_AUTH_URL} --account_type openstack --description vim \ + --config "{management_network_name: ${VIM_MGMT_NET}}" || true +} + PARAMS="" while (( "$#" )); do @@ -48,6 +55,10 @@ while (( "$#" )); do OSMCLIENT=$2 install_osmclient shift 2 ;; + -c|--createvim) + create_vim + shift 1 + ;; -h|--help) echo "OSM TESTS TOOL @@ -65,6 +76,7 @@ Options: -o [OPTIONAL]: It is used to specify a particular osmclient version. Default: latest -p [OPTIONAL]: OSM packages repository branch. Default: master -t [OPTIONAL]: Robot tests tags. [sanity, regression, particular_test]. Default: sanity + -c To create a VIM for the tests Volumes: [OPTIONAL]: It is the absolute path to reports location in the host