Example #1
0
def check_ovs_vxlan():
    result = checks.ovs_vxlan_supported()
    if not result:
        LOG.error('Check for Open vSwitch VXLAN support failed. '
                  'Please ensure that the version of openvswitch '
                  'being used has VXLAN support.')
    return result
def check_ovs_vxlan():
    result = checks.ovs_vxlan_supported()
    if not result:
        LOG.error(_LE('Check for Open vSwitch VXLAN support failed. '
                      'Please ensure that the version of openvswitch '
                      'being used has VXLAN support.'))
    return result
Example #3
0
def check_ovs_vxlan():
    result = checks.ovs_vxlan_supported(root_helper=cfg.CONF.AGENT.root_helper)
    if not result:
        LOG.error(
            _LE('Check for Open vSwitch VXLAN support failed. '
                'Please ensure that the version of openvswitch '
                'being used has VXLAN support.'))
    return result
Example #4
0
 def test_ovs_vxlan_support_runs(self):
     checks.ovs_vxlan_supported()
Example #5
0
 def test_ovs_vxlan_support_runs(self):
     checks.ovs_vxlan_supported()
Example #6
0
 def test_ovs_vxlan_support_runs(self):
     checks.ovs_vxlan_supported(self.root_helper)
Example #7
0
 def test_ovs_vxlan_support_runs(self):
     checks.ovs_vxlan_supported(self.root_helper)