[ovirt-users] Re: Bridge issue

2019-10-11 Thread Staniforth, Paul
Maybe obvious but have you set the firewall on Win10 to allow pings ( it 
defaults to blocking them).

Regards,
  Paul S.


From: con_lo...@hotmail.com 
Sent: 11 October 2019 09:37
To: users@ovirt.org 
Subject: [ovirt-users] Re: Bridge issue

Hello Domikin
I have already set No Networkfilter on all involved vNIC profiles. 
Unfortunately the BRIGDE cannot ping Win10. It can only ping router.
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: 
https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.ovirt.org%2Fsite%2Fprivacy-policy%2Fdata=02%7C01%7Cp.staniforth%40leedsbeckett.ac.uk%7C5679c563be804ece4ce708d74e2699c2%7Cd79a81124fbe417aa112cd0fb490d85c%7C0%7C1%7C63706387906306sdata=sd9lnam0fGkPIhqf1gigZ%2Fq%2F0QvOlqtU1LfB3nPEv5o%3Dreserved=0
oVirt Code of Conduct: 
https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.ovirt.org%2Fcommunity%2Fabout%2Fcommunity-guidelines%2Fdata=02%7C01%7Cp.staniforth%40leedsbeckett.ac.uk%7C5679c563be804ece4ce708d74e2699c2%7Cd79a81124fbe417aa112cd0fb490d85c%7C0%7C1%7C63706387906306sdata=YqNb4kLt8IjptiHop%2FTBzs%2FYqUP28%2FAaUVHjtdDWUqk%3Dreserved=0
List Archives: 
https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.ovirt.org%2Farchives%2Flist%2Fusers%40ovirt.org%2Fmessage%2FJ6A5HE2FSEXDYRNKM72CNLSZNJFO4HIP%2Fdata=02%7C01%7Cp.staniforth%40leedsbeckett.ac.uk%7C5679c563be804ece4ce708d74e2699c2%7Cd79a81124fbe417aa112cd0fb490d85c%7C0%7C1%7C63706387906306sdata=%2FWrp8%2FvI05jzziR3E30RpuIsMiUqTPe64m2nURuJ2t4%3Dreserved=0
To view the terms under which this email is distributed, please go to:-
http://leedsbeckett.ac.uk/disclaimer/email/
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/JU6BYSZH23ZCCASDYPBL6SCYNZOTPKYO/


[ovirt-users] Re: Hyperconverged setup questions

2019-10-11 Thread Vrgotic, Marko
Hi Strahil,

Thank you.
One maybe stupid question, but significant to me:
Considering i haven’t been playing before with hyperconverged setup in oVirt, 
is this something i can do from ui cockpit or does it require me first setup an 
Glusterfs on the Hosts before doing anything via oVirt API or Web interface?

Kindly awaiting your reply.

Marko

Sent from my iPhone

On 11 Oct 2019, at 06:14, Strahil  wrote:



Hi Marko,

I guess  you can use distributed-replicated volumes  and oVirt  cluster with 
host triplets.

Best Regards,
Strahil Nikolov

On Oct 10, 2019 15:30, "Vrgotic, Marko"  wrote:

Dear oVirt,



Is it possible to add oVirt 3Hosts/Gluster hyperconverged cluster to existing 
oVirt setup? I need this to achieve Local storage performance, but still have 
pool of Hypevisors available.

Is it possible to have more than 3Hosts in Hyperconverged setup?



I have currently 1Shared Cluster (NFS based storage, where also SHE is hosted) 
and 2Local Storage clusters.



oVirt current version running is 4.3.4.



Kindly awaiting your reply.





— — —
Met vriendelijke groet / Kind regards,

Marko Vrgotic

ActiveVideo




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


[ovirt-users] Re: Clean up engine database?

2019-10-11 Thread Pavel Šipoš

Hi!

We have similar problem and it looks like psql vacuuming isn't working 
properly.
I expect that this problem will be gone when we will upgrade ovirt to 
latest version.
Until then we are performing weekly vacuuming of top N (usualy 4) tables 
by "external size" in ovirt_engine_history database.


A little bit more about vacuuming: 
https://www.postgresql.org/docs/9.1/sql-vacuum.html
External size: 
https://wiki-bsse.ethz.ch/display/ITDOC/Check+size+of+tables+and+objects+in+PostgreSQL+database 
, https://matjaz.it/tutorial-sizes-of-tables-and-databases-in-postgresql/


Example which queries we are running in our case:

To get top 4 tables ordered by "external size":
SELECT relname, pg_size_pretty(pg_total_relation_size(relid)), 
pg_size_pretty(pg_total_relation_size(relid) - pg_relation_size(relid)) 
FROM pg_catalog.pg_statio_user_tables ORDER BY 
pg_total_relation_size(relid) DESC limit 4;


We use names from previous query and perform vacuum table by table:
VACUUM (VERBOSE, FULL) ${TABLE};

To get new size of table after vaccuming:
SELECT pg_size_pretty(pg_total_relation_size(relid) - 
pg_relation_size(relid)) FROM pg_catalog.pg_statio_user_tables WHERE 
relname::text like '${TABLE}';


Note that ${TABLE} is variable with value for example: 
"vm_interface_samples_history"


I suggest to run few queries and check "external size" of your tables.

In our case vacuuming has huge effect on releasing disk space and it 
takes jus few seconds for database.


Oh yes, I almost forgot. As Strahi said, there is some ovirt tool 
(script) for cleaning up psql database but in our case it didn't have 
such huge effect as it didn't perform full vacuum.


