示例#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
示例#2
0
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
示例#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
示例#4
0
 def test_ovs_vxlan_support_runs(self):
     checks.ovs_vxlan_supported()
示例#5
0
 def test_ovs_vxlan_support_runs(self):
     checks.ovs_vxlan_supported()
示例#6
0
 def test_ovs_vxlan_support_runs(self):
     checks.ovs_vxlan_supported(self.root_helper)
示例#7
0
 def test_ovs_vxlan_support_runs(self):
     checks.ovs_vxlan_supported(self.root_helper)