Description of problem: When hosted-engine --deploy fails, it should remove bridge it created. Version-Release number of selected component (if applicable): ovirt-hosted-engine-setup-2.2.22.1-1.el7.noarch Actual results: virsh net-list shows default persistent network virbr0 and virbr0-nic are there Expected results: Script runs these commands (not sure if it is sufficient): virsh net-destroy default virsh net-undefine default
This is by design. We don't remove the bridges for couple of reasons: 1. If the setup has failed, you probably want to start it again and those bridges are needed. 2. Removing these network devices can cause unexpected issues. If you would like to use your machine for other purposes, it is recommended to reinstall it.
I would check that there's in fact no default network defined in virsh. # virsh net-list Name State Autostart Persistent ---------------------------------------------------------- If not, go ahead and recreate the default virsh net: # virsh net-define /usr/share/libvirt/networks/default.xml Network default defined from /usr/share/libvirt/networks/default.xml # virsh net-autostart default Network default marked as autostarted # virsh net-start default Network default started Then retry the deploy.