Re: [ovirt-users] Creating templates in a blocking fashion from Python SDK

2016-04-10 Thread Barak Korren
Is there a way to block on the template creation task and not return to the code until it finishes? >>> >>> >>> I don't think so, but you can loop waiting, see e.g.: >>> >>> http://www.ovirt.org/develop/api/pythonapi/#create-a-template-from-vm >>> [2] >> >> >> I wish we could have an

[ovirt-users] HA agent fails to start

2016-04-10 Thread Richard Neuboeck
Hi oVirt Group, in my attempts to get all aspects of oVirt 3.6 up and running I stumbled upon something I'm not sure how to fix: Initially I installed a hosted engine setup. After that I added another HA host (with hosted-engine --deploy). The host was registered in the Engine correctly and HA ag

Re: [ovirt-users] Fwd: Re: ***UNCHECKED*** Re: kvm vcpu0 unhandled rdmsr

2016-04-10 Thread Yaniv Kaul
On Sun, Apr 10, 2016 at 11:22 PM, Yaniv Kaul wrote: > On Sun, Apr 10, 2016 at 6:05 PM, gregor wrote: > >> Hi, >> >> has anybody a last tip. Now the third installed Windows Server 2012 R2 >> VM is damaged and I will move tomorrow my host back to VMWare and leave >> oVirt. >> > > It's a QEMU/KVM i

[ovirt-users] Cinder scheduled snapshots

2016-04-10 Thread Bond, Darryl
Is there any plan to provide a means to schedule snapshots for cinder? Darryl The contents of this electronic message and any attachments are intended only for the addressee and may contain legally privileged, personal, sensitive or confidential information.

Re: [ovirt-users] Fwd: Re: ***UNCHECKED*** Re: kvm vcpu0 unhandled rdmsr

2016-04-10 Thread Yaniv Kaul
On Sun, Apr 10, 2016 at 6:05 PM, gregor wrote: > Hi, > > has anybody a last tip. Now the third installed Windows Server 2012 R2 > VM is damaged and I will move tomorrow my host back to VMWare and leave > oVirt. > It's a QEMU/KVM issue - let me see if I can get someone from KVM development team t

[ovirt-users] Fwd: Re: ***UNCHECKED*** Re: kvm vcpu0 unhandled rdmsr

2016-04-10 Thread gregor
Hi, has anybody a last tip. Now the third installed Windows Server 2012 R2 VM is damaged and I will move tomorrow my host back to VMWare and leave oVirt. regards gregor Forwarded Message Subject: Re: [ovirt-users] ***UNCHECKED*** Re: kvm vcpu0 unhandled rdmsr Date: Mon, 4 Apr

Re: [ovirt-users] Creating templates in a blocking fashion from Python SDK

2016-04-10 Thread nicolas
El 2016-04-10 11:16, Yaniv Kaul escribió: On Sun, Apr 10, 2016 at 11:02 AM, Yedidyah Bar David wrote: On Sun, Apr 10, 2016 at 10:43 AM, Barak Korren wrote: Hi there, I use the following Python SDK snippet to create a template from an existing VM:      templ = ovirt.templates.add(        

Re: [ovirt-users] looking for some ISV backup software which integrates the backup API

2016-04-10 Thread Liron Aravot
On Wed, Apr 6, 2016 at 1:55 PM, Pavel Gashev wrote: > Nathanaël, > > > I can share my backup experience. The current backup/restore api > integration is not optimal for incremental backups. It's ok to read the > whole disk if you backup it first time, but you have to read the whole disk > each ti

Re: [ovirt-users] Creating templates in a blocking fashion from Python SDK

2016-04-10 Thread Nir Soffer
On Sun, Apr 10, 2016 at 1:16 PM, Yaniv Kaul wrote: > > > On Sun, Apr 10, 2016 at 11:02 AM, Yedidyah Bar David > wrote: >> >> On Sun, Apr 10, 2016 at 10:43 AM, Barak Korren wrote: >> > Hi there, I use the following Python SDK snippet to create a template >> > from an existing VM: >> > >> > te

Re: [ovirt-users] Creating templates in a blocking fashion from Python SDK

2016-04-10 Thread Yaniv Kaul
On Sun, Apr 10, 2016 at 11:02 AM, Yedidyah Bar David wrote: > On Sun, Apr 10, 2016 at 10:43 AM, Barak Korren wrote: > > Hi there, I use the following Python SDK snippet to create a template > > from an existing VM: > > > > templ = ovirt.templates.add( > > ovirtsdk.xml.Template(vm=vm,

Re: [ovirt-users] Error: Storage format V3 is not supported

2016-04-10 Thread Allon Mureinik
Patch was merged to master, should be available to you the next release. On Thu, Apr 7, 2016 at 7:33 PM, Allon Mureinik wrote: > I've reproduced the issue on my env, and cooked up a patch that seems to > solve it for me, in case anyone wants to cherry-pick and help verify it: > https://gerrit.ov

Re: [ovirt-users] Creating templates in a blocking fashion from Python SDK

2016-04-10 Thread Yedidyah Bar David
On Sun, Apr 10, 2016 at 10:43 AM, Barak Korren wrote: > Hi there, I use the following Python SDK snippet to create a template > from an existing VM: > > templ = ovirt.templates.add( > ovirtsdk.xml.Template(vm=vm, name=vm.name) > ) > > This seems to launch a template creation task i

[ovirt-users] Creating templates in a blocking fashion from Python SDK

2016-04-10 Thread Barak Korren
Hi there, I use the following Python SDK snippet to create a template from an existing VM: templ = ovirt.templates.add( ovirtsdk.xml.Template(vm=vm, name=vm.name) ) This seems to launch a template creation task in a non-blocking manner, which makes the next command I run, which tr