From c5d6b92edb3738ffb4c8095e5ec440a499e10a91 Mon Sep 17 00:00:00 2001 From: Jaganathan Palanisamy Date: Tue, 21 Dec 2021 15:50:20 +0530 Subject: [PATCH] Missing OvS DPDK nodes in ovn-controllers This change is to include missing OvS DPDK nodes also as part of ovn-controllers group in hosts_for_migration file. Change-Id: Ic0727ffdbd1f60574b6d5397177a58172cbd60f0 (cherry picked from commit 10bb1baf66abdeb44241040e91f2405757fc7e84) --- tools/ovn_migration/tripleo_environment/ovn_migration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ovn_migration/tripleo_environment/ovn_migration.sh b/tools/ovn_migration/tripleo_environment/ovn_migration.sh index 5563cce1ef7..c57fa4027dc 100644 --- a/tools/ovn_migration/tripleo_environment/ovn_migration.sh +++ b/tools/ovn_migration/tripleo_environment/ovn_migration.sh @@ -169,7 +169,7 @@ generate_ansible_inventory_file() { echo "[ovn-controllers]" >> hosts_for_migration # We want to run ovn-controller where OVS agent was running before the migration - OVN_CONTROLLERS=$(get_group_hosts "$inventory_file" neutron_ovs_agent) + OVN_CONTROLLERS=$(get_group_hosts "$inventory_file" neutron_ovs_agent; get_group_hosts "$inventory_file" neutron_ovs_dpdk_agent) for node_name in $OVN_CONTROLLERS; do node_ip=$(get_host_ip "$inventory_file" $node_name) echo $node_name ansible_host=$node_ip ansible_ssh_user=$UNDERCLOUD_NODE_USER ansible_become=true ovn_controller=true >> hosts_for_migration