mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
3e9076e777
This enables support for running the secret driver embedded to the calling application process using a URI: secret:///embed?root=/some/path When using the embedded mode with a root=/var/tmp/embed, the driver will use the following paths: configDir: /var/tmp/embed/etc/secrets stateDir: /var/tmp/embed/run/secrets These are identical whether the embedded driver is privileged or unprivileged. This compares with the system instance which uses configDir: /etc/libvirt/secrets stateDir: /var/lib/libvirt/secrets When an embedded instance of the secret driver is open, any other embedded drivers will automatically use the embedded secret driver. Reviewed-by: Michal Privoznik <mprivozn@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<body>
|
|
<h1>Internal drivers</h1>
|
|
|
|
<ul>
|
|
<li><a href="#hypervisor">Hypervisor drivers</a></li>
|
|
<li><a href="storage.html">Storage drivers</a></li>
|
|
<li><a href="drvnodedev.html">Node device driver</a></li>
|
|
<li><a href="drvsecret.html">Secret driver</a></li>
|
|
</ul>
|
|
|
|
<p>
|
|
The libvirt public API delegates its implementation to one or
|
|
more internal drivers, depending on the <a href="uri.html">connection URI</a>
|
|
passed when initializing the library. There is always a hypervisor driver
|
|
active, and if the libvirt daemon is available there will usually be a
|
|
network and storage driver active.
|
|
</p>
|
|
|
|
<h2><a id="hypervisor">Hypervisor drivers</a></h2>
|
|
|
|
<p>
|
|
The hypervisor drivers currently supported by libvirt are:
|
|
</p>
|
|
|
|
<ul>
|
|
<li><strong><a href="drvlxc.html">LXC</a></strong> - Linux Containers</li>
|
|
<li><strong><a href="drvopenvz.html">OpenVZ</a></strong></li>
|
|
<li><strong><a href="drvqemu.html">QEMU</a></strong></li>
|
|
<li><strong><a href="drvtest.html">Test</a></strong> - Used for testing</li>
|
|
<li><strong><a href="drvvbox.html">VirtualBox</a></strong></li>
|
|
<li><strong><a href="drvesx.html">VMware ESX</a></strong></li>
|
|
<li><strong><a href="drvvmware.html">VMware Workstation/Player</a></strong></li>
|
|
<li><strong><a href="drvxen.html">Xen</a></strong></li>
|
|
<li><strong><a href="drvhyperv.html">Microsoft Hyper-V</a></strong></li>
|
|
<li><strong><a href="drvvirtuozzo.html">Virtuozzo</a></strong></li>
|
|
<li><strong><a href="drvbhyve.html">Bhyve</a></strong> - The BSD Hypervisor</li>
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|