Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.

Bug 1699689

Summary: Openvswitch fails when running rmmod bridge
Product: Red Hat OpenStack Reporter: David Sedgmen <dsedgmen>
Component: openvswitchAssignee: Timothy Redaelli <tredaelli>
Status: CLOSED INSUFFICIENT_DATA QA Contact: Eran Kuris <ekuris>
Severity: high Docs Contact:
Priority: high    
Version: 13.0 (Queens)CC: apevec, chrisbro, chrisw, fhallal, jlibosva, pmannidi, rhos-maint, tredaelli
Target Milestone: ---Keywords: ZStream
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2019-09-17 14:16:54 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On: 1700344    
Bug Blocks:    

Description David Sedgmen 2019-04-15 00:28:43 UTC
Description of problem:
Openvswitch fails to start because of dependencies of bridge module during overcloud deploy of nodes with infiniband interfaces.

Version-Release number of selected component (if applicable):

openvswitch-2.9.0-97.el7fdp.x86_64
Red Hat Openstack Platform 13

How reproducible:

Always

Steps to Reproduce:

run overcloud deploy with overcloud nodes with infiniband interfaces

Actual results:

Overcloud deploy fails because it is not able to communicate with overcloud nodes

Expected results:

Overcloud deploy should be able to communicate with overcloud nodes

Additional info:

Change rmmod to modprobe -r  in /usr/share/openvswitch/scripts/ovs-ctl
after this change the deployment was successful 

Unmodified 
#################
    fi
    action "removing bridge module" rmmod bridge || return 1

    # Try loading openvswitch again.
    insert_mods
################

modified
################

    fi
    action "removing bridge module" modprobe -r bridge || return 1

    # Try loading openvswitch again.
    insert_mods
################