search for: storagepool

Displaying 20 results from an estimated 38 matches for "storagepool".

2010 Jan 06
0
ZFS filesystem size mismatch
...0 45 Jan 5 11:02 stations iscsi-roskva# du -sh /ndc/* 24K TT_DB 6.5G cssdata 4.4G dbsave 535M infomap 71G operations 46G programs 79G projects 6.7G request 70G stations iscsi-roskva# df -h /ndc Filesystem size used avail capacity Mounted on storagepool/ndc 1.5T 1007G 529G 66% /ndc iscsi-roskva# zfs get all storagepool/ndc NAME PROPERTY VALUE SOURCE storagepool/ndc type filesystem - storagepool/ndc creation Thu Jul 30 15:14 2009 - storagepool/ndc used...
2009 Jul 28
0
[PATCH 3/5] Storage views patched for glusterfs drop down as one the Storage Pools
.../app/views/storage/_form.rhtml index ea2b0c4..1e7f22f 100644 --- a/src/app/views/storage/_form.rhtml +++ b/src/app/views/storage/_form.rhtml @@ -12,6 +12,8 @@ <%= text_field_with_label "Export Path:", 'storage_pool', 'export_path' if @storage_pool[:type] == "NfsStoragePool" %> +<%= text_field_with_label "Export Path:", 'storage_pool', 'export_path' if @storage_pool[:type] == "GlusterfsStoragePool" %> + <!--[eoform:storage_pool]--> diff --git a/src/app/views/storage/_list.rhtml b/src/app/views/storage/_...
2009 Jul 09
0
[PATCH 3/5 ovirt-server] Storage views patched for glusterfs drop down as one the Storage Pools
.../app/views/storage/_form.rhtml index ea2b0c4..1e7f22f 100644 --- a/src/app/views/storage/_form.rhtml +++ b/src/app/views/storage/_form.rhtml @@ -12,6 +12,8 @@ <%= text_field_with_label "Export Path:", 'storage_pool', 'export_path' if @storage_pool[:type] == "NfsStoragePool" %> +<%= text_field_with_label "Export Path:", 'storage_pool', 'export_path' if @storage_pool[:type] == "GlusterfsStoragePool" %> + <!--[eoform:storage_pool]--> diff --git a/src/app/views/storage/_list.rhtml b/src/app/views/storage/_...
2009 May 20
1
[PATCH server] split StorageVolumeService.svc_new into two methods.
...<tt>@storage_pool</tt> if storage type is LVM # === Required permissions # [<tt>Privilege::MODIFY</tt>] for the storage volume's HardwarePool - def svc_new(storage_pool_id, source_volume_id) - if storage_pool_id - @storage_pool = StoragePool.find(storage_pool_id) - unless @storage_pool.user_subdividable - raise ActionError.new("Unsupported action for " + - "#{@storage_pool.get_type_label} volumes.") - end - else - @source_volume = StorageVolume.find(source_volume...
2019 Apr 05
1
Schema
Hey, Is there a Schema of creating a VM (Domain)? Something like: Create Storagepool Init Storagepool Maxi
2009 Jul 13
1
[PATCH] Use volume key instead of path to identify volume.
...debug "Pool mounted: #{pool.name}; state: #{pool.state}" volume = @session.object(:class => 'volume', - 'name' => volume_name, + 'key' => volume_name, 'storagePool' => pool.object_id) raise "Unable to find volume #{volume_name} attached to pool #{pool.name}." unless volume @logger.debug "Verified volume of pool #{volume.path}" @@ -591,7 +591,7 @@ class TaskOmatic storage_volume.path = volume.path storage_volu...
2009 May 29
0
[PATCH server] Add more debugging to storage tasks
...ool = pool + @logger.debug("Found existing storage pool #{pool.name} on host: #{node.hostname}") break end end if @remote_pool == nil + @logger.debug("Defining new storage pool: #{@xml.to_s} on host: #{node.hostname}") result = node.storagePoolDefineXML(@xml.to_s, :timeout => 60 * 2) raise "Error creating pool: #{result.text}" unless result.status == 0 @remote_pool = session.object(:object_id => result.pool) @@ -137,6 +140,7 @@ class LibvirtPool # we need this because we don't want to "build&q...
2009 Nov 09
1
Rebased again...
This patch again rebases on upstream and should apply on next as of right now.
2011 Jun 05
1
request to add an application the app listing on libvirt site
Hi, I would like to add two apps which uses libvirt the site. Ruby Objects for libvirt based on top of the native ruby binding, Virt ruby gem exposes real objects such as Host, Guest, StoragePool, Interface etc. more info at https://github.com/ohadlevy/virt Foreman - Web UI for provisioning and managing servers Among the many things foreman can do, It provides to relevant parts to libvirt: UI to list / start / stop / destroy vms UI to create a new vm as part of the provisioning process...
2009 Sep 24
0
[PATCH server] Make volume finding more robust.
...x 96b2ec4..ece60dc 100755 --- a/src/task-omatic/taskomatic.rb +++ b/src/task-omatic/taskomatic.rb @@ -223,7 +223,13 @@ class TaskOmatic volume = @session.object(:class => 'volume', 'key' => volume_key, 'storagePool' => pool.object_id) - raise "Unable to find volume #{volume_key} attached to pool #{pool.name}." unless volume + if volume == nil + @logger.info "Unable to find volume by key #{volume_key} attached to pool #{pool.name}, trying by filename..." + vol...
2014 Jul 14
1
LVM Volume Creation
Hi All, I'm having issue with creating LVM volume via libvirt. XML of LVM StoragePool is:     VG01             /dev/VG01       (existing vg) XML of create volume in lvm pool is:     ub_test01.img     0     1                 When I create the volume with above XML defn, lvs command to list logical volume shows a value in the origin column indicating it was created as snap...
2009 Oct 27
1
Storage admin patches
This set of patches supercedes the previous set, and has been rebased with changes from upstream.
2009 May 19
1
re-sending outstanding controller refactoring patches after rebase
I've rebased the patch series to the current next branch and am sending them again.
2009 Oct 14
0
[PATCH node] Provides a new storage administration system to the managed node.
...ense is +# also available at http://www.gnu.org/copyleft/gpl.html. + +from snack import * +import traceback +import utils + +from configscreen import * +from poolconfig import PoolConfig +from virtinst import Storage + +POOL_NAME_PAGE = 1 +POOL_DETAILS_PAGE = 2 +CONFIRM_PAGE = 3 + +class AddStoragePoolConfigScreen(ConfigScreen): + def __init__(self): + ConfigScreen.__init__(self, "Add A Storage Pool") + self.__config = PoolConfig(self.get_libvirt()) + + def get_elements_for_page(self, screen, page): + if page is POOL_NAME_PAGE: return self.get_pool_name_p...
2009 Oct 21
1
Storage administration and refactoring of domain admin
This pair of patches provide a new storage admin interface. Then, on top of that, it refactors the domain administration pieces to now properly use storage pools and volumes when defining a new VM.
2014 Jul 15
1
Re: LVM Volume Creation
Hi All, I'm having issue with creating LVM Volume via libvirt. We are running libvirtd 1.2 with KVM. We are creating Volume Group (VG01) outside of libvirt and defining a storage pool for it. Here is the StoragePool XML for the Volume Group created outside libvirt. <pool type="logical"> <name>VG01</name> <target> <path>/dev/VG01</path> </target> </pool> We are creating Logical Volume (ub_test01.img) through libvirt in the Volume Gro...
2009 Nov 04
4
[PATCH server] Update daemons to use new QMF.
...e volume # This volume is *not* persisted. - image_volume = StorageVolume.factory("NFS", :filename => filename) + image_volume = StorageVolume.factory("NFS", :filename => filename, :key => filename) image_volume.storage_pool image_pool = StoragePool.factory(StoragePool::NFS) @@ -116,13 +116,14 @@ class LibvirtPool @xml.root.elements["target"].add_element("path") end - def connect(session, node) - pools = session.objects(:class => 'pool', 'node' => node.object_id) + def connect(qmfc, node...
2009 Jul 29
0
[PATCH server] Remove ununsed utils.rb file.
...xml.to_s) - # we need this because we don't necessarily want to "build" LVM pools, - # which might destroy existing data - if @build_on_start - @remote_pool.build - end - @remote_pool_defined = true - end - - if @remote_pool.info.state == Libvirt::StoragePool::INACTIVE - # only try to start the pool if it is currently inactive; in all other - # states, assume it is already running - @remote_pool.create - @remote_pool_started = true - end - end - - def list_volumes - return @remote_pool.list_volumes - end - - def lookup_vol_...
2018 Aug 25
1
Download image to libvirt storage pool
Is there any function in libvirt (golang SDK) to download image to libvirt storage pool from path?
2012 Mar 02
0
[virt-tools-list] virt-p2v failure
...]: Read 224 bytes > > Mar 1 10:46:24 c2cl00 virt-v2v[6721]: Sent: OK > > Mar 1 10:46:24 c2cl00 virt-v2v[6721]: Received: PATH 320016572416 > > /dev/cciss/c0d0 > > Mar 1 10:46:24 c2cl00 virt-v2v[6721]: Pool: $VAR1 = bless( do{\(my $o = > > 23313248)}, 'Sys::Virt::StoragePool' ); > > Mar 1 10:46:25 c2cl00 virt-v2v[6721]: Sent: OK > > Mar 1 10:46:25 c2cl00 virt-v2v[6721]: Received: CONTAINER RAW > > Mar 1 10:46:25 c2cl00 virt-v2v[6721]: Sent: OK > > Mar 1 10:46:25 c2cl00 virt-v2v[6721]: Received: DATA 320016572416 > > Mar 1 10:46:25...