310736b576
I had trouble finding the hosted docs for os-vif, which means others are likely to too. Use the oslo-style README and refer people to other resources. Change-Id: I5d7791c86051c5fef20e3deb8bddc29991dd61e3
2.1 KiB
2.1 KiB
Usage
The interface to the os_vif library is very simple. To begin using the library, first call the os_vif.initialize() function. This will load all installed plugins and register the object model:
import os_vif
os_vif.initialize()
Once the os_vif library is initialized, there are only two other library functions: os_vif.plug() and os_vif.unplug(). Both methods accept a single argument of type `os_vif.objects.VIF`:
import uuid
from nova import objects as nova_objects
from os_vif import exception as vif_exc
from os_vif import objects as vif_objects
from os_vif import vnic_types
= 'd7a730ca-3c28-49c3-8f26-4662b909fe8a'
instance_uuid = nova_objects.Instance.get_by_uuid(instance_uuid)
instance = vif_objects.InstanceInfo(
instance_info =instance.uuid,
uuid=instance.name,
name=instance.project_id)
project_id
= vif_objects.Subnet(cidr='192.168.1.0/24')
subnet = vif_objects.SubnetList([subnet])
subnets = vif_objects.Network(label='tenantnet',
network =subnets,
subnets=False,
multi_host=False,
should_provide_vlan=False)
should_provide_bridge
= uuid.uuid4()
vif_uuid = vif_objects.VIFVHostUser(id=vif_uuid,
vif =None,
address=network,
network='vhostuser',
plugin='/path/to/socket',
path=vif_objects.fields.VIFVHostUserMode.SERVER)
mode
# Now do the actual plug operations to connect the VIF to
# the backing network interface.
try:
os_vif.plug(vif, instance_info)except vif_exc.PlugException as err:
# Handle the failure...
# If you are removing a virtual machine and its interfaces,
# you would use the unplug() operation:
try:
os_vif.unplug(vif, instance_info)except vif_exc.UnplugException as err:
# Handle the failure...