Regards,
Pavel

On 11/10/2019 15:50, Strahil Nikolov wrote:

On October 11, 2019 3:43:55 PM GMT+03:00, Chris Adams  wrote:

On my oVirt 4.1.9 cluster, the hosted engine filled up its disk last
night (it was deployed from the engine appliance image and had a 20G
root and 5G swap).  I gained a little space by trimming down swap, but
I
need to clean it up.

It looks like the problem is the Postgres database -
/var/lib/pgsql/data
is using 16G.  Is there some cleanup I can do (and then some way to
keep
it from happening again)?

Also, is there a way to extend the hosted engine disk?  It's on iSCSI
storage, and the LUN has free space.

I have noticed during engine upgrade that the tool proposes  database cleanup, 
but I have never used it.

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


--
--
Pavel Sipos, Arnes 
ARNES, p.p. 7, SI-1001 Ljubljana, Slovenia
T: +386 1 479 88 00
W: www.arnes.si, aai.arnes.si

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


[ovirt-users] Re: Clean up engine database?

2019-10-11 Thread Strahil Nikolov
On October 11, 2019 3:43:55 PM GMT+03:00, Chris Adams  wrote:
>On my oVirt 4.1.9 cluster, the hosted engine filled up its disk last
>night (it was deployed from the engine appliance image and had a 20G
>root and 5G swap).  I gained a little space by trimming down swap, but
>I
>need to clean it up.
>
>It looks like the problem is the Postgres database -
>/var/lib/pgsql/data
>is using 16G.  Is there some cleanup I can do (and then some way to
>keep
>it from happening again)?
>
>Also, is there a way to extend the hosted engine disk?  It's on iSCSI
>storage, and the LUN has free space.

I have noticed during engine upgrade that the tool proposes  database cleanup, 
but I have never used it.

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


[ovirt-users] Re: Hyperconverged setup questions

2019-10-11 Thread Strahil Nikolov
On October 11, 2019 9:49:18 AM GMT+03:00, "Vrgotic, Marko" 
 wrote:
>Hi Strahil,
>
>Thank you.
>One maybe stupid question, but significant to me:
>Considering i haven’t been playing before with hyperconverged setup in
>oVirt, is this something i can do from ui cockpit or does it require me
>first setup an Glusterfs on the Hosts before doing anything via oVirt
>API or Web interface?
>
>Kindly awaiting your reply.
>
>Marko
>
>Sent from my iPhone
>
>On 11 Oct 2019, at 06:14, Strahil  wrote:
>
>
>
>Hi Marko,
>
>I guess  you can use distributed-replicated volumes  and oVirt  cluster
>with host triplets.
>
>Best Regards,
>Strahil Nikolov
>
>On Oct 10, 2019 15:30, "Vrgotic, Marko" 
>wrote:
>
>Dear oVirt,
>
>
>
>Is it possible to add oVirt 3Hosts/Gluster hyperconverged cluster to
>existing oVirt setup? I need this to achieve Local storage performance,
>but still have pool of Hypevisors available.
>
>Is it possible to have more than 3Hosts in Hyperconverged setup?
>
>
>
>I have currently 1Shared Cluster (NFS based storage, where also SHE is
>hosted) and 2Local Storage clusters.
>
>
>
>oVirt current version running is 4.3.4.
>
>
>
>Kindly awaiting your reply.
>
>
>
>
>
>— — —
>Met vriendelijke groet / Kind regards,
>
>Marko Vrgotic
>
>ActiveVideo

Hi Marko,

I'm not a big fan of GUI/UIs , so I cannot tell you.Most probably it is 
possible.

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


[ovirt-users] Clean up engine database?

2019-10-11 Thread Chris Adams
On my oVirt 4.1.9 cluster, the hosted engine filled up its disk last
night (it was deployed from the engine appliance image and had a 20G
root and 5G swap).  I gained a little space by trimming down swap, but I
need to clean it up.

It looks like the problem is the Postgres database - /var/lib/pgsql/data
is using 16G.  Is there some cleanup I can do (and then some way to keep
it from happening again)?

Also, is there a way to extend the hosted engine disk?  It's on iSCSI
storage, and the LUN has free space.
-- 
Chris Adams 
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/NEJTMZRXCQ5JDK5BE3RBZX5KOI4KB4QP/


[ovirt-users] Re: Move Hosted Engine to external oVirt or VMware

2019-10-11 Thread Staniforth, Paul
https://ovirt.org/documentation/self-hosted/chap-Backing_up_and_Restoring_an_EL-Based_Self-Hosted_Environment.html
Chapter 7: Backing up and Restoring an EL-Based Self-Hosted Environment - 
ovirt.org
Chapter 7: Backing up and Restoring an EL-Based Self-Hosted Environment. The 
nature of the self-hosted engine, and the relationship between the hosts and 
the hosted-engine virtual machine, means that backing up and restoring a 
self-hosted engine environment requires additional considerations to that of a 
standard oVirt environment.
ovirt.org
It is easier if you are restoring to a new self-hosted engine server or 
standard server/VM.

Regards,
   Paul S.



From: Markus Schaufler 
Sent: 08 October 2019 13:50
To: users@ovirt.org 
Subject: [ovirt-users] Move Hosted Engine to external oVirt or VMware

Hi,

I've got a oVirt Infrastructure with 4 nodes and a self-hosted engine. The 
hosted engine also manages additional 4 nodes in 4 datacenters.

