[ovirt-users] Re: add one node glusterfs more on ovirt-engine

2021-02-23 Thread Strahil Nikolov via Users
First createthe setup with the 3 nodes and once the deployment is ready, you 
can add the 4th node as a compute node (CPU+ RAM).
Best Regards,Strahil Nikolov
 
 
Hi,
I've one server ovirt-engine. I've trois nodes glusterfs on this ovirt-engine. 
Ex: ovirt-engine : ovirt-node1, ovirt-node2 and ovirt-node3. 
Now, I want add ovirt-node4. I tried with "Deploying oVirt and Gluster 
Hyperconverged". But it propose only trois nodes.
Could you help me, please ?

Best regard,

Anne Garcia  
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/BWMVAQTUJHZDUUMWCOSWSU6RFBQX273W/
  
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/3LDO5KFTJAZFEM4KNLULZUICSMM6O2K7/


[ovirt-users] Re: VDI and ovirt

2021-02-23 Thread Alex McWhirter

On 2021-02-23 07:39, cpo cpo wrote:

Is anyone using Ovirt for a Windows 10 VDI deployment?  If so are you
using a connection broker?  If you are what are you using?

Thanks for your time


We use ovirt quite a lot for windows 10 vdi, 4.4 / EL8 is quite a bit 
nicer spice version wise.


No broker needed, ovirt does that pretty well on it's own. We do use 
squid as a spice http proxy however. We just have pools of vms based on 
sysprep'd images. We also repurposed some HP thin clients, installed 
centos minimal + openbox, wrote a small application that accepts user 
credentials and gets a spice connection via the ovirt API.

___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/COB73ASC5UIJIC5SZHG43BIULPUD7W4L/


[ovirt-users] oVirt Ansible cluster deployment

2021-02-23 Thread Jeremey Wise
I am trying to eat own dog food.  Infrastructure as code...

So.. I have taken three physical servers.  Setup all the base packages, set
NICs, NTP, DNS, collected disk UUIDs etc..

The servers are prepped.

And one server has cockpit and ovirt-engine installed... and service
started.

#

---
# This task takes nodes prepaired and deploys cockpit, ovirt
deployment and scripts cluster initilization. ONLY RUN THIS ON FIRST
NODE OF CLUSTER
# v0.001 20210222
# file: /roles/task_hci_setup.yml
# Documentation
# Overview:
https://www.ovirt.org/documentation/gluster-hyperconverged/chap-Deploying_Hyperconverged.html

- name: Check if rpm ovirt-release44 is already installed
  yum:
list: ovirt-release44
  register: yum_list
- name: Conditionally do next thing
  debug:
msg: "ovirt-release44 Not installed"
  when:
yum_list.results | selectattr("yumstate", "match", "installed") | list
| length == 0

# Add oVirt Repo manual.
- name: Download oVirt Repo RPM
  get_url:
 url: https://resources.ovirt.org/pub/yum-repo/ovirt-release44.rpm
 dest: ~/ovirt-release44.rpm
 mode: '0440'
  when:
yum_list.results | selectattr("yumstate", "match", "installed") | list
| length == 0

- name: Install Python3 as this is needed for oVirt.
  yum:
name:
- python3
state: latest
  become: true

- name:
For some reason install of oVirt Repo fails as package so have to run as shell
  command: "rpm -ivh ~/ovirt-release44.rpm"
  when:
yum_list.results | selectattr("yumstate", "match", "installed") | list
| length == 0

- name: With new oVirt repo.. install rest of HCI dependancies
  yum:
name:
- cockpit-ovirt-dashboard
- vdsm-gluster
- ovirt-host
- ovirt-ansible-roles
- ovirt-ansible-infra
state: latest
  become: true

# Set variable for first node in cluster list to set as ignition master
- name: Only on first node thor deploy ovirt-engine-appliance
  yum:
name:
- ovirt-engine-appliance
state: latest
  become: true
  when: "'{{ hci_ignition_node }}' in inventory_hostname"

# on local ansible host install galaxy modules
# Broken: I need a means to check if installed. If so .. don't install again.
# - name: Install Galaxy Modules on local ansible host
#   local_action:
# module: shell
# _raw_params: ansible-galaxy install oVirt.ovirt-ansible-roles
#   # when: https://www.openvirtualization.pro/rhv-ovirt-ansible-getting-started/
#


What I am missing is the logic and though to get the last section of
playbook.. Which is ... what I would do in the wizard... ... but "step away
from the mouse".

# Ansible section:  from bastion node (laptop windows 10 WSL with ansible
and galaxy installed

# 1)  build playbook from my site variables... based on some ovirt master
sharing template of what that UI builds

# 2)   push the playbook that installs ansible on the first node.  Install
ansible as a first node...  Run ansible playbook from customized template
file

# 3)  Create vlans.

# 4) Setup new VM gluster shared volume from three other disk

# 5) Push a template VM into cluster, attached to new VLAN and attached to
new volume

#6) Deploy VM from this template

#7) Drink a cold beer



###

Question:
1) Can you do ansible deployment from "bastion host" or does the ansible
have to run on the node that is installed with the "ovirt-engine". If so..
how do you collect feedback etc..

2) I assume there is a template.  Maybe it is published but I could not
find it.  That I replace (or match) variables of my site that fill in that
file.

3) I installed galaxy oVirt.ovirt-ansible-roles  but.. how do I know it
is deployed on my bastion host?  I poked around in the ansible folder.. not
seeing anything.  And I assume this only is of help POST the above seven
steps being done.  But maybe this has deployment components and I am
missing documents.

Thanks,

-- 
p enguinpages
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/T7BMS44D6DZZVUCGYUJ7SO6LHXMTMOC2/


[ovirt-users] 2 Node oVirt Cluster

2021-02-23 Thread justin . lamp96
Hey there,

I tried using oVirt for some time now and like to convert my main Proxmox 
Cluster (2 Nodes + RPI for Quorum) to oVirt. But I obvioulsy need three servers 
to do HA. Now I am asking myself: can't I just use the PI as an arbiter node 
for the Selfhosted-Engine on gluster? I tried running the playbook already, but 
it's always failing and even if the gluster deployment would go through, it 
would most likely fail aftwards, right?
Before I waste too much energy and time into that, does anyone of you guys use 
a 2 node cluster? And no I can't add another node (energy + space + money)!
Also I know with doing that I'm totally on my own etcetera

Thanks!
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/EYIIHKLPK42OVKPU5CMYIWNTSLLOKCEJ/


[ovirt-users] Invalid status on Data Center Default. Setting status to Non Responsive.

2021-02-23 Thread Jelte Veldstra | Order2Cash
All,

We have built a new oVirt cluster from scratch. We used the 4.4.4 installer 
released in December 2020. When deploying the engine we had the wizard create a 
Gluster volume for the engine on three hosts. All went well and the cluster is 
starting to take shape.

When starting the engine we do see the following error each time the engine is 
started in /var/log/ovirt-engine/engine.log:

2021-02-23 08:06:09,208+01 WARN  
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector] 
(EE-ManagedScheduledExecutorService-engineScheduledThreadPool-Thread-33) 
[4293beae] EVENT_ID: SYSTEM_CHANGE_STORAGE_POOL_STATUS_PROBLEMATIC(980), 
Invalid status on Data Center Default. Setting status to Non Responsive.

Also when navigating in the engine web-ui to Compute -> Data Centers -> Default 
and check the events an event of id 980 is shown with the message: “Invalid 
status on Data Center Default. Setting status to Non Responsive.”. The 
date/time matches when the error is shown in the engine log.

The datacenter overview does not show any warnings or errors and lists the 
Default datacenter as status Up. An interesting observation is that the cluster 
overview does have a status column on the far left, but the status is not 
mentioned. The field underneath the status heading is empty. Could that be the 
unknown status that the data center refers to?

