[ovirt-devel] [ANN] oVirt 4.4.5 Second Release Candidate is now available for testing

2021-01-21 Thread Sandro Bonazzola
oVirt 4.4.5 Second Release Candidate is now available for testing

The oVirt Project is pleased to announce the availability of oVirt 4.4.5
Second Release Candidate for testing, as of January 21st, 2021.

This update is the fifth in a series of stabilization updates to the 4.4
series.
How to prevent hosts entering emergency mode after upgrade from oVirt 4.4.1

Note: Upgrading from 4.4.2 GA or later should not require re-doing these
steps, if already performed while upgrading from 4.4.1 to 4.4.2 GA. These
are only required to be done once.

Due to Bug 1837864  -
Host enter emergency mode after upgrading to latest build

If you have your root file system on a multipath device on your hosts you
should be aware that after upgrading from 4.4.1 to 4.4.5 you may get your
host entering emergency mode.

In order to prevent this be sure to upgrade oVirt Engine first, then on
your hosts:

   1.

   Remove the current lvm filter while still on 4.4.1, or in emergency mode
   (if rebooted).
   2.

   Reboot.
   3.

   Upgrade to 4.4.5 (redeploy in case of already being on 4.4.5).
   4.

   Run vdsm-tool config-lvm-filter to confirm there is a new filter in
   place.
   5.

   Only if not using oVirt Node:
   - run "dracut --force --add multipath” to rebuild initramfs with the
   correct filter configuration
   6.

   Reboot.

Documentation

   -

   If you want to try oVirt as quickly as possible, follow the instructions
   on the Download  page.
   -

   For complete installation, administration, and usage instructions, see
   the oVirt Documentation .
   -

   For upgrading from a previous version, see the oVirt Upgrade Guide
   .
   -

   For a general overview of oVirt, see About oVirt
   .

Important notes before you try it

Please note this is a pre-release build.

The oVirt Project makes no guarantees as to its suitability or usefulness.

This pre-release must not be used in production.
Installation instructions

For installation instructions and additional information please refer to:

https://ovirt.org/documentation/

This release is available now on x86_64 architecture for:

* Red Hat Enterprise Linux 8.3 or newer

* CentOS Linux (or similar) 8.3 or newer

This release supports Hypervisor Hosts on x86_64 and ppc64le architectures
for:

* Red Hat Enterprise Linux 8.3 or newer

* CentOS Linux (or similar) 8.3 or newer

* oVirt Node 4.4 based on CentOS Linux 8.3 (available for x86_64 only)

See the release notes [1] for installation instructions and a list of new
features and bugs fixed.

Notes:

- oVirt Appliance is already available for CentOS Linux 8

- oVirt Node NG is already available for CentOS Linux 8

- We found a few issues while testing on CentOS Stream so we are still
basing oVirt 4.4.5 Node and Appliance on CentOS Linux.

Additional Resources:

* Read more about the oVirt 4.4.5 release highlights:
http://www.ovirt.org/release/4.4.5/

* Get more oVirt project updates on Twitter: https://twitter.com/ovirt

* Check out the latest project news on the oVirt blog:
http://www.ovirt.org/blog/


[1] http://www.ovirt.org/release/4.4.5/
[2] http://resources.ovirt.org/pub/ovirt-4.4-pre/iso/

-- 

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.*
___
Devel mailing list -- devel@ovirt.org
To unsubscribe send an email to devel-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/devel@ovirt.org/message/EFRJHLMV6GTSM5PYNAKETOXO7FMQ2PO7/


[ovirt-devel] Re: [ovirt-users] Re: [ANN] oVirt 4.4.4 is now generally available

2021-01-21 Thread Shantur Rathore
I would love
https://github.com/openstack/cinderlib/commit/a09a7e12fe685d747ed390a59cd42d0acd1399e4
to come back.



On Thu, Jan 21, 2021 at 2:27 PM Gorka Eguileor  wrote:

> On 21/01, Nir Soffer wrote:
> > On Thu, Jan 21, 2021 at 8:50 AM Konstantin Shalygin 
> wrote:
> > >
> > > I understood, more than the code that works with qemu already exists
> for openstack integration
> >
> > We have code on vdsm and engine to support librbd, but using in cinderlib
> > based volume is not a trivial change.
> >
> > On engine side, this means changing the flow, so instead of attaching
> > a device to a host, engine will configure the xml with network disk,
> using
> > the rbd url, same way as old cinder support was using.
> >
> > To make this work, engine needs to configure the ceph authentication
> > secrets on all hosts in the DC. We have code to do this for old cinder
> storage
> > doman, but it is not used for new cinderlib setup. I'm not sure how easy
> is to
> > use the same mechanism for cinderlib.
>
> Hi,
>
> All the data is in the connection info (including the keyring), so it
> should be possible to implement.
>
> >
> > Generally, we don't want to spend time on special code for ceph, and
> prefer
> > to outsource this to os brick and the kernel, so we have a uniform way to
> > use volumes. But if the special code gives important benefits, we can
> > consider it.
> >
>
> I think think that's reasonable. Having less code to worry about and
> making the project's code base more readable and maintainable is a
> considerable benefit that should not be underestimated.
>
>
> > I think openshift virtualization is using the same solution (kernel
> based rbd)
> > for ceph. An important requirement for us is having an easy way to
> migrate
> > vms from ovirt to openshift virtuations. Using the same ceph
> configuration
> > can make this migration easier.
> >
>
> The Ceph CSI plugin seems to have the possibility of using krbd and
> rbd-nbd [1], but that's something we can also achieve in oVirt by adding
> back the rbd-nbd support in cinderlib without changes to oVirt.
>
> Cheers,
> Gorka.
>
> [1]:
> https://github.com/ceph/ceph-csi/blob/04644c1d5896b493d6aaf9ab66f2302cf67a2ee3/internal/rbd/rbd_attach.go#L35-L41
>
> > I'm also not sure about the future of librbd support in qemu. I know that
> > qemu folks also want to get rid of such code. For example libgfapi
> > (Glsuter native driver) is not maintained and likely to be removed soon.
> >
> > If this feature is important to you, please open RFE for this, and
> explain why
> > it is needed.
> >
> > We can consider it for future 4.4.z release.
> >
> > Adding some storage and qemu folks to get more info on this.
> >
> > Nir
> >
> ___
> Users mailing list -- us...@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/us...@ovirt.org/message/SUXZT47HWHALTYOUF67ALJTMK653SNBO/
>
___
Devel mailing list -- devel@ovirt.org
To unsubscribe send an email to devel-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/devel@ovirt.org/message/3WKB4JRCCBG7RMS7YVKPR6MKASZYM5GG/


[ovirt-devel] Re: [ovirt-users] Re: [ANN] oVirt 4.4.4 is now generally available

2021-01-21 Thread Gorka Eguileor
On 21/01, Nir Soffer wrote:
> On Thu, Jan 21, 2021 at 8:50 AM Konstantin Shalygin  wrote:
> >
> > I understood, more than the code that works with qemu already exists for 
> > openstack integration
>
> We have code on vdsm and engine to support librbd, but using in cinderlib
> based volume is not a trivial change.
>
> On engine side, this means changing the flow, so instead of attaching
> a device to a host, engine will configure the xml with network disk, using
> the rbd url, same way as old cinder support was using.
>
> To make this work, engine needs to configure the ceph authentication
> secrets on all hosts in the DC. We have code to do this for old cinder storage
> doman, but it is not used for new cinderlib setup. I'm not sure how easy is to
> use the same mechanism for cinderlib.

Hi,

All the data is in the connection info (including the keyring), so it
should be possible to implement.

>
> Generally, we don't want to spend time on special code for ceph, and prefer
> to outsource this to os brick and the kernel, so we have a uniform way to
> use volumes. But if the special code gives important benefits, we can
> consider it.
>

I think think that's reasonable. Having less code to worry about and
making the project's code base more readable and maintainable is a
considerable benefit that should not be underestimated.


> I think openshift virtualization is using the same solution (kernel based rbd)
> for ceph. An important requirement for us is having an easy way to migrate
> vms from ovirt to openshift virtuations. Using the same ceph configuration
> can make this migration easier.
>

The Ceph CSI plugin seems to have the possibility of using krbd and
rbd-nbd [1], but that's something we can also achieve in oVirt by adding
back the rbd-nbd support in cinderlib without changes to oVirt.

Cheers,
Gorka.

[1]: 
https://github.com/ceph/ceph-csi/blob/04644c1d5896b493d6aaf9ab66f2302cf67a2ee3/internal/rbd/rbd_attach.go#L35-L41

