Deploying with ovn turned on for ovn jobs

Change-Id: Ifb45a804d1680798d7c390030dfd5019cc7881aa
This commit is contained in:
agopi 2018-02-15 11:06:36 -05:00 committed by Aakarsh
parent 739188c275
commit c398599863
1 changed files with 7 additions and 0 deletions

View File

@ -57,6 +57,13 @@ if [ ! -z ${current_build+x} ]
fi
fi
#Adding extra vars to deploy cloud with ovn
#if the job is an ovn job
if [[ $TOOL == ovn ]]
then
echo "Deploying cloud with OVN"
export VARS="$VARS --extra-vars deploy_ha_ovn=true"
fi
#used to ensure concurrent jobs on the same executor work
socketdir=$(mktemp -d /tmp/sockXXXXXX)