How could we investigate this further? The storage volumes do not show any 
issues and the cluster seems to function okay (it has not been used a lot yet 
as it has been built yesterday/today), but the error message does sound like 
something we need to get out of the way before we put the actual workload on it.

Regards,


Jelte
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/B32ZI52KOCDAHSMXPD6ZPSQHTT22V47Q/


[ovirt-users] Re: guest-agent on windows10 vm

2021-02-23 Thread Gianluca Cecchi
On Tue, Feb 23, 2021 at 9:40 PM Fedele Stabile 
wrote:

> Thank you for the answer Gianluca,
> the windows vm is new,
> other linux vm don't have warning messages on the guest-agent.
> So the problem about shared folder is related to a bug on the old release
> of oVirt, if I understand.
> Fedele
>
> 
>

Guest tools configuration has changed between versions..
Did you install ovirt-guest-tools on the VM from the iso available at your
engine vm package?
Did the related service start in WIndows 10 OS?

You didn't reply why you are forced to use so an "old" oVirt version: it is
not old in absolute, but oVirt is rapidly evolving and you should stay at
maximum behind one version.
So if the latest is 4.3, stay no behind 4.2. Now, with 4.4 out since many
months, stay no behind 4.3 at least...
This way you get more correct help because more guys are on latest
versions, that got many enhancements and many bug fixes (eg with snapshot
management, illegal disks state some time, and so on)

Gianluca
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/MQZ2MNGDNJNEJPECD4OWLSF3S33AZFBP/


[ovirt-users] R: guest-agent on windows10 vm

2021-02-23 Thread Fedele Stabile
Thank you for the answer Gianluca,
the windows vm is new,
other linux vm don't have warning messages on the guest-agent.
So the problem about shared folder is related to a bug on the old release of 
oVirt, if I understand.
Fedele 


Da: Gianluca Cecchi 
Inviato: martedì 23 febbraio 2021 14:04
A: fedelestab...@gmail.com
Cc: users
Oggetto: Re: [ovirt-users] guest-agent on windows10 vm

On Tue, Feb 23, 2021 at 1:33 PM Fedele Stabile 
mailto:fedelestab...@gmail.com>> wrote:
Hello all,
I 'm using oVirt 4.2.1.7
and on windows VM i see an orange exclamation point  that warns me to install 
the latest guest agent.
On the VM (windows 10) i have installed:
QEMU guest agent version 101.1.0
SPICE Guest Tools 0.141
Virtio-win-driver-installer version 0.1.185
UsbDk Runtime Libraries version 1.0.22
Spice webdavd 2.4 (64-bit)

I can share the clipboard but
can not mount a USB stick other than FAT-formatted  or use a shared folder

Is there a solution?


oVirt as an upstream project cannot support every single release. Normally only 
the current one is under best (effort) support
4.2.1.7 released about 3 years ago. Any reason not to update in the mean time 
to a newer and better supported release?
4.3.0 has been released on February 2019 and is not supported any more, even if 
newer than yours.
4.4.0 has been released on May 2020 and now arrived at 4.4.4

I think that orange exclamation is there for a quite a long time... or did you 
update recently in any way from an older release and got it?

Gianluca

___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/ZRADTM542X63575ZXKLKONH6SA4PR7AN/


[ovirt-users] Re: Cannot add VM. Maximum number of threads per cpu exceeded

2021-02-23 Thread Arik Hadas
On Tue, Feb 23, 2021 at 4:10 PM Lavi.Buchnik--- via Users 
wrote:

> Hi,
>
> We have a strange thing, which not clear to us.
> When provisioning a new VM via REST API, if the number of vCPU for that VM
> is more than 16, I'm getting this error:
>
> Fault reason is "Operation Failed". Fault detail is "[Cannot add VM.
> Maximum number of threads per cpu exceeded]". HTTP response code is 409.
>
> Our version is: Version 4.3.6.6-1.0.9.el7
>
> Note that manual provisioning from the UI do not produce any error when
> using vCPU > 16.
> It seems like the issue is related to this setting (from the engine):
>
> [root@olvmengine01 ~]# engine-config -g MaxNumOfThreadsPerCpu
> MaxNumOfThreadsPerCpu: 8 version: 4.1
> MaxNumOfThreadsPerCpu: 8 version: 4.2
> MaxNumOfThreadsPerCpu: 8 version: 4.3
> [root@olvmengine01 ~]#
>
> But when trying to set it to another number, I'm always get this error,
> for example:
>
> [root@olvmengine01 ~]# engine-config -s MaxNumOfThreadsPerCpu=10
> Please select a version:
> 1. 4.1
> 2. 4.2
> 3. 4.3
> 3
> Cannot set value 10 to key MaxNumOfThreadsPerCpu.
>
> Questions:
> 1. Can you please explain why we getting this error: "Cannot add VM.
> Maximum number of threads per cpu exceeded"?
>

You've specified a value for threads-per-core that exceeds the
MaxNumOfThreadsPerCpu limit.

2. Is it related to engine-config -g MaxNumOfThreadsPerCpu?
>

Yes


> 3. Why it is working manually via the UI?
>

The UI sets the CPU topology for you when you specify the number of vCPUs
(for 16, it produces #sockets = 16, #cores=1, #threads=1).


> 4. if its related to engine-config, why we can't set it to another number?
>

You can change the values that engine-config accepts for
MaxNumOfThreadsPerCpu by changing MaxNumOfThreadsPerCpu.validValues in
/etc/ovirt-engine/engine-config/engine-config.properties but I think it
would be better to specify a better CPU topology in the request..


>
> Thanks in advance,
> Lavi
> ___
> Users mailing list -- users@ovirt.org
> To unsubscribe send an email to users-le...@ovirt.org
> Privacy Statement: https://www.ovirt.org/privacy-policy.html
> oVirt Code of Conduct:
> https://www.ovirt.org/community/about/community-guidelines/
> List Archives:
> https://lists.ovirt.org/archives/list/users@ovirt.org/message/CRKRVCWPUIN6HGU4OBTAC7Z4TNUACP6U/
>
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/PUAMEB76VRCTAPAM2FRJ6T2LZVBTEQY5/


[ovirt-users] Cannot add VM. Maximum number of threads per cpu exceeded

2021-02-23 Thread Lavi.Buchnik--- via Users
Hi,

We have a strange thing, which not clear to us.
When provisioning a new VM via REST API, if the number of vCPU for that VM is 
more than 16, I'm getting this error:

Fault reason is "Operation Failed". Fault detail is "[Cannot add VM. Maximum 
number of threads per cpu exceeded]". HTTP response code is 409.

Our version is: Version 4.3.6.6-1.0.9.el7

Note that manual provisioning from the UI do not produce any error when using 
vCPU > 16.
It seems like the issue is related to this setting (from the engine):

[root@olvmengine01 ~]# engine-config -g MaxNumOfThreadsPerCpu   
MaxNumOfThreadsPerCpu: 8 version: 4.1
MaxNumOfThreadsPerCpu: 8 version: 4.2
MaxNumOfThreadsPerCpu: 8 version: 4.3
[root@olvmengine01 ~]# 

But when trying to set it to another number, I'm always get this error, for 
example:

[root@olvmengine01 ~]# engine-config -s MaxNumOfThreadsPerCpu=10
Please select a version:
1. 4.1
2. 4.2
3. 4.3
3
Cannot set value 10 to key MaxNumOfThreadsPerCpu. 

Questions:
1. Can you please explain why we getting this error: "Cannot add VM. Maximum 
number of threads per cpu exceeded"?
2. Is it related to engine-config -g MaxNumOfThreadsPerCpu?
3. Why it is working manually via the UI?
4. if its related to engine-config, why we can't set it to another number?

