Add fuel_libvirt ironic driver

This driver allows to perform Power/Management operation
with VM via Libvirt API.

Change-Id: Ia82f7fb45d2592d96ddcc423771bbd14df1e4e28
Partial-Bug: #1524773
This commit is contained in:
vsaienko 2015-12-10 14:47:52 +02:00 committed by Alexander Gordeev
parent 8ed8e737ce
commit 1a22e347a6
2 changed files with 22 additions and 0 deletions

View File

@ -14,6 +14,7 @@
from ironic.drivers import base
from ironic.drivers.modules import ipmitool
from ironic.drivers.modules import lib_virt
from ironic.drivers.modules import ssh
from ironic_fa_deploy.modules import fuel_agent
@ -56,3 +57,23 @@ class FuelAndSSHDriver(base.BaseDriver):
self.deploy = fuel_agent.FuelAgentDeploy()
self.management = ssh.SSHManagement()
self.vendor = fuel_agent.FuelAgentVendor()
class FuelAndLibvirtDriver(base.BaseDriver):
"""Fuel + Libvirt driver.
NOTE: This driver is meant only for testing environments.
This driver implements the `core` functionality, combining
:class:`ironic.drivers.modules.lib_virt.Libvirt` (for power on/off and reboot of
virtual machines tunneled over Libvirt API, with
:class:`ironic.drivers.modules.fuel_agent.FuelAgentDeploy` (for image
deployment). Implementations are in those respective classes; this class
is merely the glue between them.
"""
def __init__(self):
self.power = lib_virt.LibvirtPower()
self.deploy = fuel_agent.FuelAgentDeploy()
self.management = lib_virt.LibvirtManagement()
self.vendor = fuel_agent.FuelAgentVendor()

View File

@ -18,4 +18,5 @@ extra_files =
[entry_points]
ironic.drivers =
fuel_ipmitool = ironic_fa_deploy.fuel:FuelAndIPMIToolDriver
fuel_libvirt = ironic_fa_deploy.fuel:FuelAndLibvirtDriver
fuel_ssh = ironic_fa_deploy.fuel:FuelAndSSHDriver