[ovirt-users] Re: Unable to backend oVirt with Cinder

2018-06-21 Thread Shani Leviim
Hi, Can you please supply some more details about the problem? Thanks *Regards,* *Shani Leviim* On Thu, Jun 21, 2018 at 1:47 AM, wrote: > Hi. Did you solve this problem? > ___ > Users mailing list -- users@ovirt.org > To unsubscribe send an email

[ovirt-users] Re: Unable to backend oVirt with Cinder

2018-06-21 Thread rumanzo
Sorry, I found last message some later.Problem that I can't auth with keystone, and without keystone I can't create image, because field Volume Type is empty, and in /var/log/ovirt-engine/engine.logmessages2018-06-20 19:24:29,667+03 ERROR

[ovirt-users] Re: Ignore extra parameters in oVirt API

2018-06-21 Thread Ondra Machacek
Well, I don't know what are you using to generate the JSON, but you just need to check if engine is v4.1 and then send the JSON without the field and if version is v4.2 and higher you can use that field. If you share you script maybe I can advice, or if you are using any SDK. It would be even

[ovirt-users] Re: Ignore extra parameters in oVirt API

2018-06-21 Thread Hari Prasanth Loganathan
Thanks, Ondra for confirming. You need to handle this situation client side. So you are saying there is a work-around in client side, I didn't get this point, Could you explain, please. On Thu, Jun 21, 2018 at 4:20 PM, Ondra Machacek wrote: > We do not support this. > > For xml we use event

[ovirt-users] Re: Creating snapshot of a subset of disks