Two tasks:
- Re installation of our infrastructure without interfering or interrupting the 
external nodes.
- Separate the external hosts from our infrastructure by either leaving them in 
the old hosted engine or setting up a new hosted engine on VMware or the new 
Ovirt Infrastructure

We've already drained 2 of our 4 nodes, re-installed them with ovirt node and a 
new self-hosted engine and moved our VMs onto it.
On the two remaining nodes only runs the old self-hosted engine which still 
manages the 4 external hosts - which prevents me from reinstalling that 
remaining hosts. I'd prefer to move the old HE to the new oVirt Installation or 
to our VMware infrastructure. Is that possible and what pitfalls do I have to 
care of?

Many thanks for any hint on this!
Markus
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: 
https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.ovirt.org%2Fsite%2Fprivacy-policy%2Fdata=02%7C01%7Cp.staniforth%40leedsbeckett.ac.uk%7C510a287e4a9c40d4764508d74bee8b41%7Cd79a81124fbe417aa112cd0fb490d85c%7C0%7C1%7C637061360216794910sdata=kH0ehF8QDTaor8QmbwNt4g8D0RHA9NwPiKVXlvFT1Wk%3Dreserved=0
oVirt Code of Conduct: 
https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.ovirt.org%2Fcommunity%2Fabout%2Fcommunity-guidelines%2Fdata=02%7C01%7Cp.staniforth%40leedsbeckett.ac.uk%7C510a287e4a9c40d4764508d74bee8b41%7Cd79a81124fbe417aa112cd0fb490d85c%7C0%7C1%7C637061360216794910sdata=Jzjz7BOGYRvyW8AuaIb1%2Bx2FQJ70VJSTRZnVIPPakTw%3Dreserved=0
List Archives: 
https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.ovirt.org%2Farchives%2Flist%2Fusers%40ovirt.org%2Fmessage%2F4ZCUURH43Q3MNEUW2YIVKXHG6JA5R3H4%2Fdata=02%7C01%7Cp.staniforth%40leedsbeckett.ac.uk%7C510a287e4a9c40d4764508d74bee8b41%7Cd79a81124fbe417aa112cd0fb490d85c%7C0%7C1%7C637061360216794910sdata=Pdb3S7m5L9TELvWOUa8StyybURyMthAv%2B9T1PgHQvks%3Dreserved=0
To view the terms under which this email is distributed, please go to:-
http://leedsbeckett.ac.uk/disclaimer/email/
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/UCN5GAVHR5FFEGCBFVK7XUR4GKW7POTK/


[ovirt-users] Re: Bridge issue

2019-10-11 Thread Dominik Holler
On Fri, 11 Oct 2019 08:37:27 -
con_lo...@hotmail.com wrote:

> Hello Domikin 
> I have already set No Networkfilter on all involved vNIC profiles. 
> Unfortunately the BRIGDE cannot ping Win10. It can only ping router. 


ok, so the problem seems to be that the external network connecting
BRIGDE to Win10 is not working.

Can you please share the current ovn-controller.log of the hosts running
BRIGDE and Win10?
Were both hosts installed into a cluster with ovirt-provider-ovn as
default network provider?

Does reconfiguration of ovn like described in
https://www.ovirt.org/documentation/admin-guide/chap-External_Providers.html#configuring-hosts-for-an-ovn-tunnel-network
fixes the issue?
If not, can you please share the ovn-controller.log after the
reconfiguration?




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


[ovirt-users] Re: Bridge issue

2019-10-11 Thread con_louca
Hello Domikin 
I have already set No Networkfilter on all involved vNIC profiles. 
Unfortunately the BRIGDE cannot ping Win10. It can only ping router. 
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/J6A5HE2FSEXDYRNKM72CNLSZNJFO4HIP/


[ovirt-users] Re: Bridge issue

2019-10-11 Thread Dominik Holler
On Thu, 10 Oct 2019 10:12:45 -
con_lo...@hotmail.com wrote:

> Hello all, 
> I am trying to setup a bridge. I have 3 virtual machines. The 1st acting as 
> router, the second acting as bridge and the 3rd is the client, like the 
> following diagram
>ROUTER 
> BRIDGECLIENT
> internet(ovirtmng network) - [eth0  router --eth1 ] ---[eth0 
> --[br0]-- eth1] ---[--eth Windows 10] 
> 
> The problem is that windows 10 is not able to connect the internet although 
> is able to allocate ip. I use ovirt external network to connect the VMs to 
> each other. 
> It seems that Windows 10 sends ARP to BRIDGE, the BRIDGE sends the ARP to 
> ROUTER but the replies are not passing the br0 when it comes a reply from 
> ROUTER to Windows 10.
> I use oVirt 4.3.6. Do you know what should be the issue ? Is there a chance 
> that ovirt blocking the bridge?

If "No Networkfilter" is set on all involved vNIC Profiles, oVirt will
not block any traffic. Is "No Networkfilter" set already on all
involved vNIC Profiles?
Is BRIDGE able to ping both other VMs?

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


[ovirt-users] FOSDEM 2020 Virtualization & IaaS Devroom CfP

2019-10-11 Thread Piotr Kliczewski
We are excited to announce that the

call for proposals is now open for the Virtualization & IaaS devroom at the

upcoming FOSDEM 2020, to be hosted on February 1st 2020.

This year will mark FOSDEM’s 20th anniversary as one of the longest-running

free and open source software developer events, attracting thousands of

developers and users from all over the world. FOSDEM will be held once