> I'm also not sure about the future of librbd support in qemu. I know that
> qemu folks also want to get rid of such code. For example libgfapi
> (Glsuter native driver) is not maintained and likely to be removed soon.
>
> If this feature is important to you, please open RFE for this, and explain why
> it is needed.
>
> We can consider it for future 4.4.z release.
>
> Adding some storage and qemu folks to get more info on this.
>
> Nir
>
___
Devel mailing list -- devel@ovirt.org
To unsubscribe send an email to devel-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/devel@ovirt.org/message/SUXZT47HWHALTYOUF67ALJTMK653SNBO/


[ovirt-devel] Re: [ovirt-users] Re: [ANN] oVirt 4.4.4 is now generally available

2021-01-21 Thread Nir Soffer
On Thu, Jan 21, 2021 at 8:50 AM Konstantin Shalygin  wrote:
>
> I understood, more than the code that works with qemu already exists for 
> openstack integration

We have code on vdsm and engine to support librbd, but using in cinderlib
based volume is not a trivial change.

On engine side, this means changing the flow, so instead of attaching
a device to a host, engine will configure the xml with network disk, using
the rbd url, same way as old cinder support was using.

To make this work, engine needs to configure the ceph authentication
secrets on all hosts in the DC. We have code to do this for old cinder storage
doman, but it is not used for new cinderlib setup. I'm not sure how easy is to
use the same mechanism for cinderlib.

Generally, we don't want to spend time on special code for ceph, and prefer
to outsource this to os brick and the kernel, so we have a uniform way to
use volumes. But if the special code gives important benefits, we can
consider it.

I think openshift virtualization is using the same solution (kernel based rbd)
for ceph. An important requirement for us is having an easy way to migrate
vms from ovirt to openshift virtuations. Using the same ceph configuration
can make this migration easier.

I'm also not sure about the future of librbd support in qemu. I know that
qemu folks also want to get rid of such code. For example libgfapi
(Glsuter native driver) is not maintained and likely to be removed soon.

If this feature is important to you, please open RFE for this, and explain why
it is needed.

We can consider it for future 4.4.z release.

Adding some storage and qemu folks to get more info on this.

Nir
___
Devel mailing list -- devel@ovirt.org
To unsubscribe send an email to devel-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/devel@ovirt.org/message/KBJWIHO4TYLHUPPFVKS5LTZRMU454W53/


[ovirt-devel] Re: "Exception: null" after "Check if post tasks file exists" (was: [oVirt Jenkins] ovirt-system-tests_he-basic-suite-master - Build # 1892 - Failure!)

2021-01-21 Thread Yedidyah Bar David
On Thu, Jan 21, 2021 at 11:33 AM Yedidyah Bar David  wrote:
>
> On Thu, Jan 21, 2021 at 11:30 AM Martin Perina  wrote:
> >
> >
> >
> > On Thu, Jan 21, 2021 at 10:05 AM Yedidyah Bar David  wrote:
> >>
> >> Hi all,
> >>
> >> On Thu, Jan 21, 2021 at 4:56 AM  wrote:
> >> >
> >> > Project: 
> >> > https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/
> >> > Build: 
> >> > https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/1892/
> >>
> >> https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/1892/artifact/exported-artifacts/test_logs/he-basic-suite-master/post-he_deploy/lago-he-basic-suite-master-host-0/_var_log/ovirt-hosted-engine-setup/engine-logs-2021-01-21T02%3A10%3A55Z/log/ovirt-engine/engine.log
> >> :
> >>
> >> 2021-01-21 03:25:52,254+01 INFO
> >> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
> >> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
> >> ANSIBLE_RUNNER_EVENT_NOTIFICATION(559), Installing Host
> >> lago-he-basic-suite-master-host-0.lago.local. Check if post tasks file
> >> exists.
> >> 2021-01-21 03:25:52,258+01 ERROR
> >> [org.ovirt.engine.core.common.utils.ansible.AnsibleExecutor]
> >> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] Exception: null
> >> 2021-01-21 03:25:52,296+01 INFO
> >> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
> >> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
> >> ANSIBLE_RUNNER_EVENT_NOTIFICATION(559), Installing Host
> >> lago-he-basic-suite-master-host-0.lago.local. Gather the rpm package
> >> facts.
> >> 2021-01-21 03:25:52,312+01 INFO
> >> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
> >> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
> >> ANSIBLE_RUNNER_EVENT_NOTIFICATION(559), Installing Host
> >> lago-he-basic-suite-master-host-0.lago.local. Check if post tasks file
> >> exists.
> >> 2021-01-21 03:25:52,316+01 ERROR
> >> [org.ovirt.engine.core.bll.hostdeploy.InstallVdsInternalCommand]
> >> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] Host installation
> >> failed for host '736e10b6-0445-4a24-935d-87ba15cae4c4',
> >> 'lago-he-basic-suite-master-host-0.lago.local': null
> >> 2021-01-21 03:25:52,321+01 INFO
> >> [org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand]
> >> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] START,
> >> SetVdsStatusVDSCommand(HostName =
> >> lago-he-basic-suite-master-host-0.lago.local,
> >> SetVdsStatusVDSCommandParameters:{hostId='736e10b6-0445-4a24-935d-87ba15cae4c4',
> >> status='InstallFailed', nonOperationalReason='NONE',
> >> stopSpmFailureLogged='false', maintenanceReason='null'}), log id:
> >> 198cd7e7
> >> 2021-01-21 03:25:52,337+01 INFO
> >> [org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand]
> >> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] FINISH,
> >> SetVdsStatusVDSCommand, return: , log id: 198cd7e7
> >> 2021-01-21 03:25:52,363+01 ERROR
> >> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
> >> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
> >> VDS_INSTALL_FAILED(505), Host
> >> lago-he-basic-suite-master-host-0.lago.local installation failed.
> >> Please refer to /var/log/ovirt-engine/engine.log and log logs under
> >> /var/log/ovirt-engine/host-deploy/ for further details..
> >
> >
> > Hi,
> >
> > I believe this is fixed in ovirt-engine-4.4.5.2, where we reverted 
> > https://gerrit.ovirt.org/c/ovirt-engine/+/113106/
>
> But the error yesterday was different (with a stack trace), anything changed?
>
> > Could you please retry with this version?
>
> Will now build an appliance, then ost-images, he-basic-suite... ok.