Thanks in advance,
Lavi
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/CRKRVCWPUIN6HGU4OBTAC7Z4TNUACP6U/


[ovirt-users] Re: guest-agent on windows10 vm

2021-02-23 Thread Gianluca Cecchi
On Tue, Feb 23, 2021 at 1:33 PM Fedele Stabile 
wrote:

> Hello all,
> I 'm using oVirt 4.2.1.7
> and on windows VM i see an orange exclamation point  that warns me to
> install the latest guest agent.
> On the VM (windows 10) i have installed:
> QEMU guest agent version 101.1.0
> SPICE Guest Tools 0.141
> Virtio-win-driver-installer version 0.1.185
> UsbDk Runtime Libraries version 1.0.22
> Spice webdavd 2.4 (64-bit)
>
> I can share the clipboard but
> can not mount a USB stick other than FAT-formatted  or use a shared folder
>
> Is there a solution?
>
>
oVirt as an upstream project cannot support every single release. Normally
only the current one is under best (effort) support
4.2.1.7 released about 3 years ago. Any reason not to update in the mean
time to a newer and better supported release?
4.3.0 has been released on February 2019 and is not supported any more,
even if newer than yours.
4.4.0 has been released on May 2020 and now arrived at 4.4.4

I think that orange exclamation is there for a quite a long time... or did
you update recently in any way from an older release and got it?

Gianluca
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/BJLFU3RDXOHZRK2VZFCUO4HJGSNH3DIM/


[ovirt-users] VDI and ovirt

2021-02-23 Thread cpo cpo
Is anyone using Ovirt for a Windows 10 VDI deployment?  If so are you using a 
connection broker?  If you are what are you using?

Thanks for your time
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/5XVUNM56TY3EFPE2IK7REO2OA2LXVH3Z/


[ovirt-users] Re: Migrate windows 2003 server 64bits from libvirt to ovirt

2021-02-23 Thread Sandro Bonazzola
Il giorno lun 22 feb 2021 alle ore 16:18 Fernando Hallberg <
ferna...@webgenium.com.br> ha scritto:

> Hi,
>
> I have a VM with 2003 server x64, and I upload the vm image to oVirt.
>

Please note 2003 server gone end of life in 2015 (
https://www.microsoft.com/en-ie/mrap/products/windows-server-2003)
I would consider updating to a supported windows OS before trying to
migrate to oVirt.

That said, I would also recommend ensuring latest virtio-win drivers are
installed on the guest.



>
> The VM boot on the oVirt, but, the blue screen appear with a error message:
>
> [image: image.png]
>
> Anybody has some information about this?
>
> I try to convert de img file from raw to qcow2, but the error persists.
>
> Regards,
> Fernando Hallberg
> ___
> Users mailing list -- users@ovirt.org
> To unsubscribe send an email to users-le...@ovirt.org
> Privacy Statement: https://www.ovirt.org/privacy-policy.html
> oVirt Code of Conduct:
> https://www.ovirt.org/community/about/community-guidelines/
> List Archives:
> https://lists.ovirt.org/archives/list/users@ovirt.org/message/UPP7EBZZ776WE4JEEIOJCLOTMCKJIQWM/
>


-- 

Sandro Bonazzola

MANAGER, SOFTWARE ENGINEERING, EMEA R RHV

Red Hat EMEA 

sbona...@redhat.com


*Red Hat respects your work life balance. Therefore there is no need to
answer this email out of your office hours.
*
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/FCTOX4MM3DEEXXXMVOJCEXFKRIGBWTU7/


[ovirt-users] Re: oVirt Engine increase RAM and CPU

2021-02-23 Thread Vrgotic, Marko
Hi Didi,

There are three, unless there are more I am not aware:
Defined memory - which I am trying change
Max allowed - which was auto increased
Guaranteed - which was also auto changed, but I set it to 4096


— — —
Met vriendelijke groet / Best regards,

Marko Vrgotic
Sr. System Engineer
ActiveVideo

Tel. +31 (0)35 677 4131
email: m.vrgo...@activevideo.com
skype: av.mvrgotic.se
www.activevideo.com

From: Yedidyah Bar David 
Sent: Tuesday, February 23, 2021 8:07 AM
To: Vrgotic, Marko ; Arik Hadas 
Cc: users@ovirt.org 
Subject: Re: [ovirt-users] oVirt Engine increase RAM and CPU

***CAUTION: This email originated from outside of the organization. Do not 
click links or open attachments unless you recognize the sender!!!***

On Tue, Feb 23, 2021 at 8:05 AM Vrgotic, Marko
 wrote:
>
> From the logs, the XML file is updated with new memory value:
>
> 2021-02-23 05:41:53,350Z INFO  
> [org.ovirt.engine.core.vdsbroker.vdsbroker.DumpXmlsVDSCommand] 
> (EE-ManagedThreadFactory-engineScheduled-Thread-6) [] FINISH, 
> DumpXmlsVDSCommand, return: {e3de2b68-b7ea-4466-b044-ed431267df1b= type='kvm' id='24'>
>
>   HostedEngine
>
>   e3de2b68-b7ea-4466-b044-ed431267df1b
>
>xmlns:ns0="https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fovirt.org%2Fvm%2Ftune%2F1.0data=04%7C01%7Cm.vrgotic%40activevideo.com%7C4435203814a741447dc908d8d7c9c761%7C214268a3e1214486acd4545c9faf2252%7C0%7C0%7C637496608944237885%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000sdata=m%2Fj71lwMvKTGpMFEkkDSNX%2FHLnMBtIZNmpP0GWhkl00%3Dreserved=0;
>  
> xmlns:ovirt-vm="https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fovirt.org%2Fvm%2F1.0data=04%7C01%7Cm.vrgotic%40activevideo.com%7C4435203814a741447dc908d8d7c9c761%7C214268a3e1214486acd4545c9faf2252%7C0%7C0%7C637496608944237885%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000sdata=CLoQNcJMuR%2FyuW5DAeI5%2BpR%2BhNFBp680Pdbfeqjujh0%3Dreserved=0;>
>
> 
>
>  xmlns:ovirt-vm="https://nam10.safelinks.protection.outlook.com/?url=http%3A%2F%2Fovirt.org%2Fvm%2F1.0data=04%7C01%7Cm.vrgotic%40activevideo.com%7C4435203814a741447dc908d8d7c9c761%7C214268a3e1214486acd4545c9faf2252%7C0%7C0%7C637496608944237885%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000sdata=CLoQNcJMuR%2FyuW5DAeI5%2BpR%2BhNFBp680Pdbfeqjujh0%3Dreserved=0;>
>
> 4.3
>
> False
>
> false
>
> 16384
>
>  type="int">1024
>
> auto_resume
>
> 1614004416.2
>
> 
>
> ovirtmgmt
>
> 
>
> 4
>
> 
>
> 
>
> 
>
> 
> 84dbd790-39af-440c-acea-b0db03bf86b0
>
> /dev/vda2
>
> 
> 42b45aba-2307-4ef7-9465-533f95946b0a
>
> 
> ----
>
> exclusive
>
> 
> 38163651-2197-4661-9c9d-84c4272d6775
>
> 
>
> 1
>
> 
>
> 
>
> 
>
> 
> 84dbd790-39af-440c-acea-b0db03bf86b0
>
> 
> 42b45aba-2307-4ef7-9465-533f95946b0a
>
> 0
>
> 
> /rhev/data-center/mnt/172.17.28.5:_ovirt__hosted__engine/84dbd790-39af-440c-acea-b0db03bf86b0/images/42b45aba-2307-4ef7-9465-533f95946b0a/38163651-2197-4661-9c9d-84c4272d6775.lease
>
> 
> /rhev/data-center/mnt/172.17.28.5:_ovirt__hosted__engine/84dbd790-39af-440c-acea-b0db03bf86b0/images/42b45aba-2307-4ef7-9465-533f95946b0a/38163651-2197-4661-9c9d-84c4272d6775
>
> 
> 38163651-2197-4661-9c9d-84c4272d6775
>
> 
>
> 
>
> 
>
> 
>
> 
>
>   
>
>   67108864
>
>   33554432
>
>   33554432
>
>   64
>
>   
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 
>
> 
>
>
>
> But in UI, I still see
>
>
>
> Defined Memory:
>
> 16384 MB
>
>
>
>
>
> And the vm.conf on all three Hosts is still showing
>
> smp=8   <= cpu increase is already updated
>
> memSize=16384 <= but ram is still same
>
>
>
>
>
> It looks like  should report a bug.

There are different parameters around memory - are you sure you change
the correct one(s)?

Also adding Arik. Arik - please see the history of this thread. It
might be an issue in the engine, or in hosted-engine HA, or both - not
sure.

> But before I do that, we are currently on 4.3.8.2 version – is this by any 
> change fixed by latest 4.3 version?

No idea. 4.3 is past EOL now. I suggest to try latest 4.4, and if it
reproduces, file a bug and attach all relevant logs (including engine,
vdsm, hosted-engine-ha).

Best regards,

>
>
>
>
>
> -
>
> kind regards/met vriendelijke groeten
>
>
>
> Marko Vrgotic
> Sr. System Engineer @ System Administration
>
>
> ActiveVideo
>
> o: +31 (35) 6774131
>
> m: +31 (65) 5734174
>
> e: m.vrgo...@activevideo.com
> w: 
> 

[ovirt-users] SPAM to the users list

2021-02-23 Thread Yedidyah Bar David
Hi all,

Some spam was posted to the list a few minutes ago.

Sorry for that.

We are looking at preventing such cases in the future.

Best regards,
-- 
Didi
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/GP4ZXLZC4PIR46EADGHECOSAD7S5OU5F/


[ovirt-users] Slice Rush Game

2021-02-23 Thread aeg86755
Slice Rush is typically the fun-addicting reaction activity about cutting 
greens as quickly as possible, just these kinds of as a real cook. This free of 
charge internet game about https://8-ballpool.com/ challenges an individual in 
order to be able to slice carrots, mushrooms, peppers, and delightful and 
healthy pieces without striking the challenging surfaces that may hurt your 
knife.

Since the vegetables move forward automatically, your aim will be to be able to 
click after typically the screen to make the knife slice. Contain the mouse 
button to maintain cutting and become quick enough in order to release right 
before the particular hard platforms achieve your hitting stage.

Earn gems in order to unlock new kitchen knives and keep trimming a variety of 
food. Possess fun playing this particular free online sport Slice Rush!

Controls: Mouse
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/JYTHAVSAKIIXDHTDQTHFSZPCUJ7D73AW/


[ovirt-users] I'm in Texas. Does anyone have any Ideas as to what is going on?

2021-02-23 Thread aeg86755
I'm in Texas. I just got everything thawed out from the attack on Texas.
Help me! I had to replace my well pump because when the power went out, the 
pump froze and broke the case.

It was in an insulated pump house and had a heat lamp to keep it from freezing. 
When the power went out for so long it was 29° inside the house. It was so cold 
inside the water in the dogs water bowl froze solid.

I installed the new pump, primed it and turned it on. Half of the fixtures in 
my house have good pressure and flow. The others are just at a trickle. Does 
anyone have any Ideas as to what is going on?

Relieve stress with the cookie clicker: https://cookie-clicker.co!
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/NC2VE2PTV7TQPQO3UIVMVM66QNPXD2XX/