From 8f72afed8531337a02c43835693a0caa2c977753 Mon Sep 17 00:00:00 2001 From: Michael Chapman Date: Wed, 1 Jun 2016 15:10:05 +1000 Subject: Add dataplane deploy setting Adds the dataplane deploy option, which can have values of ovs, ovs_dpdk, or fdio. Currently does nothing JIRA: APEX-119 Change-Id: I6c14a9c9d6887a325525d634052ea8300b30ee57 Signed-off-by: Michael Chapman --- ci/deploy.sh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ci') diff --git a/ci/deploy.sh b/ci/deploy.sh index 30a6af29..d31993fe 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -789,6 +789,12 @@ function undercloud_prep_overcloud_deploy { exit 1 fi + # Handle different dataplanes + if [ "${deploy_options_array['dataplane']}" != 'ovs']; then + echo "${red}ovs is the only currently available dataplane. ${deploy_options_array['dataplane']} not implemented${reset}" + exit 1 + fi + # Make sure the correct overcloud image is available if [ ! -f $RESOURCES/overcloud-full-${SDN_IMAGE}.qcow2 ]; then echo "${red} $RESOURCES/overcloud-full-${SDN_IMAGE}.qcow2 is required to execute your deployment." -- cgit 1.2.3-korg