Sorry, I am talking nonsense.

hosted-engine --deploy also by default updates all packages. So I just
now ran it again and hope for good.

BTW, current engine in master-snapshot repo matches exactly your
revert patch - does not include later
ones (including building 4.4.5.2 etc.).

I also checked the timing a bit, and let's just say that jenkins is a
bit slow... Tal merged your patch
in the evening, build job started only 2.5 hours later, and took
another hour. Probably loaded.

>
> >
> > Thanks,
> > Martin
> >>
> >>
> >> https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/1892/artifact/exported-artifacts/test_logs/he-basic-suite-master/post-he_deploy/lago-he-basic-suite-master-host-0/_var_log/ovirt-hosted-engine-setup/engine-logs-2021-01-21T02%3A10%3A55Z/log/ovirt-engine/host-deploy/ovirt-host-deploy-ansible-20210121032324-lago-he-basic-suite-master-host-0.lago.local-6668b493.log
> >> ends with:
> >>
> >> 2021-01-21 03:25:52 CET - TASK [Executing post tasks defined by user]
> >> 
> >>
> >> Any idea?
> >>
> >> Best regards,
> >>
> >> > Build Number: 1892
> >> > Build Status:  Failure
> >> > Triggered By: Started by timer
> >> >
> >> > -
> >> > Changes Since Last 

[ovirt-devel] Re: "Exception: null" after "Check if post tasks file exists" (was: [oVirt Jenkins] ovirt-system-tests_he-basic-suite-master - Build # 1892 - Failure!)

2021-01-21 Thread Yedidyah Bar David
On Thu, Jan 21, 2021 at 11:30 AM Martin Perina  wrote:
>
>
>
> On Thu, Jan 21, 2021 at 10:05 AM Yedidyah Bar David  wrote:
>>
>> Hi all,
>>
>> On Thu, Jan 21, 2021 at 4:56 AM  wrote:
>> >
>> > Project: 
>> > https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/
>> > Build: 
>> > https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/1892/
>>
>> https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/1892/artifact/exported-artifacts/test_logs/he-basic-suite-master/post-he_deploy/lago-he-basic-suite-master-host-0/_var_log/ovirt-hosted-engine-setup/engine-logs-2021-01-21T02%3A10%3A55Z/log/ovirt-engine/engine.log
>> :
>>
>> 2021-01-21 03:25:52,254+01 INFO
>> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
>> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
>> ANSIBLE_RUNNER_EVENT_NOTIFICATION(559), Installing Host
>> lago-he-basic-suite-master-host-0.lago.local. Check if post tasks file
>> exists.
>> 2021-01-21 03:25:52,258+01 ERROR
>> [org.ovirt.engine.core.common.utils.ansible.AnsibleExecutor]
>> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] Exception: null
>> 2021-01-21 03:25:52,296+01 INFO
>> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
>> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
>> ANSIBLE_RUNNER_EVENT_NOTIFICATION(559), Installing Host
>> lago-he-basic-suite-master-host-0.lago.local. Gather the rpm package
>> facts.
>> 2021-01-21 03:25:52,312+01 INFO
>> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
>> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
>> ANSIBLE_RUNNER_EVENT_NOTIFICATION(559), Installing Host
>> lago-he-basic-suite-master-host-0.lago.local. Check if post tasks file
>> exists.
>> 2021-01-21 03:25:52,316+01 ERROR
>> [org.ovirt.engine.core.bll.hostdeploy.InstallVdsInternalCommand]
>> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] Host installation
>> failed for host '736e10b6-0445-4a24-935d-87ba15cae4c4',
>> 'lago-he-basic-suite-master-host-0.lago.local': null
>> 2021-01-21 03:25:52,321+01 INFO
>> [org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand]
>> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] START,
>> SetVdsStatusVDSCommand(HostName =
>> lago-he-basic-suite-master-host-0.lago.local,
>> SetVdsStatusVDSCommandParameters:{hostId='736e10b6-0445-4a24-935d-87ba15cae4c4',
>> status='InstallFailed', nonOperationalReason='NONE',
>> stopSpmFailureLogged='false', maintenanceReason='null'}), log id:
>> 198cd7e7
>> 2021-01-21 03:25:52,337+01 INFO
>> [org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand]
>> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] FINISH,
>> SetVdsStatusVDSCommand, return: , log id: 198cd7e7
>> 2021-01-21 03:25:52,363+01 ERROR
>> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
>> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
>> VDS_INSTALL_FAILED(505), Host
>> lago-he-basic-suite-master-host-0.lago.local installation failed.
>> Please refer to /var/log/ovirt-engine/engine.log and log logs under
>> /var/log/ovirt-engine/host-deploy/ for further details..
>
>
> Hi,
>
> I believe this is fixed in ovirt-engine-4.4.5.2, where we reverted 
> https://gerrit.ovirt.org/c/ovirt-engine/+/113106/

But the error yesterday was different (with a stack trace), anything changed?

> Could you please retry with this version?

Will now build an appliance, then ost-images, he-basic-suite... ok.

>
> Thanks,
> Martin
>>
>>
>> https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/1892/artifact/exported-artifacts/test_logs/he-basic-suite-master/post-he_deploy/lago-he-basic-suite-master-host-0/_var_log/ovirt-hosted-engine-setup/engine-logs-2021-01-21T02%3A10%3A55Z/log/ovirt-engine/host-deploy/ovirt-host-deploy-ansible-20210121032324-lago-he-basic-suite-master-host-0.lago.local-6668b493.log
>> ends with:
>>
>> 2021-01-21 03:25:52 CET - TASK [Executing post tasks defined by user]
>> 
>>
>> Any idea?
>>
>> Best regards,
>>
>> > Build Number: 1892
>> > Build Status:  Failure
>> > Triggered By: Started by timer
>> >
>> > -
>> > Changes Since Last Success:
>> > -
>> > Changes for Build #1892
>> > [Andrej Cernek] pylint: Fix searched directories
>> >
>> >
>> >
>> >
>> > -
>> > Failed Tests:
>> > -
>> > No tests ran.
>>
>>
>>
>> --
>> Didi
>> ___
>> Devel mailing list -- devel@ovirt.org
>> To unsubscribe send an email to devel-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/devel@ovirt.org/message/AYDSICFES72F6SPX7QNK2DWYMCGXMFP2/
>
>
>
> --
> Martin Perina
> Manager, Software Engineering
> 

[ovirt-devel] Re: "Exception: null" after "Check if post tasks file exists" (was: [oVirt Jenkins] ovirt-system-tests_he-basic-suite-master - Build # 1892 - Failure!)

2021-01-21 Thread Martin Perina
On Thu, Jan 21, 2021 at 10:05 AM Yedidyah Bar David  wrote:

> Hi all,
>
> On Thu, Jan 21, 2021 at 4:56 AM  wrote:
> >
> > Project:
> https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/
> > Build:
> https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/1892/
>
>
> https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/1892/artifact/exported-artifacts/test_logs/he-basic-suite-master/post-he_deploy/lago-he-basic-suite-master-host-0/_var_log/ovirt-hosted-engine-setup/engine-logs-2021-01-21T02%3A10%3A55Z/log/ovirt-engine/engine.log
> :
>
> 2021-01-21 03:25:52,254+01 INFO
> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
> ANSIBLE_RUNNER_EVENT_NOTIFICATION(559), Installing Host
> lago-he-basic-suite-master-host-0.lago.local. Check if post tasks file
> exists.
> 2021-01-21 03:25:52,258+01 ERROR
> [org.ovirt.engine.core.common.utils.ansible.AnsibleExecutor]
> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] Exception: null
> 2021-01-21 03:25:52,296+01 INFO
> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
> ANSIBLE_RUNNER_EVENT_NOTIFICATION(559), Installing Host
> lago-he-basic-suite-master-host-0.lago.local. Gather the rpm package
> facts.
> 2021-01-21 03:25:52,312+01 INFO
> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
> ANSIBLE_RUNNER_EVENT_NOTIFICATION(559), Installing Host
> lago-he-basic-suite-master-host-0.lago.local. Check if post tasks file
> exists.
> 2021-01-21 03:25:52,316+01 ERROR
> [org.ovirt.engine.core.bll.hostdeploy.InstallVdsInternalCommand]
> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] Host installation
> failed for host '736e10b6-0445-4a24-935d-87ba15cae4c4',
> 'lago-he-basic-suite-master-host-0.lago.local': null
> 2021-01-21 03:25:52,321+01 INFO
> [org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand]
> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] START,
> SetVdsStatusVDSCommand(HostName =
> lago-he-basic-suite-master-host-0.lago.local,
>
> SetVdsStatusVDSCommandParameters:{hostId='736e10b6-0445-4a24-935d-87ba15cae4c4',
> status='InstallFailed', nonOperationalReason='NONE',
> stopSpmFailureLogged='false', maintenanceReason='null'}), log id:
> 198cd7e7
> 2021-01-21 03:25:52,337+01 INFO
> [org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand]
> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] FINISH,
> SetVdsStatusVDSCommand, return: , log id: 198cd7e7
> 2021-01-21 03:25:52,363+01 ERROR
> [org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
> (EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
> VDS_INSTALL_FAILED(505), Host
> lago-he-basic-suite-master-host-0.lago.local installation failed.
> Please refer to /var/log/ovirt-engine/engine.log and log logs under
> /var/log/ovirt-engine/host-deploy/ for further details..
>

Hi,

I believe this is fixed in ovirt-engine-4.4.5.2, where we reverted
https://gerrit.ovirt.org/c/ovirt-engine/+/113106/
Could you please retry with this version?

Thanks,
Martin

>
>
> https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/1892/artifact/exported-artifacts/test_logs/he-basic-suite-master/post-he_deploy/lago-he-basic-suite-master-host-0/_var_log/ovirt-hosted-engine-setup/engine-logs-2021-01-21T02%3A10%3A55Z/log/ovirt-engine/host-deploy/ovirt-host-deploy-ansible-20210121032324-lago-he-basic-suite-master-host-0.lago.local-6668b493.log
> ends with:
>
> 2021-01-21 03:25:52 CET - TASK [Executing post tasks defined by user]
> 
>
> Any idea?
>
> Best regards,
>
> > Build Number: 1892
> > Build Status:  Failure
> > Triggered By: Started by timer
> >
> > -
> > Changes Since Last Success:
> > -
> > Changes for Build #1892
> > [Andrej Cernek] pylint: Fix searched directories
> >
> >
> >
> >
> > -
> > Failed Tests:
> > -
> > No tests ran.
>
>
>
> --
> Didi
> ___
> Devel mailing list -- devel@ovirt.org
> To unsubscribe send an email to devel-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/devel@ovirt.org/message/AYDSICFES72F6SPX7QNK2DWYMCGXMFP2/
>


-- 
Martin Perina
Manager, Software Engineering
Red Hat Czech s.r.o.
___
Devel mailing list -- devel@ovirt.org
To unsubscribe send an email to devel-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: 

[ovirt-devel] "Exception: null" after "Check if post tasks file exists" (was: [oVirt Jenkins] ovirt-system-tests_he-basic-suite-master - Build # 1892 - Failure!)

2021-01-21 Thread Yedidyah Bar David
Hi all,

On Thu, Jan 21, 2021 at 4:56 AM  wrote:
>
> Project: 
> https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/
> Build: 
> https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/1892/

https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/1892/artifact/exported-artifacts/test_logs/he-basic-suite-master/post-he_deploy/lago-he-basic-suite-master-host-0/_var_log/ovirt-hosted-engine-setup/engine-logs-2021-01-21T02%3A10%3A55Z/log/ovirt-engine/engine.log
:

2021-01-21 03:25:52,254+01 INFO
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
(EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
ANSIBLE_RUNNER_EVENT_NOTIFICATION(559), Installing Host
lago-he-basic-suite-master-host-0.lago.local. Check if post tasks file
exists.
2021-01-21 03:25:52,258+01 ERROR
[org.ovirt.engine.core.common.utils.ansible.AnsibleExecutor]
(EE-ManagedThreadFactory-engine-Thread-1) [6668b493] Exception: null
2021-01-21 03:25:52,296+01 INFO
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
(EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
ANSIBLE_RUNNER_EVENT_NOTIFICATION(559), Installing Host
lago-he-basic-suite-master-host-0.lago.local. Gather the rpm package
facts.
2021-01-21 03:25:52,312+01 INFO
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
(EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
ANSIBLE_RUNNER_EVENT_NOTIFICATION(559), Installing Host
lago-he-basic-suite-master-host-0.lago.local. Check if post tasks file
exists.
2021-01-21 03:25:52,316+01 ERROR
[org.ovirt.engine.core.bll.hostdeploy.InstallVdsInternalCommand]
(EE-ManagedThreadFactory-engine-Thread-1) [6668b493] Host installation
failed for host '736e10b6-0445-4a24-935d-87ba15cae4c4',
'lago-he-basic-suite-master-host-0.lago.local': null
2021-01-21 03:25:52,321+01 INFO
[org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand]
(EE-ManagedThreadFactory-engine-Thread-1) [6668b493] START,
SetVdsStatusVDSCommand(HostName =
lago-he-basic-suite-master-host-0.lago.local,
SetVdsStatusVDSCommandParameters:{hostId='736e10b6-0445-4a24-935d-87ba15cae4c4',
status='InstallFailed', nonOperationalReason='NONE',
stopSpmFailureLogged='false', maintenanceReason='null'}), log id:
198cd7e7
2021-01-21 03:25:52,337+01 INFO
[org.ovirt.engine.core.vdsbroker.SetVdsStatusVDSCommand]
(EE-ManagedThreadFactory-engine-Thread-1) [6668b493] FINISH,
SetVdsStatusVDSCommand, return: , log id: 198cd7e7
2021-01-21 03:25:52,363+01 ERROR
[org.ovirt.engine.core.dal.dbbroker.auditloghandling.AuditLogDirector]
(EE-ManagedThreadFactory-engine-Thread-1) [6668b493] EVENT_ID:
VDS_INSTALL_FAILED(505), Host
lago-he-basic-suite-master-host-0.lago.local installation failed.
Please refer to /var/log/ovirt-engine/engine.log and log logs under
/var/log/ovirt-engine/host-deploy/ for further details..

https://jenkins.ovirt.org/job/ovirt-system-tests_he-basic-suite-master/1892/artifact/exported-artifacts/test_logs/he-basic-suite-master/post-he_deploy/lago-he-basic-suite-master-host-0/_var_log/ovirt-hosted-engine-setup/engine-logs-2021-01-21T02%3A10%3A55Z/log/ovirt-engine/host-deploy/ovirt-host-deploy-ansible-20210121032324-lago-he-basic-suite-master-host-0.lago.local-6668b493.log
ends with:

2021-01-21 03:25:52 CET - TASK [Executing post tasks defined by user]


Any idea?

Best regards,

> Build Number: 1892
> Build Status:  Failure
> Triggered By: Started by timer
>
> -
> Changes Since Last Success:
> -
> Changes for Build #1892
> [Andrej Cernek] pylint: Fix searched directories
>
>
>
>
> -
> Failed Tests:
> -
> No tests ran.



-- 
Didi
___
Devel mailing list -- devel@ovirt.org
To unsubscribe send an email to devel-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/devel@ovirt.org/message/AYDSICFES72F6SPX7QNK2DWYMCGXMFP2/