again in Brussels, Belgium, on February 1st & 2nd, 2020.

This devroom is a collaborative effort, and is organized by dedicated folks

from projects such as OpenStack, Xen Project, oVirt, QEMU, KVM, and

Foreman. We would like to invite all those who are involved in these fields

to submit your proposals by December 1st, 2019.

About the Devroom

The Virtualization & IaaS devroom will feature session topics such as open

source hypervisors and virtual machine managers such as Xen Project, KVM,

bhyve, and VirtualBox, and Infrastructure-as-a-Service projects such as
KubeVirt,

Apache CloudStack, OpenStack, oVirt, QEMU and OpenNebula.

This devroom will host presentations that focus on topics of shared

interest, such as KVM; libvirt; shared storage; virtualized networking;

cloud security; clustering and high availability; interfacing with multiple

hypervisors; hyperconverged deployments; and scaling across hundreds or

thousands of servers.

Presentations in this devroom will be aimed at developers working on these

platforms who are looking to collaborate and improve shared infrastructure

or solve common problems. We seek topics that encourage dialog between

projects and continued work post-FOSDEM.

Important Dates

Submission deadline: 1 December 2019

Acceptance notifications: 10 December 2019

Final schedule announcement: 15th December 2019

Devroom: 1st February 2020

Submit Your Proposal

All submissions must be made via the Pentabarf event planning site[1]. If

you have not used Pentabarf before, you will need to create an account. If

you submitted proposals for FOSDEM in previous years, you can use your

existing account.

After creating the account, select Create Event to start the submission

process. Make sure to select Virtualization and IaaS devroom from the Track

list. Please fill out all the required fields, and provide a meaningful

abstract and description of your proposed session.

Submission Guidelines

We expect more proposals than we can possibly accept, so it is vitally

important that you submit your proposal on or before the deadline. Late

submissions are unlikely to be considered.

All presentation slots are 30 minutes, with 20 minutes planned for

presentations, and 10 minutes for Q

All presentations will be recorded and made available under Creative

Commons licenses. In the Submission notes field, please indicate that you

agree that your presentation will be licensed under the CC-By-SA-4.0 or

CC-By-4.0 license and that you agree to have your presentation recorded.

For example:

"If my presentation is accepted for FOSDEM, I hereby agree to license all

recordings, slides, and other associated materials under the Creative

Commons Attribution Share-Alike 4.0 International License. Sincerely,

."

In the Submission notes field, please also confirm that if your talk is

accepted, you will be able to attend FOSDEM and deliver your presentation.

We will not consider proposals from prospective speakers who are unsure

whether they will be able to secure funds for travel and lodging to attend

FOSDEM. (Sadly, we are not able to offer travel funding for prospective

speakers.)

Submission Guidelines

Mentored presentations will have 25-minute slots, where 20 minutes will

include the presentation and 5 minutes will be reserved for questions.

The number of newcomer session slots is limited, so we will probably not be

able to accept all applications.

You must submit your talk and abstract to apply for the mentoring program,

our mentors are volunteering their time and will happily provide feedback

but won't write your presentation for you!

If you are experiencing problems with Pentabarf, the proposal submission

interface, or have other questions, you can email our devroom mailing

list[2] and we will try to help you.

How to Apply

In addition to agreeing to video recording and confirming that you can

attend FOSDEM in case your session is accepted, please write "speaker

mentoring program application" in the "Submission notes" field, and list

any prior speaking experience or other relevant information for your

application.

Code of Conduct

Following the release of the updated code of conduct for FOSDEM, we'd like

to remind all speakers and attendees that all of the presentations and

discussions in our devroom are held under the guidelines set in the CoC and

we expect attendees, speakers, and volunteers to follow the CoC at all

times.

If you submit a proposal and it is accepted, you will be required to

confirm that you accept the FOSDEM CoC. If you have any questions about the

[ovirt-users] Re: External networks issue after upgrading to 4.3.6

2019-10-11 Thread ada per
Thank you for all your help! Unfortunately the log is empty! Im now
reinstalling the environment from scratch

On Fri, Oct 11, 2019 at 9:32 AM Dominik Holler  wrote:

>
>
> On Fri, Oct 11, 2019 at 8:24 AM ada per  wrote:
>
>> any input???
>>
>>
> What is written to the ovn-controller.log  now?
> I expect that there is an helpful error explaning the problem while
> connecting to 192.161.21:6642.
>
>
>> On Wed, 9 Oct 2019, 16:50 ada per,  wrote:
>>
>>>  ip a
>>> 1: lo:  mtu 65536 qdisc noqueue state UNKNOWN
>>> group default qlen 1000
>>> link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
>>> inet 127.0.0.1/8 scope host lo
>>>valid_lft forever preferred_lft forever
>>> inet6 ::1/128 scope host
>>>valid_lft forever preferred_lft forever
>>> 2: eth0:  mtu 1500 qdisc mq state UP
>>> group default qlen 1000
>>> link/ether 00:16:3e:32:c8:ff brd ff:ff:ff:ff:ff:ff
>>> inet 192.168.1.21/24 brd 192.168.1.255 scope global eth0
>>>valid_lft forever preferred_lft forever
>>> inet6 fe80::216:3eff:fe32:c8ff/64 scope link
>>>valid_lft forever preferred_lft forever
>>> 3: eth1:  mtu 1500 qdisc mq state UP
>>> group default qlen 1000
>>> link/ether 56:6f:74:a4:00:0d brd ff:ff:ff:ff:ff:ff
>>> inet6 fe80::abc9:3c51:1a61:ab7a/64 scope link noprefixroute
>>>valid_lft forever preferred_lft forever
>>>
>>>
>>> and
>>>
>>>
>>> [root@threatrealm3 ~]# ovs-vsctl list Open
>>> _uuid   : 637b29cb-3874-4356-9d16-f4e0e4ddf212
>>> bridges : [f805bd1c-3d65-4f46-a1f4-2a337bfbfe60]
>>> cur_cfg : 538
>>> datapath_types  : [netdev, system]
>>> db_version  : "7.16.1"
>>> dpdk_initialized: false
>>> dpdk_version: "DPDK 18.11.0"
>>> external_ids: {hostname="threatrealm3.sec.ouc.ac.cy",
>>> ovn-bridge-mapping s="", ovn-encap-ip="192.168.1.26",
>>> ovn-encap-type=geneve, ovn-remote="ssl:192.16
>>>
>>> 8.1.21:6642", rundir="/var/run/openvswitch",
>>> system-id="d3240f0e-50ca-43e9-b7de-
>>>
>>>   c1a36587f609"}
>>> iface_types : [erspan, geneve, gre, internal, "ip6erspan",
>>> "ip6gre", lis
>>> p, patch,
>>> stt, system, tap, vxlan]
>>> manager_options : []
>>> next_cfg: 538
>>> other_config: {}
>>> ovs_version : "2.11.0"
>>> ssl : []
>>> statistics  : {}
>>> system_type : centos
>>> system_version  : "7"
>>>
>>>
>>>
>>> [root@threatrealm2 ~]# ovs-vsctl list Open
>>> _uuid   : 79d5588a-c68d-4615-8ce7-7be785fe8bfd
>>> bridges : [e52f952a-e7cb-4ead-83c7-18b0c5b0d2e9]
>>> cur_cfg : 997
>>> datapath_types  : [netdev, system]
>>> db_version  : "7.16.1"
>>> dpdk_initialized: false
>>> dpdk_version: "DPDK 18.11.0"
>>> external_ids: {hostname="threatrealm2.sec.ouc.ac.cy",
>>> ovn-bridge-mappings="", ovn-encap-ip="192.168.1.22", ovn-encap-type=geneve,
>>> ovn-remote="ssl:192.168.1.21:6642", rundir="/var/run/openvswitch",
>>> system-id="96e6f622-2834-4e91-ab31-0df3f21788f2"}
>>> iface_types : [erspan, geneve, gre, internal, "ip6erspan",
>>> "ip6gre", lisp, patch, stt, system, tap, vxlan]
>>> manager_options : []
>>> next_cfg: 997
>>> other_config: {}
>>> ovs_version : "2.11.0"
>>> ssl : []
>>> statistics  : {}
>>> system_type : centos
>>> system_version  : "7"
>>>
>>>
>>>
>>>
>>>
>>>
>>> On Wed, Oct 9, 2019 at 4:16 PM Miguel Duarte de Mora Barroso <
>>> mdbarr...@redhat.com> wrote:
>>>
 On Wed, Oct 9, 2019 at 1:50 PM ada per  wrote:
 >
 > Done!! thank you. it worked now but the  ovn-sbctl list chassis finds
 nothing

 Good.

 Some other things:
   - what's the output of 'ip a' on ovirt-engine ?
   - ssh into one of the hosts in that cluster and do 'ovs-vsctl list
 Open'

 With this we can check that the OVN configuration is correct.

 >
 > results fom playbook
 >
 > PLAY RECAP
 
 > localhost  : ok=1changed=0unreachable=0
 failed=0skipped=2rescued=0ignored=0
 > threatrealm2.sec.ouc.ac.cy : ok=6changed=1unreachable=0
 failed=0skipped=3rescued=0ignored=0
 > threatrealm3.sec.ouc.ac.cy : ok=6changed=1unreachable=0
 failed=0skipped=3rescued=0ignored=0
 >
 >
 >
 > results form ovn-sbctl list chassis:
 >
 > net_mlx5: cannot load glue library: libibverbs.so.1: cannot open
 shared object file: No such file or directory
 > net_mlx5: cannot initialize PMD due to missing run-time dependency on
 rdma-core libraries (libibverbs, 

[ovirt-users] Re: [ovirt-devel] Creating a custom NON-VM Network using the Ovirt SDK

2019-10-11 Thread Dominik Holler
On Thu, 10 Oct 2019 14:11:29 -
"Jamie Holohan"  wrote:

> If i'm creating a a custom network on OVM using the UI, one of the options in 
> the pop up is a check box labelled "VM network" for determining if I want a 
> VM network.
> 

"VM network" is modeled as usage in the sdk, so an empty attribute
"usages" does the trick:


system_service = connection.system_service()
networks_service = system_service.networks_service()
networks_service.add(
types.Network(
name='custom_network',
data_center=types.DataCenter(
name='Default'
),
usages=[]
)
)

> When using the SDK I am building  network with a NetworkBuilder, but I cannot 
> see any methods to toggle the VM network option. How do I create a custom 
> Network with not VM role using the SDK?
> 
> Can it be done with a NetworkBuilder?
> ___
> Devel mailing list -- de...@ovirt.org
> To unsubscribe send an email to devel-le...@ovirt.org
> Privacy Statement: https://www.ovirt.org/site/privacy-policy/
> oVirt Code of Conduct: 
> https://www.ovirt.org/community/about/community-guidelines/
> List Archives: 
> https://lists.ovirt.org/archives/list/de...@ovirt.org/message/UPR2B3IOGB33RPIH7PFJHEHSQ6N3RHKM/
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/MDTSD6GBL6V6Y33LFPG7CIHOVWWHNPFB/


[ovirt-users] Re: Ovirt 4.3.5/6 automated install fails

2019-10-11 Thread Simone Tiraboschi
On Fri, Oct 11, 2019 at 9:01 AM  wrote:

> I think I finally found the issue, it it was related to
> tasks/add_hosts_storage_domains.yml where hosts: localhost should be set to
> hosts: host1.example.other.com
>
> As mentioned all worked except for one warning:
>
> TASK [ovirt.hosted_engine_setup : Always revoke the SSO token]
>
> ***
> fatal: [host1.example.other.com]: FAILED! => {"changed": false, "msg":
> "You must specify either 'url' or 'hostname'."}
> ...ignoring
>
> host1.example.other.com : ok=418  changed=150  unreachable=0failed=0
>   skipped=220  rescued=0ignored=1
>
> I researched a bit about this error and found
> https://github.com/ansible/ansible/issues/53379 but not sure if this is
> still the case.
>
>
Yes, it's that one.

AFAIK it's not going to fail the whole deployment because we added an
ignore over that kind of errors.
AFAIK it's not systematic.


> any feedback is welcome.
>

> thank you,
>
> Adrian
> ___
> Users mailing list -- users@ovirt.org
> To unsubscribe send an email to users-le...@ovirt.org
> Privacy Statement: https://www.ovirt.org/site/privacy-policy/
> oVirt Code of Conduct:
> https://www.ovirt.org/community/about/community-guidelines/
> List Archives:
> https://lists.ovirt.org/archives/list/users@ovirt.org/message/UN5OWABCO4FCYTGBUXJI3HAMNSOWPPSW/
>
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/KE5XE4TJVR4XOIL7SNWBZBYMJDCM5BLS/


[ovirt-users] Bridge Issue

2019-10-11 Thread Constantinos L
Hello all,
I am trying to setup a bridge. I have 3 virtual machines. The 1st acting as 
router, the second acting as bridge and the 3rd is the client, like the 
following diagram
   ROUTER   
  BRIDGECLIENT
internet(ovirtmng network) - [eth0  router --eth1 ] ---[eth0 --[br0]-- 
eth1] ---[--eth Windows 10]

The problem is that windows 10 is not able to connect the internet although is 
able to allocate ip. I use ovirt external network to connect the VMs to each 
other.
It seems that Windows 10 sends ARP to BRIDGE, the BRIDGE sends the ARP to 
ROUTER but the replies are not passing the br0 when it comes a reply from 
ROUTER to Windows 10.
I use oVirt 4.3.6. Do you know what should be the issue ? Is there a chance 
that ovirt blocking the bridge?

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


[ovirt-users] Re: owner of vm paused/unpaused operation

2019-10-11 Thread Gianluca Cecchi
On Fri, Oct 11, 2019 at 6:04 AM Strahil  wrote:

> You can always check the *queue_if_no_path*  multipath.conf option and
> give it a try.
>
This setting would be at host side, where things are ok to put a timeout of
X seconds using entries such as

devices {
device {
all_devsyes
# Set timeout of queuing of 5*28 = 140 seconds
# similar to vSphere APD timeout
#no_path_retry   fail
no_path_retry   28
polling_interval5
}


> Don't forget that the higher  in I/O chain you go - the higher the timeout
> is needed, so your VM should also use multipath with that option, in
> addition to the host.
>
>
> Yes, in fact at guest side I put a udev rule

ACTION=="add", SUBSYSTEMS=="scsi", ATTRS{vendor}=="QEMU*",
ATTRS{model}=="QEMU HARDDISK*", ENV{DEVTYPE}=="disk", RUN+="/bin/sh -c
'echo 180 > /sys$DEVPATH/device/timeout'"

so that guest disk timeout is more than host storage.
Any other settings?
Gianluca
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/users@ovirt.org/message/L37FO7F6WNCIKSBDYZ32XQ2BWCC5QFQQ/


[ovirt-users] Re: Ovirt 4.3.5/6 automated install fails

2019-10-11 Thread adrianquintero
I think I finally found the issue, it it was related to 
tasks/add_hosts_storage_domains.yml where hosts: localhost should be set to 
hosts: host1.example.other.com

As mentioned all worked except for one warning:

TASK [ovirt.hosted_engine_setup : Always revoke the SSO token] 
***
fatal: [host1.example.other.com]: FAILED! => {"changed": false, "msg": "You 
must specify either 'url' or 'hostname'."}
...ignoring

host1.example.other.com : ok=418  changed=150  unreachable=0failed=0
skipped=220  rescued=0ignored=1   

I researched a bit about this error and found 
https://github.com/ansible/ansible/issues/53379 but not sure if this is still 
the case.

any feedback is welcome.

thank you,

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


[ovirt-users] Re: External networks issue after upgrading to 4.3.6

2019-10-11 Thread Dominik Holler
On Fri, Oct 11, 2019 at 8:24 AM ada per  wrote:

> any input???
>
>
What is written to the ovn-controller.log  now?
I expect that there is an helpful error explaning the problem while
connecting to 192.161.21:6642.


> On Wed, 9 Oct 2019, 16:50 ada per,  wrote:
>
>>  ip a
>> 1: lo:  mtu 65536 qdisc noqueue state UNKNOWN group
>> default qlen 1000
>> link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
>> inet 127.0.0.1/8 scope host lo
>>valid_lft forever preferred_lft forever
>> inet6 ::1/128 scope host
>>valid_lft forever preferred_lft forever
>> 2: eth0:  mtu 1500 qdisc mq state UP
>> group default qlen 1000
>> link/ether 00:16:3e:32:c8:ff brd ff:ff:ff:ff:ff:ff
>> inet 192.168.1.21/24 brd 192.168.1.255 scope global eth0
>>valid_lft forever preferred_lft forever
>> inet6 fe80::216:3eff:fe32:c8ff/64 scope link
>>valid_lft forever preferred_lft forever
>> 3: eth1:  mtu 1500 qdisc mq state UP
>> group default qlen 1000
>> link/ether 56:6f:74:a4:00:0d brd ff:ff:ff:ff:ff:ff
>> inet6 fe80::abc9:3c51:1a61:ab7a/64 scope link noprefixroute
>>valid_lft forever preferred_lft forever
>>
>>
>> and
>>
>>
>> [root@threatrealm3 ~]# ovs-vsctl list Open
>> _uuid   : 637b29cb-3874-4356-9d16-f4e0e4ddf212
>> bridges : [f805bd1c-3d65-4f46-a1f4-2a337bfbfe60]
>> cur_cfg : 538
>> datapath_types  : [netdev, system]
>> db_version  : "7.16.1"
>> dpdk_initialized: false
>> dpdk_version: "DPDK 18.11.0"
>> external_ids: {hostname="threatrealm3.sec.ouc.ac.cy",
>> ovn-bridge-mapping s="", ovn-encap-ip="192.168.1.26",
>> ovn-encap-type=geneve, ovn-remote="ssl:192.16
>>
>> 8.1.21:6642", rundir="/var/run/openvswitch",
>> system-id="d3240f0e-50ca-43e9-b7de-
>>
>>   c1a36587f609"}
>> iface_types : [erspan, geneve, gre, internal, "ip6erspan",
>> "ip6gre", lis
>> p, patch,
>> stt, system, tap, vxlan]
>> manager_options : []
>> next_cfg: 538
>> other_config: {}
>> ovs_version : "2.11.0"
>> ssl : []
>> statistics  : {}
>> system_type : centos
>> system_version  : "7"
>>
>>
>>
>> [root@threatrealm2 ~]# ovs-vsctl list Open
>> _uuid   : 79d5588a-c68d-4615-8ce7-7be785fe8bfd
>> bridges : [e52f952a-e7cb-4ead-83c7-18b0c5b0d2e9]
>> cur_cfg : 997
>> datapath_types  : [netdev, system]
>> db_version  : "7.16.1"
>> dpdk_initialized: false
>> dpdk_version: "DPDK 18.11.0"
>> external_ids: {hostname="threatrealm2.sec.ouc.ac.cy",
>> ovn-bridge-mappings="", ovn-encap-ip="192.168.1.22", ovn-encap-type=geneve,
>> ovn-remote="ssl:192.168.1.21:6642", rundir="/var/run/openvswitch",
>> system-id="96e6f622-2834-4e91-ab31-0df3f21788f2"}
>> iface_types : [erspan, geneve, gre, internal, "ip6erspan",
>> "ip6gre", lisp, patch, stt, system, tap, vxlan]
>> manager_options : []
>> next_cfg: 997
>> other_config: {}
>> ovs_version : "2.11.0"
>> ssl : []
>> statistics  : {}
>> system_type : centos
>> system_version  : "7"
>>
>>
>>
>>
>>
>>
>> On Wed, Oct 9, 2019 at 4:16 PM Miguel Duarte de Mora Barroso <
>> mdbarr...@redhat.com> wrote:
>>
>>> On Wed, Oct 9, 2019 at 1:50 PM ada per  wrote:
>>> >
>>> > Done!! thank you. it worked now but the  ovn-sbctl list chassis finds
>>> nothing
>>>
>>> Good.
>>>
>>> Some other things:
>>>   - what's the output of 'ip a' on ovirt-engine ?
>>>   - ssh into one of the hosts in that cluster and do 'ovs-vsctl list
>>> Open'
>>>
>>> With this we can check that the OVN configuration is correct.
>>>
>>> >
>>> > results fom playbook
>>> >
>>> > PLAY RECAP
>>> 
>>> > localhost  : ok=1changed=0unreachable=0
>>> failed=0skipped=2rescued=0ignored=0
>>> > threatrealm2.sec.ouc.ac.cy : ok=6changed=1unreachable=0
>>> failed=0skipped=3rescued=0ignored=0
>>> > threatrealm3.sec.ouc.ac.cy : ok=6changed=1unreachable=0
>>> failed=0skipped=3rescued=0ignored=0
>>> >
>>> >
>>> >
>>> > results form ovn-sbctl list chassis:
>>> >
>>> > net_mlx5: cannot load glue library: libibverbs.so.1: cannot open
>>> shared object file: No such file or directory
>>> > net_mlx5: cannot initialize PMD due to missing run-time dependency on
>>> rdma-core libraries (libibverbs, libmlx5)
>>> > PMD: net_mlx4: cannot load glue library: libibverbs.so.1: cannot open
>>> shared object file: No such file or directory
>>> > PMD: net_mlx4: cannot initialize PMD due to missing run-time
>>> dependency on rdma-core libraries (libibverbs, libmlx4)
>>>
>>

[ovirt-users] Re: External networks issue after upgrading to 4.3.6

2019-10-11 Thread ada per
any input???

On Wed, 9 Oct 2019, 16:50 ada per,  wrote:

>  ip a
> 1: lo:  mtu 65536 qdisc noqueue state UNKNOWN group
> default qlen 1000
> link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
> inet 127.0.0.1/8 scope host lo
>valid_lft forever preferred_lft forever
> inet6 ::1/128 scope host
>valid_lft forever preferred_lft forever
> 2: eth0:  mtu 1500 qdisc mq state UP
> group default qlen 1000
> link/ether 00:16:3e:32:c8:ff brd ff:ff:ff:ff:ff:ff
> inet 192.168.1.21/24 brd 192.168.1.255 scope global eth0
>valid_lft forever preferred_lft forever
> inet6 fe80::216:3eff:fe32:c8ff/64 scope link
>valid_lft forever preferred_lft forever
> 3: eth1:  mtu 1500 qdisc mq state UP
> group default qlen 1000
> link/ether 56:6f:74:a4:00:0d brd ff:ff:ff:ff:ff:ff
> inet6 fe80::abc9:3c51:1a61:ab7a/64 scope link noprefixroute
>valid_lft forever preferred_lft forever
>
>
> and
>
>
> [root@threatrealm3 ~]# ovs-vsctl list Open
> _uuid   : 637b29cb-3874-4356-9d16-f4e0e4ddf212
> bridges : [f805bd1c-3d65-4f46-a1f4-2a337bfbfe60]
> cur_cfg : 538
> datapath_types  : [netdev, system]
> db_version  : "7.16.1"
> dpdk_initialized: false
> dpdk_version: "DPDK 18.11.0"
> external_ids: {hostname="threatrealm3.sec.ouc.ac.cy",
> ovn-bridge-mapping s="", ovn-encap-ip="192.168.1.26",
> ovn-encap-type=geneve, ovn-remote="ssl:192.16
>
> 8.1.21:6642", rundir="/var/run/openvswitch",
> system-id="d3240f0e-50ca-43e9-b7de-
>
>   c1a36587f609"}
> iface_types : [erspan, geneve, gre, internal, "ip6erspan",
> "ip6gre", lis
> p, patch,
> stt, system, tap, vxlan]
> manager_options : []
> next_cfg: 538
> other_config: {}
> ovs_version : "2.11.0"
> ssl : []
> statistics  : {}
> system_type : centos
> system_version  : "7"
>
>
>
> [root@threatrealm2 ~]# ovs-vsctl list Open
> _uuid   : 79d5588a-c68d-4615-8ce7-7be785fe8bfd
> bridges : [e52f952a-e7cb-4ead-83c7-18b0c5b0d2e9]
> cur_cfg : 997
> datapath_types  : [netdev, system]
> db_version  : "7.16.1"
> dpdk_initialized: false
> dpdk_version: "DPDK 18.11.0"
> external_ids: {hostname="threatrealm2.sec.ouc.ac.cy",
> ovn-bridge-mappings="", ovn-encap-ip="192.168.1.22", ovn-encap-type=geneve,
> ovn-remote="ssl:192.168.1.21:6642", rundir="/var/run/openvswitch",
> system-id="96e6f622-2834-4e91-ab31-0df3f21788f2"}
> iface_types : [erspan, geneve, gre, internal, "ip6erspan",
> "ip6gre", lisp, patch, stt, system, tap, vxlan]
> manager_options : []
> next_cfg: 997
> other_config: {}
> ovs_version : "2.11.0"
> ssl : []
> statistics  : {}
> system_type : centos
> system_version  : "7"
>
>
>
>
>
>
> On Wed, Oct 9, 2019 at 4:16 PM Miguel Duarte de Mora Barroso <
> mdbarr...@redhat.com> wrote:
>
>> On Wed, Oct 9, 2019 at 1:50 PM ada per  wrote:
>> >
>> > Done!! thank you. it worked now but the  ovn-sbctl list chassis finds
>> nothing
>>
>> Good.
>>
>> Some other things:
>>   - what's the output of 'ip a' on ovirt-engine ?
>>   - ssh into one of the hosts in that cluster and do 'ovs-vsctl list Open'
>>
>> With this we can check that the OVN configuration is correct.
>>
>> >
>> > results fom playbook
>> >
>> > PLAY RECAP
>> 
>> > localhost  : ok=1changed=0unreachable=0
>> failed=0skipped=2rescued=0ignored=0
>> > threatrealm2.sec.ouc.ac.cy : ok=6changed=1unreachable=0
>> failed=0skipped=3rescued=0ignored=0
>> > threatrealm3.sec.ouc.ac.cy : ok=6changed=1unreachable=0
>> failed=0skipped=3rescued=0ignored=0
>> >
>> >
>> >
>> > results form ovn-sbctl list chassis:
>> >
>> > net_mlx5: cannot load glue library: libibverbs.so.1: cannot open shared
>> object file: No such file or directory
>> > net_mlx5: cannot initialize PMD due to missing run-time dependency on
>> rdma-core libraries (libibverbs, libmlx5)
>> > PMD: net_mlx4: cannot load glue library: libibverbs.so.1: cannot open
>> shared object file: No such file or directory
>> > PMD: net_mlx4: cannot initialize PMD due to missing run-time dependency
>> on rdma-core libraries (libibverbs, libmlx4)
>>
>
___
Users mailing list -- users@ovirt.org
To unsubscribe send an email to users-le...@ovirt.org
Privacy Statement: https://www.ovirt.org/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: