summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFeng Pan <fpan@redhat.com>2017-05-04 14:34:07 -0400
committerFeng Pan <fpan@redhat.com>2017-05-04 14:34:07 -0400
commitbaaa7ac3cdc7984c97a4e1873ad118969ba95a01 (patch)
tree7cd750f75694df0a01dba4727a51a6c42457a0b2
parentaaa6cad0c1247d5f062bedaedc8df438fc02f746 (diff)
Enable OpenDaylight clustering mode for FDIO scenarios
JIRA: APEX-450 Change-Id: I6d570c19ff5286b1307e38eee439116839b1d612 Signed-off-by: Feng Pan <fpan@redhat.com>
-rwxr-xr-xbuild/overcloud-opendaylight.sh1
-rw-r--r--build/patches/disable_odl_clustering.patch46
-rwxr-xr-xlib/overcloud-deploy-functions.sh10
3 files changed, 1 insertions, 56 deletions
diff --git a/build/overcloud-opendaylight.sh b/build/overcloud-opendaylight.sh
index dec80fa8..1efd2093 100755
--- a/build/overcloud-opendaylight.sh
+++ b/build/overcloud-opendaylight.sh
@@ -113,7 +113,6 @@ LIBGUESTFS_BACKEND=direct virt-customize \
--run-command "cd /root/quagga; packages=\$(ls |grep -vE 'debuginfo|devel|contrib'); yum -y install \$packages" \
--run-command "sudo usermod -a -G quaggavt quagga" \
--upload ${BUILD_ROOT}/patches/neutron-patch-NSDriver.patch:/usr/lib/python2.7/site-packages/ \
- --upload ${BUILD_ROOT}/patches/disable_odl_clustering.patch:/etc/puppet/modules/tripleo/ \
--upload ${CACHE_DIR}/odl-netvirt-vpp-distribution.tar.gz:/root/ \
-a overcloud-full-opendaylight_build.qcow2
diff --git a/build/patches/disable_odl_clustering.patch b/build/patches/disable_odl_clustering.patch
deleted file mode 100644
index 151481fc..00000000
--- a/build/patches/disable_odl_clustering.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-diff --git a/manifests/profile/base/neutron/opendaylight.pp b/manifests/profile/base/neutron/opendaylight.pp
-index 3269f3e..556fe63 100644
---- a/manifests/profile/base/neutron/opendaylight.pp
-+++ b/manifests/profile/base/neutron/opendaylight.pp
-@@ -22,34 +22,19 @@
- # (Optional) The current step of the deployment
- # Defaults to hiera('step')
- #
--# [*odl_api_ips*]
--# (Optional) List of OpenStack Controller IPs for ODL API
--# Defaults to hiera('opendaylight_api_node_ips')
--#
--# [*node_name*]
--# (Optional) The short hostname of node
--# Defaults to hiera('bootstack_nodeid')
-+# [*primary_node*]
-+# (Optional) The hostname of the first node of this role type
-+# Defaults to hiera('bootstrap_nodeid', undef)
- #
- class tripleo::profile::base::neutron::opendaylight (
- $step = hiera('step'),
-- $odl_api_ips = hiera('opendaylight_api_node_ips'),
-- $node_name = hiera('bootstack_nodeid')
-+ $primary_node = hiera('bootstrap_nodeid', undef),
- ) {
-
- if $step >= 1 {
-- if empty($odl_api_ips) {
-- fail('No IPs assigned to OpenDaylight Api Service')
-- } elsif size($odl_api_ips) == 2 {
-- fail('2 node OpenDaylight deployments are unsupported. Use 1 or greater than 2')
-- } elsif size($odl_api_ips) > 2 {
-- $node_string = split($node_name, '-')
-- $ha_node_index = $node_string[-1] + 1
-- class { '::opendaylight':
-- enable_ha => true,
-- ha_node_ips => $odl_api_ips,
-- ha_node_index => $ha_node_index,
-- }
-- } else {
-+ # Configure ODL only on first node of the role where this service is
-+ # applied
-+ if $primary_node == downcase($::hostname) {
- include ::opendaylight
- }
- }
diff --git a/lib/overcloud-deploy-functions.sh b/lib/overcloud-deploy-functions.sh
index 4ef2ab10..6f1a09a8 100755
--- a/lib/overcloud-deploy-functions.sh
+++ b/lib/overcloud-deploy-functions.sh
@@ -182,15 +182,7 @@ EOI
-a overcloud-full.qcow2
EOI
- # Disable clustering for ODL FDIO HA scenarios
- if [[ "${deploy_options_array['sdn_controller']}" == 'opendaylight' ]]; then
- ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI
- LIBGUESTFS_BACKEND=direct virt-customize --run-command "cd /etc/puppet/modules/tripleo/ && patch -p1 < disable_odl_clustering.patch" \
- -a overcloud-full.qcow2
-EOI
- fi
-
- # Configure routing node for odl_l3-fdio
+ # Configure routing node for odl-fdio
if [[ "${deploy_options_array['sdn_l3']}" == 'True' ]]; then
ssh -T ${SSH_OPTIONS[@]} "stack@$UNDERCLOUD" <<EOI
sed -i "/opendaylight::vpp_routing_node:/c\ opendaylight::vpp_routing_node: ${deploy_options_array['odl_vpp_routing_node']}.${domain_name}" ${ENV_FILE}