2018-06-21 Thread Benny Zlotnik
You could something like this (IIUC): dead_snap1_params = types.Snapshot( description=SNAPSHOT_DESC_1, persist_memorystate=False, disk_attachments=[ types.DiskAttachment( disk=types.Disk( id=disk.id )

[ovirt-users] Re: remote-viewer Spice Problem on MacOS

2018-06-21 Thread Michal Skrivanek
> On 21 Jun 2018, at 14:20, Michal Skrivanek > wrote: > > > >> On 19 Jun 2018, at 14:17, Hendrik Peyerl wrote: >> >> I have found a temporary? solution that seems to be working for us. >> >> As I predicted it is indeed the lockscreen that leads to the problem. Per >> default the VMs

[ovirt-users] Re: Failed to execute stage 'Misc configuration': Command '/sbin/service' failed to execute

2018-06-21 Thread Yedidyah Bar David
On Thu, Jun 21, 2018 at 12:47 PM, wrote: > Hi man,I wanna to install ovirt 3.5 via allinone deploy,but I encoutered some > issues. Really 3.5? Why no something newer? People reported success, although I didn't try this myself, with 4.2, in all-in-one, manually. Meaning - install and setup the

[ovirt-users] Creating snapshot of a subset of disks

2018-06-21 Thread Gianluca Cecchi
Hello, I'm trying to see how to create a snapshot of a VM, but only of a subset of its disks (actually it will be only the bootable one) Taking the examples at https://github.com/oVirt/ovirt-engine-sdk/tree/master/sdk/examples I can accomodate something like this # Get the reference to the

[ovirt-users] Re: Creating snapshot of a subset of disks

2018-06-21 Thread Benny Zlotnik
I can refer again to what we do in the ovirt-system-tests: testlib.assert_true_within_long( lambda: vm1_snapshots_service.list()[-1].snapshot_status == types.SnapshotStatus.OK ) Which tests whether the status change to desirable one within a given period of time (I think

[ovirt-users] Re: Ignore extra parameters in oVirt API

2018-06-21 Thread Ondra Machacek
We do not support this. For xml we use event handler, which takes unknown fields as error: https://github.com/oVirt/ovirt-engine/blob/68753f46f09419ddcdbb632453501273697d1a20/backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/restapi/xml/JAXBProvider.java#L182 For json

[ovirt-users] Re: oVirt 4.2 and I/O threads configuration

2018-06-21 Thread Gianluca Cecchi
On Thu, Jun 21, 2018 at 2:43 PM, Sharon Gratch wrote: > >>> >>> >> Thanks for confirmation. >> So I think the manual has to be updated. >> Let me know if you want me to open a documentation bug or not. >> > > yes, ​please open a bug ​on that. > There is already a bug open for the feature,

[ovirt-users] Re: Ignore extra parameters in oVirt API

2018-06-21 Thread Hari Prasanth Loganathan
the problem is, I can't write different client codes for the different version. Consider my case, I developed my script considering the oVirt version 4.2, If my client is using 4.1 then he needs the same script to be supported. What If the client is using further older version say 4.0, So do you

[ovirt-users] Failed to execute stage 'Misc configuration': Command '/sbin/service' failed to execute

2018-06-21 Thread patrickstar12358
Hi man,I wanna to install ovirt 3.5 via allinone deploy,but I encoutered some issues. stage: #yum update \\ I set some enviroment parameters like as: hostname,static ip ...etc #yum install http://resources.ovirt.org/pub/yum-repo/ovirt-release35.rpm \\Skipped "yum install -y ovirt-engine" #yum

[ovirt-users] Re: Creating snapshot of a subset of disks

2018-06-21 Thread Gianluca Cecchi
On Thu, Jun 21, 2018 at 2:00 PM, Benny Zlotnik wrote: > You could something like this (IIUC): > dead_snap1_params = types.Snapshot( > description=SNAPSHOT_DESC_1, > persist_memorystate=False, > disk_attachments=[ > types.DiskAttachment( >

[ovirt-users] Re: Unable to backend oVirt with Cinder

2018-06-21 Thread Daniel Erez
On Thu, Jun 21, 2018 at 12:20 PM wrote: > Sorry, I found last message some later. > Problem that I can't auth with keystone, and without keystone I can't > create image, because field Volume Type is empty, and in > /var/log/ovirt-engine/engine.log > messages > 2018-06-20 19:24:29,667+03 ERROR >

[ovirt-users] Re: Ignore extra parameters in oVirt API

2018-06-21 Thread Hari Prasanth Loganathan
Could somebody explain this please? On Thu, Jun 21, 2018 at 7:41 AM, Hari Prasanth Loganathan < hariprasant...@msystechnologies.com> wrote: > *Hi Ondra / Ori,* > > https://github.com/oVirt/ovirt-engine/search?q=FAIL_ON_ > UNKNOWN_PROPERTIES%2C+false%29%3B_q=FAIL_ON_ >

[ovirt-users] Re: Ignore extra parameters in oVirt API

2018-06-21 Thread Greg Sheremeta
On Thu, Jun 21, 2018 at 7:05 AM Hari Prasanth Loganathan < hariprasant...@msystechnologies.com> wrote: > the problem is, I can't write different client codes for the different > version. > Well, you *can* with an if {} else {} It just sounds like you are choosing not too :) > Consider my case,

[ovirt-users] Re: Ignore extra parameters in oVirt API

2018-06-21 Thread Ondra Machacek
Well, if they may use 4.0, you should write code which support 4.0 and don't use any 4.2 features, as it won't work anyway on 4.2. If you want to support features from 4.2, and use it against 4.0 where it will be igonored and use it also agains 4.2 where it will be supported, it's quite simple

[ovirt-users] Re: remote-viewer Spice Problem on MacOS

2018-06-21 Thread Michal Skrivanek
> On 19 Jun 2018, at 14:17, Hendrik Peyerl wrote: > > I have found a temporary? solution that seems to be working for us. > > As I predicted it is indeed the lockscreen that leads to the problem. Per > default the VMs will lock the screen after 10 minutes at which time I was not > able to

[ovirt-users] Re: oVirt 4.2 and I/O threads configuration

2018-06-21 Thread Sharon Gratch
Hi, Please see my comments below. On Tue, Jun 19, 2018 at 11:51 AM, Gianluca Cecchi wrote: > > On Tue, Jun 19, 2018 at 10:45 AM, Sharon Gratch > wrote: > >> Hi Gianluca, >> >> You are right, in oVirt 4.2 we removed the 'Num Of IO Threads' text field >> from the UI because it was decided that

[ovirt-users] Re: Creating snapshot of a subset of disks

2018-06-21 Thread Gianluca Cecchi
On Thu, Jun 21, 2018 at 3:06 PM, Gianluca Cecchi wrote: > > bootdisk = None > for disk_attachment in disk_attachments: > disk = connection.follow_link(disk_attachment.disk) > if disk_attachment.bootable == True: > bootdisk = connection.follow_link(disk_attachment.disk) >

[ovirt-users] Broker fails to start after upgrade 4.1 to 4.2 metadata_image_UUID can't be ''

2018-06-21 Thread reznikov_aa
Hi list! After upgrade my cluster from 4.1.9 to 4.2.2, agent and broker can't start on host... cat /var/log/ovirt-hosted-engine-ha/agent.log MainThread::ERROR::2018-06-21 03:25:34,603::hosted_engine::538::ovirt_hosted_engine_ha.agent.hosted_engine.HostedEngine::(_initialize_broker) Failed

[ovirt-users] metrics

2018-06-21 Thread suporte
Hi, I'm trying to configure oVirt metrics but when i run # ANSIBLE_LOG_PATH=/tmp/ansible.log ansible-playbook -vvv -e @/root/vars.yaml -i /root/ansible-inventory-origin-39-aio playbooks/deploy_cluster.yml i always get this error: Failure summary: 1. Hosts: localhost Play: Verify

[ovirt-users] Re: Missing step(s) after custom x509 certificates

2018-06-21 Thread John Florian
On 2018-06-20 02:27, Yedidyah Bar David wrote: On Tue, Jun 19, 2018 at 5:35 PM, John Florian wrote: I already had the intermediate and root CA certs imported into Android, but it looks like moVirt ignores those as a general trust source. I'd say this might be a useful RFE to open on movirt,

[ovirt-users] Re: remote-viewer Spice Problem on MacOS

2018-06-21 Thread John Florian
On 2018-06-21 08:20, Michal Skrivanek wrote: Any connectivity issue should no really be dependent on what you do in guest Agreed Still, please bring that up to SPICE team -https://www.spice-space.org/support.html I was just trying to do so myself.  If I do a Simple Search at

[ovirt-users] Re: PollVDSCommand Error: java.lang.NoClassDefFoundError: org/apache/commons/lang/StringUtils

2018-06-21 Thread Greg Sheremeta
Is your engine functioning at all? I'm not sure if you're saying your entire engine doesn't work, or just host deploy doesn't work. What version of ovirt engine is this? How did you install -- fresh installation, upgrade? From source or rpm? Best wishes, Greg On Wed, Jun 20, 2018 at 12:35 AM

[ovirt-users] oVirt export VM as OVA

2018-06-21 Thread du_hon...@yeah.net
Hi I want to export my vm by "Eports as OVA", but i don't know what to write in Directory? Regards Hongyu Du ___ Users mailing list -- users@ovirt.org To unsubscribe send an email to users-le...@ovirt.org Privacy Statement:

[ovirt-users] Re: Ignore extra parameters in oVirt API

2018-06-21 Thread Hari Prasanth Loganathan
okay, Thanks all for your help. On Thu, Jun 21, 2018 at 5:14 PM, Ondra Machacek wrote: > Well, if they may use 4.0, you should write code which support 4.0 and > don't use any 4.2 features, as it won't work anyway on 4.2. > > If you want to support features from 4.2, and use it against 4.0