diff options
author | Michael Chapman <woppin@gmail.com> | 2016-06-01 15:10:05 +1000 |
---|---|---|
committer | Michael Chapman <woppin@gmail.com> | 2016-06-09 01:27:39 +1000 |
commit | 8f72afed8531337a02c43835693a0caa2c977753 (patch) | |
tree | d415b8dac18f5927109f4c78706ad5229ecac83b /ci | |
parent | 5c9c130fb9d6609ac1f0ebbf6945e63667c6b168 (diff) |
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 <woppin@gmail.com>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/deploy.sh | 6 |
1 files changed, 6 insertions, 0 deletions
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." |