Difference between revisions of "OpenStack"

From Xen
(HOWTOs: add DevStack how-to link)
(PRESENTATIONS)
Line 52: Line 52:
 
== PRESENTATIONS ==
 
== PRESENTATIONS ==
   
  +
* [http://xenproject.org/component/allvideoshare/video/latest/configuring-openstack-to-use-the-xen-project-hypervisor.html Configuring OpenStack to Use the Xen Project Hypervisor] from FOSDEM 2015
 
* Video presentation on [http://xenproject.org/component/allvideoshare/video/latest/xpus14-xen-in-openstack-an-overview-with-suse-cloud-by-alejandro-bonilla-of-suse.html Xen Project in OpenStack: An Overview with SUSE Cloud] from Xen Project User Summit 2014
 
* Video presentation on [http://xenproject.org/component/allvideoshare/video/latest/xpus14-xen-in-openstack-an-overview-with-suse-cloud-by-alejandro-bonilla-of-suse.html Xen Project in OpenStack: An Overview with SUSE Cloud] from Xen Project User Summit 2014
 
* Video presentation on [http://www.xenproject.org/help/presentations-and-videos/video/xpus13-rackspace.html Building the Rackspace Open Cloud with Xen Project and OpenStack] from Xen Project User Summit 2013
 
* Video presentation on [http://www.xenproject.org/help/presentations-and-videos/video/xpus13-rackspace.html Building the Rackspace Open Cloud with Xen Project and OpenStack] from Xen Project User Summit 2013

Revision as of 22:09, 3 February 2015

From the OpenStack Documentation:

"The OpenStack Open Source Cloud Mission: to produce the ubiquitous Open Source Cloud Computing platform that will meet the needs of public and private clouds regardless of size, by being simple to implement and massively scalable."

USING XAPI

The OpenStack documentation reads:

"The recommended way to use Xen with OpenStack is through the XenAPI driver. To enable the XenAPI driver, add the following configuration options /etc/nova/nova.conf and restart the nova-compute service:"

compute_driver = xenapi.XenAPIDriver
xenapi_connection_url = http://your_xenapi_management_ip_address
xenapi_connection_username = root
xenapi_connection_password = your_password

"These connection details are used by the OpenStack Compute service to contact your hypervisor and are the same details you use to connect XenCenter, the XenServer management console, to your XenServer or XCP box."

The OpenStack documentation does not reflect the current reality. While XAPI is the clear mechanism for supporting XenServer at this time, most existing Xen Project integration into OpenStack is done through libvirt below.

USING LIBVIRT

The OpenStack documentation reads:

"It is possible to manage Xen using libvirt, though this is not well-tested or supported. To experiment using Xen through libvirt add the following configuration options /etc/nova/nova.conf:"

compute_driver = libvirt.LibvirtDriver
[libvirt]
virt_type = xen

Beyond what the documentation says, however, there are now high-quality instances of libvirt being used to control the Xen Project hypervisor under OpenStack. SUSE and Oracle are both using that technique in commercial OpenStack implementations.

HOWTOs

DOCUMENTATION

PRESENTATIONS