search for: storagepoollookupbynam

Displaying 14 results from an estimated 14 matches for "storagepoollookupbynam".

2012 May 08
2
creation of storage volume fails
...ragepoolobject,xmldesc,0) AttributeError: class virStoragePool has no attribute 'CreateXML' my code is: xmldesc="xml description of storage volume which i got from sudo virsh vol-dumpxml" #get a storage pool object to use in creating a volume storagepoolobject=libvirt.virConnect.storagePoolLookupByName(conn,'poolname') #now try to create the volume using the above storage pool object libvirt.virStoragePool.CreateXML(storagepoolobject,xmldesc,0) from python: -bash-4.1$ python >>> import libvirt >>> dir(libvirt.virStoragePool) ['UUID', 'UUIDString', &...
2011 Jul 12
0
virt-p2v migration seemingly hangs, no data transmitted, no sign of life
...e convert button becomes greyed out, and then nothing happens. The transfer progress bar does not change. Watching the nfs export shows no new folders/files created, and no change in available space. A look at /var/log/messages shows that: Jul 12 15:10:42 fedora14 libvirtd: 15:10:42.308: error : storagePoolLookupByName:299 : Storage pool not found: no pool with matching name '192.168.22.7:/export/v2v' Jul 12 15:10:42 fedora14 virt-v2v[2398]: FATAL: Output pool 192.168.22.7:/export/v2v is not a valid storage pool. Jul 12 15:10:42 fedora14 virt-v2v[2398]: FATAL: virt-v2v: Output pool 192.168.22.7:/export/v...
2009 Oct 15
1
Patch depends on the previous storage patch...
This patch is dependant on the previously submitted storage admin patch.
2009 Aug 31
1
Fixed patch...
This version of the patch includes feedback from jboggs at redhat.com, including fixes to the BuildRequires and Requires in the spec file.
2009 Sep 11
1
Text-based node administration tool
This patch obsoletes any previous ones. This is an upstream candidate, so I'm looking for feedback so we can push this and start using it.
2009 Sep 14
1
Bugfixes...
This version fixes a few bugs found by jboggs. It also includes some logging facilities that need to be fleshed out more.
2009 Sep 16
1
Final push candidate for nodeadmin tool...
This patch is ready for pushing upstream.
2009 Sep 16
1
Replacement that includes utils.py
The previous patch was missing this file. Resending.
2009 Oct 12
1
First draft: node storage admin
This patch provides the ability to create a "dir" type storage pool, and to add and remove volumes for existing pools.
2009 Oct 27
1
Storage admin patches
This set of patches supercedes the previous set, and has been rebased with changes from upstream.
2009 Nov 09
1
Rebased again...
This patch again rebases on upstream and should apply on next as of right now.
2009 Jul 31
2
RFC: This patch is not being submitted for ACK...
...just looking for some feedback on the direction I'm going. The code won't get all the way to the define stage since I'm in the middle of retrofitting it to use virtinst instead of a home spun node definition.
2009 Oct 14
0
[PATCH node] Provides a new storage administration system to the managed node.
...'''Undefines the specified storage pool.''' + pool = self.get_storage_pool(name) + pool.undefine() + + def get_storage_pool(self, name): + '''Returns the storage pool with the specified name.''' + return self.__conn.storagePoolLookupByName(name) + + def define_storage_volume(self, config, meter): + '''Defines a new storage volume.''' + self.create_storage_pool(config.get_pool().name()) + volume = config.create_volume() + volume.install(meter = meter) + + def remove_storage_vo...
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.