[ovirt-devel] Re: [Blocker] master builds with lower NVR than 4.3 builds

2019-11-22 Thread Martin Perina
Ori, could you please fix and release latest Python SDK for 4.4?

On Fri, Nov 22, 2019 at 11:45 PM Sandro Bonazzola 
wrote:

> ovirt-engine-sdk master has a lower version than the one shipped in 4.3.
>
> Current master a1e1067 from https://gerrit.ovirt.org/#/c/104083/
>  generated:
> python-ovirt-engine-sdk4-4.3.1-2.20191015gita1e1067.el7.x86_64.rpm
> in https://jenkins.ovirt.org/job/ovirt-engine-sdk_standard-on-merge/8/
>
> while latest released build (in 4.3.5) is: python-ovirt-engine-sdk4-4.3.2-1
>
> Action item for all maintainers: please go over your packages and ensure
> the master branch has a newer version than the one shipped in 4.3 branch.
>
> Thanks
>
> --
>
> 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/site/privacy-policy/
> oVirt Code of Conduct:
> https://www.ovirt.org/community/about/community-guidelines/
> List Archives:
> https://lists.ovirt.org/archives/list/devel@ovirt.org/message/NVDG3E65WOZI5GXMHDDN3TQCKV676S6O/
>


-- 
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/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/devel@ovirt.org/message/ETJPOMPNFHNO5C4BGW2W7KD5UANJJPTV/


[ovirt-devel] [Blocker] master builds with lower NVR than 4.3 builds

2019-11-22 Thread Sandro Bonazzola
ovirt-engine-sdk master has a lower version than the one shipped in 4.3.

Current master a1e1067 from https://gerrit.ovirt.org/#/c/104083/ generated:
python-ovirt-engine-sdk4-4.3.1-2.20191015gita1e1067.el7.x86_64.rpm
in https://jenkins.ovirt.org/job/ovirt-engine-sdk_standard-on-merge/8/

while latest released build (in 4.3.5) is: python-ovirt-engine-sdk4-4.3.2-1

Action item for all maintainers: please go over your packages and ensure
the master branch has a newer version than the one shipped in 4.3 branch.

Thanks

-- 

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/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/devel@ovirt.org/message/NVDG3E65WOZI5GXMHDDN3TQCKV676S6O/


[ovirt-devel] unit tests, surefire and spotbugs tests on ovirt-engine at check-patch stage

2019-11-22 Thread Sandro Bonazzola
Hi,
looking at ovirt-engine CI automation scripts, I see:

export EXTRA_BUILD_FLAGS="-gs $MAVEN_SETTINGS \
-Dovirt.surefire.reportsDirectory=${PWD}/exported-artifacts/tests \
"

But looking at exported data, there's no exported-artifacts/tests directory.

Looking at build execution I see:

[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @
ovirt-findbugs-filters ---
[INFO] Tests are skipped.

...

[INFO] --- maven-surefire-plugin:2.22.0:test (default-test) @ checkstyles ---
[INFO] Tests are skipped.

and so on.
This is due to the build happening with
RPM_BUILD_MODE="ovirt_build_quick"
which cause the setting of  %global _ovirt_build_ut 0
which set BUILD_UT=0
which skip all tests due to:

ifeq ($(BUILD_UT),0)
BUILD_FLAGS:=$(BUILD_FLAGS) -D skipTests
endif

Also, check patch has:
# Since spotbugs is a pure java task, there's no reason to run it on
multiple
# platforms.
# Spotbugs currently has false negatives using mvn 3.5.0, which is the
currnt centos version from SCL (rh-maven35).
# We will work with the Fedora version meanwhile which has maven 3.5.4 and
is known to work.
if [[ "$STD_CI_DISTRO" =~ "fc" ]]; then
source automation/spotbugs.sh
fi

so spotbugs is executed only on Fedora but then:

if [[ "$STD_CI_DISTRO" = "el7" ]]; then
# Collect any mvn spotbugs artifacts
mkdir -p exported-artifacts/find-bugs
find * -name "*spotbugs.xml" -o -name "spotbugsXml.xml" | \
while read source_file; do
destination_file=$(
sed -e 's#/#-#g' -e 's#\(.*\)-#\1.#' <<< "$source_file"
)
mv $source_file exported-artifacts/find-bugs/"$destination_file"
done
mv ./*tar.gz exported-artifacts/
fi

so assuming we re-enable tests there, results are collected only on el7
meaning we are never getting results of this test.

Can we decide what we really want check-patch to do?
Either we want test results and we should enable proper build including
tests or we should drop all of this broken test result collection code.

-- 

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/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/devel@ovirt.org/message/IVMUHOQ7BHN43P7CNAEV735NNCLATJB7/


[ovirt-devel] Re: gathering builds for oVirt 4.4.0 Alpha release

2019-11-22 Thread Sandro Bonazzola
Il giorno ven 22 nov 2019 alle ore 19:17 Nir Soffer  ha
scritto:

> For ioprocess we should included 1.4.0:
> https://gerrit.ovirt.org/c/104940
>
> Hopefully it will be merged early next week.
>

Thanks, I'll keep this under my radar.



>
> On Thu, Nov 21, 2019 at 4:29 PM Sandro Bonazzola 
> wrote:
>
>> While waiting for CentOS Linux 8.1 to be released, we are now preparing
>> an alpha compose that will be made available on top of CentOS Linux 8.0.
>> I'm starting gathering the builds to be included in the alpha release
>> with the first commit here: https://gerrit.ovirt.org/#/c/104880/
>> If you want a specific version to be included in alpha please push a
>> patch updating the release configuration file.
>> For needed packages that won't be included in the release file, latest
>> build passing CI tests will be included in the compose.
>>
>> Thanks,
>> --
>>
>> 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/site/privacy-policy/
>> oVirt Code of Conduct:
>> https://www.ovirt.org/community/about/community-guidelines/
>> List Archives:
>> https://lists.ovirt.org/archives/list/devel@ovirt.org/message/ASUCLLCCSKUCUAY3LRNLBE55YQ3O3XG7/
>>
>

-- 

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/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/devel@ovirt.org/message/CZMFHMZHUPGRSXRDG4YZV5PFHUGVTURV/


[ovirt-devel] Re: ovirt-engine - check-patch and build-artifacts diverged

2019-11-22 Thread Sandro Bonazzola
Il giorno ven 22 nov 2019 alle ore 21:02 Sandro Bonazzola <
sbona...@redhat.com> ha scritto:

> Hi,
> just noticed that over time check-patch and build-artifacts script
> diverged significantly.
> Due to this, check-patch passed on fc30 but failed after merge on
> build-artifacts.
> I'm fixing the immediate failure but a deeper review from java developers
> would be helpful.
>
>
with a deeper look, also check-merged diverged. This definitely needs a
review.


> Thanks,
> --
>
> 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.*
>


-- 

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/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/devel@ovirt.org/message/MYBQPNDET44BJRYZMYGZ2MVANESVXRLD/


[ovirt-devel] ovirt-engine - check-patch and build-artifacts diverged

2019-11-22 Thread Sandro Bonazzola
Hi,
just noticed that over time check-patch and build-artifacts script diverged
significantly.
Due to this, check-patch passed on fc30 but failed after merge on
build-artifacts.
I'm fixing the immediate failure but a deeper review from java developers
would be helpful.

Thanks,
-- 

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/site/privacy-policy/
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/devel@ovirt.org/message/PTDDGPL47MXKTHRJD2LMR7NOSTRVPFVP/


[ovirt-devel] Re: OST fails, nothing provides nmstate

2019-11-22 Thread Dominik Holler
On Fri, Nov 22, 2019 at 5:54 PM Dominik Holler  wrote:

>
>
> On Fri, Nov 22, 2019 at 5:48 PM Nir Soffer  wrote:
>
>>
>>
>> On Fri, Nov 22, 2019, 18:18 Marcin Sobczyk  wrote:
>>
>>>
>>>
>>> On 11/22/19 4:54 PM, Martin Perina wrote:
>>>
>>>
>>>
>>> On Fri, Nov 22, 2019 at 4:43 PM Dominik Holler 
>>> wrote:
>>>

 On Fri, Nov 22, 2019 at 12:17 PM Dominik Holler 
 wrote:

>
>
> On Fri, Nov 22, 2019 at 12:00 PM Miguel Duarte de Mora Barroso <
> mdbarr...@redhat.com> wrote:
>
>> On Fri, Nov 22, 2019 at 11:54 AM Vojtech Juranek 
>> wrote:
>> >
>> > On pátek 22. listopadu 2019 9:56:56 CET Miguel Duarte de Mora
>> Barroso wrote:
>> > > On Fri, Nov 22, 2019 at 9:49 AM Vojtech Juranek <
>> vjura...@redhat.com>
>> > > wrote:
>> > > >
>> > > >
>> > > > On pátek 22. listopadu 2019 9:41:26 CET Dominik Holler wrote:
>> > > >
>> > > > > On Fri, Nov 22, 2019 at 8:40 AM Dominik Holler <
>> dhol...@redhat.com>
>> > > > > wrote:
>> > > > >
>> > > > > > On Thu, Nov 21, 2019 at 10:54 PM Nir Soffer <
>> nsof...@redhat.com>
>> > > > > > wrote:
>> > > > > >
>> > > > > >> On Thu, Nov 21, 2019 at 11:24 PM Vojtech Juranek
>> > > > > >> 
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> wrote:
>> > > > > >>
>> > > > > >> > Hi,
>> > > > > >> > OST fails (see e.g. [1]) in
>> 002_bootstrap.check_update_host. It
>> > > > > >> > fails
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> with
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> >  FAILED! => {"changed": false, "failures": [], "msg":
>> "Depsolve
>> > > > > >> >  Error
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> occured:
>> > > > > >>
>> > > > > >> > \n Problem 1: cannot install the best update candidate
>> for package
>> > > > > >> > vdsm-
>> > > > > >> > network-4.40.0-1236.git63ea8cb8b.el8.x86_64\n  - nothing
>> provides
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> nmstate
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> > needed by
>> vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
>> > > > > >> > Problem 2:
>> > > > > >> > package vdsm-python-4.40.0-1271.git524e08c8a.el8.noarch
>> requires
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> vdsm-network
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> > = 4.40.0-1271.git524e08c8a.el8, but none of the
>> providers can be
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> installed\n
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> > - cannot install the best update candidate for package
>> vdsm-
>> > > > > >> > python-4.40.0-1236.git63ea8cb8b.el8.noarch\n  - nothing
>> provides
>> > > > > >> > nmstate
>> > > > > >> > needed by
>> vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> nmstate should be provided by copr repo enabled by
>> > > > > >> ovirt-release-master.
>> > > > > >
>> > > > > >
>> > > > > >
>> > > > > > I re-triggered as
>> > > > > >
>> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6131
>> > > > > > maybe
>> > > > > > https://gerrit.ovirt.org/#/c/104825/
>> > > > > > was missing
>> > > > >
>> > > > >
>> > > > >
>> > > > > Looks like
>> > > > > https://gerrit.ovirt.org/#/c/104825/ is ignored by OST.
>> > > >
>> > > >
>> > > >
>> > > > maybe not. You re-triggered with [1], which really missed this
>> patch.
>> > > > I did a rebase and now running with this patch in build #6132
>> [2]. Let's
>> > > > wait
>> >  for it to see if gerrit #104825 helps.
>> > > >
>> > > >
>> > > >
>> > > > [1] https://jenkins.ovirt.org/job/standard-manual-runner/909/
>> > > > [2]
>> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6132/
>> > > >
>> > > >
>> > > >
>> > > > > Miguel, do you think merging
>> > > > >
>> > > > >
>> > > > >
>> > > > >
>> https://gerrit.ovirt.org/#/c/104495/15/common/yum-repos/ovirt-master-hos
>> > > > > t-cq
>> >  .repo.in
>> > > > >
>> > > > >
>> > > > >
>> > > > > would solve this?
>> > >
>> > >
>> > > I've split the patch Dominik mentions above in two, one of them
>> adding
>> > > the nmstate / networkmanager copr repos - [3].
>> > >
>> > > Let's see if it fixes it.
>> >
>> > it fixes original issue, but OST still fails in
>> > 098_ovirt_provider_ovn.use_ovn_provider:
>> >
>> > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6134
>>
>> I think Dominik was looking into this issue; +Dominik Holler please
>> confirm.
>>
>> Let 

[ovirt-devel] Re: gathering builds for oVirt 4.4.0 Alpha release

2019-11-22 Thread Nir Soffer
For ioprocess we should included 1.4.0:
https://gerrit.ovirt.org/c/104940

Hopefully it will be merged early next week.

On Thu, Nov 21, 2019 at 4:29 PM Sandro Bonazzola 
wrote:

> While waiting for CentOS Linux 8.1 to be released, we are now preparing an
> alpha compose that will be made available on top of CentOS Linux 8.0.
> I'm starting gathering the builds to be included in the alpha release with
> the first commit here: https://gerrit.ovirt.org/#/c/104880/
> If you want a specific version to be included in alpha please push a
> patch updating the release configuration file.
> For needed packages that won't be included in the release file, latest
> build passing CI tests will be included in the compose.
>
> Thanks,
> --
>
> 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/site/privacy-policy/
> oVirt Code of Conduct:
> https://www.ovirt.org/community/about/community-guidelines/
> List Archives:
> https://lists.ovirt.org/archives/list/devel@ovirt.org/message/ASUCLLCCSKUCUAY3LRNLBE55YQ3O3XG7/
>
___
Devel mailing list -- devel@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/devel@ovirt.org/message/BTRP6TLFXDCSXJ5RWHGWPKYZILWGOZUY/


[ovirt-devel] Re: OST fails, nothing provides nmstate

2019-11-22 Thread Dominik Holler
On Fri, Nov 22, 2019 at 5:48 PM Nir Soffer  wrote:

>
>
> On Fri, Nov 22, 2019, 18:18 Marcin Sobczyk  wrote:
>
>>
>>
>> On 11/22/19 4:54 PM, Martin Perina wrote:
>>
>>
>>
>> On Fri, Nov 22, 2019 at 4:43 PM Dominik Holler 
>> wrote:
>>
>>>
>>> On Fri, Nov 22, 2019 at 12:17 PM Dominik Holler 
>>> wrote:
>>>


 On Fri, Nov 22, 2019 at 12:00 PM Miguel Duarte de Mora Barroso <
 mdbarr...@redhat.com> wrote:

> On Fri, Nov 22, 2019 at 11:54 AM Vojtech Juranek 
> wrote:
> >
> > On pátek 22. listopadu 2019 9:56:56 CET Miguel Duarte de Mora
> Barroso wrote:
> > > On Fri, Nov 22, 2019 at 9:49 AM Vojtech Juranek <
> vjura...@redhat.com>
> > > wrote:
> > > >
> > > >
> > > > On pátek 22. listopadu 2019 9:41:26 CET Dominik Holler wrote:
> > > >
> > > > > On Fri, Nov 22, 2019 at 8:40 AM Dominik Holler <
> dhol...@redhat.com>
> > > > > wrote:
> > > > >
> > > > > > On Thu, Nov 21, 2019 at 10:54 PM Nir Soffer <
> nsof...@redhat.com>
> > > > > > wrote:
> > > > > >
> > > > > >> On Thu, Nov 21, 2019 at 11:24 PM Vojtech Juranek
> > > > > >> 
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> wrote:
> > > > > >>
> > > > > >> > Hi,
> > > > > >> > OST fails (see e.g. [1]) in
> 002_bootstrap.check_update_host. It
> > > > > >> > fails
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> with
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> >  FAILED! => {"changed": false, "failures": [], "msg":
> "Depsolve
> > > > > >> >  Error
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> occured:
> > > > > >>
> > > > > >> > \n Problem 1: cannot install the best update candidate
> for package
> > > > > >> > vdsm-
> > > > > >> > network-4.40.0-1236.git63ea8cb8b.el8.x86_64\n  - nothing
> provides
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> nmstate
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> > needed by
> vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
> > > > > >> > Problem 2:
> > > > > >> > package vdsm-python-4.40.0-1271.git524e08c8a.el8.noarch
> requires
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> vdsm-network
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> > = 4.40.0-1271.git524e08c8a.el8, but none of the providers
> can be
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> installed\n
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> > - cannot install the best update candidate for package
> vdsm-
> > > > > >> > python-4.40.0-1236.git63ea8cb8b.el8.noarch\n  - nothing
> provides
> > > > > >> > nmstate
> > > > > >> > needed by
> vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> nmstate should be provided by copr repo enabled by
> > > > > >> ovirt-release-master.
> > > > > >
> > > > > >
> > > > > >
> > > > > > I re-triggered as
> > > > > > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6131
> > > > > > maybe
> > > > > > https://gerrit.ovirt.org/#/c/104825/
> > > > > > was missing
> > > > >
> > > > >
> > > > >
> > > > > Looks like
> > > > > https://gerrit.ovirt.org/#/c/104825/ is ignored by OST.
> > > >
> > > >
> > > >
> > > > maybe not. You re-triggered with [1], which really missed this
> patch.
> > > > I did a rebase and now running with this patch in build #6132
> [2]. Let's
> > > > wait
> >  for it to see if gerrit #104825 helps.
> > > >
> > > >
> > > >
> > > > [1] https://jenkins.ovirt.org/job/standard-manual-runner/909/
> > > > [2]
> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6132/
> > > >
> > > >
> > > >
> > > > > Miguel, do you think merging
> > > > >
> > > > >
> > > > >
> > > > >
> https://gerrit.ovirt.org/#/c/104495/15/common/yum-repos/ovirt-master-hos
> > > > > t-cq
> >  .repo.in
> > > > >
> > > > >
> > > > >
> > > > > would solve this?
> > >
> > >
> > > I've split the patch Dominik mentions above in two, one of them
> adding
> > > the nmstate / networkmanager copr repos - [3].
> > >
> > > Let's see if it fixes it.
> >
> > it fixes original issue, but OST still fails in
> > 098_ovirt_provider_ovn.use_ovn_provider:
> >
> > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6134
>
> I think Dominik was looking into this issue; +Dominik Holler please
> confirm.
>
> Let me know if you need any help Dominik.
>


 Thanks.
 The problem is that the hosts lost connection to storage:

 

[ovirt-devel] Re: OST fails, nothing provides nmstate

2019-11-22 Thread Nir Soffer
On Fri, Nov 22, 2019, 18:18 Marcin Sobczyk  wrote:

>
>
> On 11/22/19 4:54 PM, Martin Perina wrote:
>
>
>
> On Fri, Nov 22, 2019 at 4:43 PM Dominik Holler  wrote:
>
>>
>> On Fri, Nov 22, 2019 at 12:17 PM Dominik Holler 
>> wrote:
>>
>>>
>>>
>>> On Fri, Nov 22, 2019 at 12:00 PM Miguel Duarte de Mora Barroso <
>>> mdbarr...@redhat.com> wrote:
>>>
 On Fri, Nov 22, 2019 at 11:54 AM Vojtech Juranek 
 wrote:
 >
 > On pátek 22. listopadu 2019 9:56:56 CET Miguel Duarte de Mora Barroso
 wrote:
 > > On Fri, Nov 22, 2019 at 9:49 AM Vojtech Juranek <
 vjura...@redhat.com>
 > > wrote:
 > > >
 > > >
 > > > On pátek 22. listopadu 2019 9:41:26 CET Dominik Holler wrote:
 > > >
 > > > > On Fri, Nov 22, 2019 at 8:40 AM Dominik Holler <
 dhol...@redhat.com>
 > > > > wrote:
 > > > >
 > > > > > On Thu, Nov 21, 2019 at 10:54 PM Nir Soffer <
 nsof...@redhat.com>
 > > > > > wrote:
 > > > > >
 > > > > >> On Thu, Nov 21, 2019 at 11:24 PM Vojtech Juranek
 > > > > >> 
 > > > > >>
 > > > > >>
 > > > > >>
 > > > > >> wrote:
 > > > > >>
 > > > > >> > Hi,
 > > > > >> > OST fails (see e.g. [1]) in
 002_bootstrap.check_update_host. It
 > > > > >> > fails
 > > > > >>
 > > > > >>
 > > > > >>
 > > > > >> with
 > > > > >>
 > > > > >>
 > > > > >>
 > > > > >> >  FAILED! => {"changed": false, "failures": [], "msg":
 "Depsolve
 > > > > >> >  Error
 > > > > >>
 > > > > >>
 > > > > >>
 > > > > >> occured:
 > > > > >>
 > > > > >> > \n Problem 1: cannot install the best update candidate for
 package
 > > > > >> > vdsm-
 > > > > >> > network-4.40.0-1236.git63ea8cb8b.el8.x86_64\n  - nothing
 provides
 > > > > >>
 > > > > >>
 > > > > >>
 > > > > >> nmstate
 > > > > >>
 > > > > >>
 > > > > >>
 > > > > >> > needed by
 vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
 > > > > >> > Problem 2:
 > > > > >> > package vdsm-python-4.40.0-1271.git524e08c8a.el8.noarch
 requires
 > > > > >>
 > > > > >>
 > > > > >>
 > > > > >> vdsm-network
 > > > > >>
 > > > > >>
 > > > > >>
 > > > > >> > = 4.40.0-1271.git524e08c8a.el8, but none of the providers
 can be
 > > > > >>
 > > > > >>
 > > > > >>
 > > > > >> installed\n
 > > > > >>
 > > > > >>
 > > > > >>
 > > > > >> > - cannot install the best update candidate for package
 vdsm-
 > > > > >> > python-4.40.0-1236.git63ea8cb8b.el8.noarch\n  - nothing
 provides
 > > > > >> > nmstate
 > > > > >> > needed by
 vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
 > > > > >>
 > > > > >>
 > > > > >>
 > > > > >> nmstate should be provided by copr repo enabled by
 > > > > >> ovirt-release-master.
 > > > > >
 > > > > >
 > > > > >
 > > > > > I re-triggered as
 > > > > > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6131
 > > > > > maybe
 > > > > > https://gerrit.ovirt.org/#/c/104825/
 > > > > > was missing
 > > > >
 > > > >
 > > > >
 > > > > Looks like
 > > > > https://gerrit.ovirt.org/#/c/104825/ is ignored by OST.
 > > >
 > > >
 > > >
 > > > maybe not. You re-triggered with [1], which really missed this
 patch.
 > > > I did a rebase and now running with this patch in build #6132
 [2]. Let's
 > > > wait
 >  for it to see if gerrit #104825 helps.
 > > >
 > > >
 > > >
 > > > [1] https://jenkins.ovirt.org/job/standard-manual-runner/909/
 > > > [2] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6132/
 > > >
 > > >
 > > >
 > > > > Miguel, do you think merging
 > > > >
 > > > >
 > > > >
 > > > >
 https://gerrit.ovirt.org/#/c/104495/15/common/yum-repos/ovirt-master-hos
 > > > > t-cq
 >  .repo.in
 > > > >
 > > > >
 > > > >
 > > > > would solve this?
 > >
 > >
 > > I've split the patch Dominik mentions above in two, one of them
 adding
 > > the nmstate / networkmanager copr repos - [3].
 > >
 > > Let's see if it fixes it.
 >
 > it fixes original issue, but OST still fails in
 > 098_ovirt_provider_ovn.use_ovn_provider:
 >
 > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6134

 I think Dominik was looking into this issue; +Dominik Holler please
 confirm.

 Let me know if you need any help Dominik.

>>>
>>>
>>> Thanks.
>>> The problem is that the hosts lost connection to storage:
>>>
>>> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6134/artifact/exported-artifacts/test_logs/basic-suite-master/post-098_ovirt_provider_ovn.py/lago-basic-suite-master-host-0/_var_log/vdsm/vdsm.log
>>> :
>>>
>>> 2019-11-22 05:39:12,326-0500 DEBUG (jsonrpc/5) [common.commands] 
>>> /usr/bin/taskset --cpu-list 0-1 /usr/bin/sudo -n /sbin/lvm 

[ovirt-devel] Re: OST fails, nothing provides nmstate

2019-11-22 Thread Marcin Sobczyk



On 11/22/19 4:54 PM, Martin Perina wrote:



On Fri, Nov 22, 2019 at 4:43 PM Dominik Holler > wrote:



On Fri, Nov 22, 2019 at 12:17 PM Dominik Holler
mailto:dhol...@redhat.com>> wrote:



On Fri, Nov 22, 2019 at 12:00 PM Miguel Duarte de Mora Barroso
mailto:mdbarr...@redhat.com>> wrote:

On Fri, Nov 22, 2019 at 11:54 AM Vojtech Juranek
mailto:vjura...@redhat.com>> wrote:
>
> On pátek 22. listopadu 2019 9:56:56 CET Miguel Duarte de
Mora Barroso wrote:
> > On Fri, Nov 22, 2019 at 9:49 AM Vojtech Juranek
mailto:vjura...@redhat.com>>
> > wrote:
> > >
> > >
> > > On pátek 22. listopadu 2019 9:41:26 CET Dominik
Holler wrote:
> > >
> > > > On Fri, Nov 22, 2019 at 8:40 AM Dominik Holler
mailto:dhol...@redhat.com>>
> > > > wrote:
> > > >
> > > > > On Thu, Nov 21, 2019 at 10:54 PM Nir Soffer
mailto:nsof...@redhat.com>>
> > > > > wrote:
> > > > >
> > > > >> On Thu, Nov 21, 2019 at 11:24 PM Vojtech Juranek
> > > > >> mailto:vjura...@redhat.com>>
> > > > >>
> > > > >>
> > > > >>
> > > > >> wrote:
> > > > >>
> > > > >> > Hi,
> > > > >> > OST fails (see e.g. [1]) in
002_bootstrap.check_update_host. It
> > > > >> > fails
> > > > >>
> > > > >>
> > > > >>
> > > > >> with
> > > > >>
> > > > >>
> > > > >>
> > > > >> >  FAILED! => {"changed": false, "failures":
[], "msg": "Depsolve
> > > > >> >  Error
> > > > >>
> > > > >>
> > > > >>
> > > > >> occured:
> > > > >>
> > > > >> > \n Problem 1: cannot install the best update
candidate for package
> > > > >> > vdsm-
> > > > >> >
network-4.40.0-1236.git63ea8cb8b.el8.x86_64\n  - nothing
provides
> > > > >>
> > > > >>
> > > > >>
> > > > >> nmstate
> > > > >>
> > > > >>
> > > > >>
> > > > >> > needed by
vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
> > > > >> > Problem 2:
> > > > >> > package
vdsm-python-4.40.0-1271.git524e08c8a.el8.noarch requires
> > > > >>
> > > > >>
> > > > >>
> > > > >> vdsm-network
> > > > >>
> > > > >>
> > > > >>
> > > > >> > = 4.40.0-1271.git524e08c8a.el8, but none of
the providers can be
> > > > >>
> > > > >>
> > > > >>
> > > > >> installed\n
> > > > >>
> > > > >>
> > > > >>
> > > > >> > - cannot install the best update candidate
for package vdsm-
> > > > >> > python-4.40.0-1236.git63ea8cb8b.el8.noarch\n 
- nothing provides
> > > > >> > nmstate
> > > > >> > needed by
vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
> > > > >>
> > > > >>
> > > > >>
> > > > >> nmstate should be provided by copr repo enabled by
> > > > >> ovirt-release-master.
> > > > >
> > > > >
> > > > >
> > > > > I re-triggered as
> > > > >
https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6131
> > > > > maybe
> > > > > https://gerrit.ovirt.org/#/c/104825/
> > > > > was missing
> > > >
> > > >
> > > >
> > > > Looks like
> > > > https://gerrit.ovirt.org/#/c/104825/ is ignored by
OST.
> > >
> > >
> > >
> > > maybe not. You re-triggered with [1], which really
missed this patch.
> > > I did a rebase and now running with this patch in
build #6132 [2]. Let's
> > > wait
>  for it to see if gerrit #104825 helps.
> > >
> > >
> > >
> > > [1]
https://jenkins.ovirt.org/job/standard-manual-runner/909/
> > > [2]
https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6132/
> > >
> > >
> > >
> > > > Miguel, do you think merging
> > > >
> > > >
> > > >
> > > >

https://gerrit.ovirt.org/#/c/104495/15/common/yum-repos/ovirt-master-hos
> > > > t-cq
>  

[ovirt-devel] Re: OST fails, nothing provides nmstate

2019-11-22 Thread Martin Perina
On Fri, Nov 22, 2019 at 4:43 PM Dominik Holler  wrote:

>
> On Fri, Nov 22, 2019 at 12:17 PM Dominik Holler 
> wrote:
>
>>
>>
>> On Fri, Nov 22, 2019 at 12:00 PM Miguel Duarte de Mora Barroso <
>> mdbarr...@redhat.com> wrote:
>>
>>> On Fri, Nov 22, 2019 at 11:54 AM Vojtech Juranek 
>>> wrote:
>>> >
>>> > On pátek 22. listopadu 2019 9:56:56 CET Miguel Duarte de Mora Barroso
>>> wrote:
>>> > > On Fri, Nov 22, 2019 at 9:49 AM Vojtech Juranek >> >
>>> > > wrote:
>>> > > >
>>> > > >
>>> > > > On pátek 22. listopadu 2019 9:41:26 CET Dominik Holler wrote:
>>> > > >
>>> > > > > On Fri, Nov 22, 2019 at 8:40 AM Dominik Holler <
>>> dhol...@redhat.com>
>>> > > > > wrote:
>>> > > > >
>>> > > > > > On Thu, Nov 21, 2019 at 10:54 PM Nir Soffer <
>>> nsof...@redhat.com>
>>> > > > > > wrote:
>>> > > > > >
>>> > > > > >> On Thu, Nov 21, 2019 at 11:24 PM Vojtech Juranek
>>> > > > > >> 
>>> > > > > >>
>>> > > > > >>
>>> > > > > >>
>>> > > > > >> wrote:
>>> > > > > >>
>>> > > > > >> > Hi,
>>> > > > > >> > OST fails (see e.g. [1]) in
>>> 002_bootstrap.check_update_host. It
>>> > > > > >> > fails
>>> > > > > >>
>>> > > > > >>
>>> > > > > >>
>>> > > > > >> with
>>> > > > > >>
>>> > > > > >>
>>> > > > > >>
>>> > > > > >> >  FAILED! => {"changed": false, "failures": [], "msg":
>>> "Depsolve
>>> > > > > >> >  Error
>>> > > > > >>
>>> > > > > >>
>>> > > > > >>
>>> > > > > >> occured:
>>> > > > > >>
>>> > > > > >> > \n Problem 1: cannot install the best update candidate for
>>> package
>>> > > > > >> > vdsm-
>>> > > > > >> > network-4.40.0-1236.git63ea8cb8b.el8.x86_64\n  - nothing
>>> provides
>>> > > > > >>
>>> > > > > >>
>>> > > > > >>
>>> > > > > >> nmstate
>>> > > > > >>
>>> > > > > >>
>>> > > > > >>
>>> > > > > >> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
>>> > > > > >> > Problem 2:
>>> > > > > >> > package vdsm-python-4.40.0-1271.git524e08c8a.el8.noarch
>>> requires
>>> > > > > >>
>>> > > > > >>
>>> > > > > >>
>>> > > > > >> vdsm-network
>>> > > > > >>
>>> > > > > >>
>>> > > > > >>
>>> > > > > >> > = 4.40.0-1271.git524e08c8a.el8, but none of the providers
>>> can be
>>> > > > > >>
>>> > > > > >>
>>> > > > > >>
>>> > > > > >> installed\n
>>> > > > > >>
>>> > > > > >>
>>> > > > > >>
>>> > > > > >> > - cannot install the best update candidate for package vdsm-
>>> > > > > >> > python-4.40.0-1236.git63ea8cb8b.el8.noarch\n  - nothing
>>> provides
>>> > > > > >> > nmstate
>>> > > > > >> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
>>> > > > > >>
>>> > > > > >>
>>> > > > > >>
>>> > > > > >> nmstate should be provided by copr repo enabled by
>>> > > > > >> ovirt-release-master.
>>> > > > > >
>>> > > > > >
>>> > > > > >
>>> > > > > > I re-triggered as
>>> > > > > > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6131
>>> > > > > > maybe
>>> > > > > > https://gerrit.ovirt.org/#/c/104825/
>>> > > > > > was missing
>>> > > > >
>>> > > > >
>>> > > > >
>>> > > > > Looks like
>>> > > > > https://gerrit.ovirt.org/#/c/104825/ is ignored by OST.
>>> > > >
>>> > > >
>>> > > >
>>> > > > maybe not. You re-triggered with [1], which really missed this
>>> patch.
>>> > > > I did a rebase and now running with this patch in build #6132 [2].
>>> Let's
>>> > > > wait
>>> >  for it to see if gerrit #104825 helps.
>>> > > >
>>> > > >
>>> > > >
>>> > > > [1] https://jenkins.ovirt.org/job/standard-manual-runner/909/
>>> > > > [2] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6132/
>>> > > >
>>> > > >
>>> > > >
>>> > > > > Miguel, do you think merging
>>> > > > >
>>> > > > >
>>> > > > >
>>> > > > >
>>> https://gerrit.ovirt.org/#/c/104495/15/common/yum-repos/ovirt-master-hos
>>> > > > > t-cq
>>> >  .repo.in
>>> > > > >
>>> > > > >
>>> > > > >
>>> > > > > would solve this?
>>> > >
>>> > >
>>> > > I've split the patch Dominik mentions above in two, one of them
>>> adding
>>> > > the nmstate / networkmanager copr repos - [3].
>>> > >
>>> > > Let's see if it fixes it.
>>> >
>>> > it fixes original issue, but OST still fails in
>>> > 098_ovirt_provider_ovn.use_ovn_provider:
>>> >
>>> > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6134
>>>
>>> I think Dominik was looking into this issue; +Dominik Holler please
>>> confirm.
>>>
>>> Let me know if you need any help Dominik.
>>>
>>
>>
>> Thanks.
>> The problem is that the hosts lost connection to storage:
>>
>> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6134/artifact/exported-artifacts/test_logs/basic-suite-master/post-098_ovirt_provider_ovn.py/lago-basic-suite-master-host-0/_var_log/vdsm/vdsm.log
>> :
>>
>> 2019-11-22 05:39:12,326-0500 DEBUG (jsonrpc/5) [common.commands] 
>> /usr/bin/taskset --cpu-list 0-1 /usr/bin/sudo -n /sbin/lvm vgs --config 
>> 'devices {  preferred_names=["^/dev/mapper/"]  ignore_suspended_devices=1  
>> write_cache_state=0  disable_after_error_count=3  
>> 

[ovirt-devel] Re: OST fails, nothing provides nmstate

2019-11-22 Thread Dominik Holler
On Fri, Nov 22, 2019 at 12:17 PM Dominik Holler  wrote:

>
>
> On Fri, Nov 22, 2019 at 12:00 PM Miguel Duarte de Mora Barroso <
> mdbarr...@redhat.com> wrote:
>
>> On Fri, Nov 22, 2019 at 11:54 AM Vojtech Juranek 
>> wrote:
>> >
>> > On pátek 22. listopadu 2019 9:56:56 CET Miguel Duarte de Mora Barroso
>> wrote:
>> > > On Fri, Nov 22, 2019 at 9:49 AM Vojtech Juranek 
>> > > wrote:
>> > > >
>> > > >
>> > > > On pátek 22. listopadu 2019 9:41:26 CET Dominik Holler wrote:
>> > > >
>> > > > > On Fri, Nov 22, 2019 at 8:40 AM Dominik Holler <
>> dhol...@redhat.com>
>> > > > > wrote:
>> > > > >
>> > > > > > On Thu, Nov 21, 2019 at 10:54 PM Nir Soffer > >
>> > > > > > wrote:
>> > > > > >
>> > > > > >> On Thu, Nov 21, 2019 at 11:24 PM Vojtech Juranek
>> > > > > >> 
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> wrote:
>> > > > > >>
>> > > > > >> > Hi,
>> > > > > >> > OST fails (see e.g. [1]) in 002_bootstrap.check_update_host.
>> It
>> > > > > >> > fails
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> with
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> >  FAILED! => {"changed": false, "failures": [], "msg":
>> "Depsolve
>> > > > > >> >  Error
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> occured:
>> > > > > >>
>> > > > > >> > \n Problem 1: cannot install the best update candidate for
>> package
>> > > > > >> > vdsm-
>> > > > > >> > network-4.40.0-1236.git63ea8cb8b.el8.x86_64\n  - nothing
>> provides
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> nmstate
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
>> > > > > >> > Problem 2:
>> > > > > >> > package vdsm-python-4.40.0-1271.git524e08c8a.el8.noarch
>> requires
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> vdsm-network
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> > = 4.40.0-1271.git524e08c8a.el8, but none of the providers
>> can be
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> installed\n
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> > - cannot install the best update candidate for package vdsm-
>> > > > > >> > python-4.40.0-1236.git63ea8cb8b.el8.noarch\n  - nothing
>> provides
>> > > > > >> > nmstate
>> > > > > >> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
>> > > > > >>
>> > > > > >>
>> > > > > >>
>> > > > > >> nmstate should be provided by copr repo enabled by
>> > > > > >> ovirt-release-master.
>> > > > > >
>> > > > > >
>> > > > > >
>> > > > > > I re-triggered as
>> > > > > > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6131
>> > > > > > maybe
>> > > > > > https://gerrit.ovirt.org/#/c/104825/
>> > > > > > was missing
>> > > > >
>> > > > >
>> > > > >
>> > > > > Looks like
>> > > > > https://gerrit.ovirt.org/#/c/104825/ is ignored by OST.
>> > > >
>> > > >
>> > > >
>> > > > maybe not. You re-triggered with [1], which really missed this
>> patch.
>> > > > I did a rebase and now running with this patch in build #6132 [2].
>> Let's
>> > > > wait
>> >  for it to see if gerrit #104825 helps.
>> > > >
>> > > >
>> > > >
>> > > > [1] https://jenkins.ovirt.org/job/standard-manual-runner/909/
>> > > > [2] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6132/
>> > > >
>> > > >
>> > > >
>> > > > > Miguel, do you think merging
>> > > > >
>> > > > >
>> > > > >
>> > > > >
>> https://gerrit.ovirt.org/#/c/104495/15/common/yum-repos/ovirt-master-hos
>> > > > > t-cq
>> >  .repo.in
>> > > > >
>> > > > >
>> > > > >
>> > > > > would solve this?
>> > >
>> > >
>> > > I've split the patch Dominik mentions above in two, one of them adding
>> > > the nmstate / networkmanager copr repos - [3].
>> > >
>> > > Let's see if it fixes it.
>> >
>> > it fixes original issue, but OST still fails in
>> > 098_ovirt_provider_ovn.use_ovn_provider:
>> >
>> > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6134
>>
>> I think Dominik was looking into this issue; +Dominik Holler please
>> confirm.
>>
>> Let me know if you need any help Dominik.
>>
>
>
> Thanks.
> The problem is that the hosts lost connection to storage:
>
> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6134/artifact/exported-artifacts/test_logs/basic-suite-master/post-098_ovirt_provider_ovn.py/lago-basic-suite-master-host-0/_var_log/vdsm/vdsm.log
> :
>
> 2019-11-22 05:39:12,326-0500 DEBUG (jsonrpc/5) [common.commands] 
> /usr/bin/taskset --cpu-list 0-1 /usr/bin/sudo -n /sbin/lvm vgs --config 
> 'devices {  preferred_names=["^/dev/mapper/"]  ignore_suspended_devices=1  
> write_cache_state=0  disable_after_error_count=3  
> filter=["a|^/dev/mapper/36001405107ea8b4e3ac4ddeb3e19890f$|^/dev/mapper/360014054924c91df75e41178e4b8a80c$|^/dev/mapper/3600140561c0d02829924b77ab7323f17$|^/dev/mapper/3600140582feebc04ca5409a99660dbbc$|^/dev/mapper/36001405c3c53755c13c474dada6be354$|",
>  "r|.*|"] } global {  locking_type=1  prioritise_write_locks=1  
> wait_for_locks=1  use_lvmetad=0 } backup {  retain_min=50  retain_days=0 }' 
> --noheadings 

[ovirt-devel] Re: OST fails, nothing provides nmstate

2019-11-22 Thread Dominik Holler
On Fri, Nov 22, 2019 at 12:00 PM Miguel Duarte de Mora Barroso <
mdbarr...@redhat.com> wrote:

> On Fri, Nov 22, 2019 at 11:54 AM Vojtech Juranek 
> wrote:
> >
> > On pátek 22. listopadu 2019 9:56:56 CET Miguel Duarte de Mora Barroso
> wrote:
> > > On Fri, Nov 22, 2019 at 9:49 AM Vojtech Juranek 
> > > wrote:
> > > >
> > > >
> > > > On pátek 22. listopadu 2019 9:41:26 CET Dominik Holler wrote:
> > > >
> > > > > On Fri, Nov 22, 2019 at 8:40 AM Dominik Holler  >
> > > > > wrote:
> > > > >
> > > > > > On Thu, Nov 21, 2019 at 10:54 PM Nir Soffer 
> > > > > > wrote:
> > > > > >
> > > > > >> On Thu, Nov 21, 2019 at 11:24 PM Vojtech Juranek
> > > > > >> 
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> wrote:
> > > > > >>
> > > > > >> > Hi,
> > > > > >> > OST fails (see e.g. [1]) in 002_bootstrap.check_update_host.
> It
> > > > > >> > fails
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> with
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> >  FAILED! => {"changed": false, "failures": [], "msg":
> "Depsolve
> > > > > >> >  Error
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> occured:
> > > > > >>
> > > > > >> > \n Problem 1: cannot install the best update candidate for
> package
> > > > > >> > vdsm-
> > > > > >> > network-4.40.0-1236.git63ea8cb8b.el8.x86_64\n  - nothing
> provides
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> nmstate
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
> > > > > >> > Problem 2:
> > > > > >> > package vdsm-python-4.40.0-1271.git524e08c8a.el8.noarch
> requires
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> vdsm-network
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> > = 4.40.0-1271.git524e08c8a.el8, but none of the providers can
> be
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> installed\n
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> > - cannot install the best update candidate for package vdsm-
> > > > > >> > python-4.40.0-1236.git63ea8cb8b.el8.noarch\n  - nothing
> provides
> > > > > >> > nmstate
> > > > > >> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
> > > > > >>
> > > > > >>
> > > > > >>
> > > > > >> nmstate should be provided by copr repo enabled by
> > > > > >> ovirt-release-master.
> > > > > >
> > > > > >
> > > > > >
> > > > > > I re-triggered as
> > > > > > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6131
> > > > > > maybe
> > > > > > https://gerrit.ovirt.org/#/c/104825/
> > > > > > was missing
> > > > >
> > > > >
> > > > >
> > > > > Looks like
> > > > > https://gerrit.ovirt.org/#/c/104825/ is ignored by OST.
> > > >
> > > >
> > > >
> > > > maybe not. You re-triggered with [1], which really missed this patch.
> > > > I did a rebase and now running with this patch in build #6132 [2].
> Let's
> > > > wait
> >  for it to see if gerrit #104825 helps.
> > > >
> > > >
> > > >
> > > > [1] https://jenkins.ovirt.org/job/standard-manual-runner/909/
> > > > [2] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6132/
> > > >
> > > >
> > > >
> > > > > Miguel, do you think merging
> > > > >
> > > > >
> > > > >
> > > > >
> https://gerrit.ovirt.org/#/c/104495/15/common/yum-repos/ovirt-master-hos
> > > > > t-cq
> >  .repo.in
> > > > >
> > > > >
> > > > >
> > > > > would solve this?
> > >
> > >
> > > I've split the patch Dominik mentions above in two, one of them adding
> > > the nmstate / networkmanager copr repos - [3].
> > >
> > > Let's see if it fixes it.
> >
> > it fixes original issue, but OST still fails in
> > 098_ovirt_provider_ovn.use_ovn_provider:
> >
> > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6134
>
> I think Dominik was looking into this issue; +Dominik Holler please
> confirm.
>
> Let me know if you need any help Dominik.
>


Thanks.
The problem is that the hosts lost connection to storage:
https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6134/artifact/exported-artifacts/test_logs/basic-suite-master/post-098_ovirt_provider_ovn.py/lago-basic-suite-master-host-0/_var_log/vdsm/vdsm.log
:

2019-11-22 05:39:12,326-0500 DEBUG (jsonrpc/5) [common.commands]
/usr/bin/taskset --cpu-list 0-1 /usr/bin/sudo -n /sbin/lvm vgs
--config 'devices {  preferred_names=["^/dev/mapper/"]
ignore_suspended_devices=1  write_cache_state=0
disable_after_error_count=3
filter=["a|^/dev/mapper/36001405107ea8b4e3ac4ddeb3e19890f$|^/dev/mapper/360014054924c91df75e41178e4b8a80c$|^/dev/mapper/3600140561c0d02829924b77ab7323f17$|^/dev/mapper/3600140582feebc04ca5409a99660dbbc$|^/dev/mapper/36001405c3c53755c13c474dada6be354$|",
"r|.*|"] } global {  locking_type=1  prioritise_write_locks=1
wait_for_locks=1  use_lvmetad=0 } backup {  retain_min=50
retain_days=0 }' --noheadings --units b --nosuffix --separator '|'
--ignoreskippedcluster -o
uuid,name,attr,size,free,extent_size,extent_count,free_count,tags,vg_mda_size,vg_mda_free,lv_count,pv_count,pv_name
(cwd None) (commands:153)
2019-11-22 05:39:12,415-0500 ERROR (check/loop) [storage.Monitor]
Error 

[ovirt-devel] Re: OST fails, nothing provides nmstate

2019-11-22 Thread Miguel Duarte de Mora Barroso
On Fri, Nov 22, 2019 at 11:54 AM Vojtech Juranek  wrote:
>
> On pátek 22. listopadu 2019 9:56:56 CET Miguel Duarte de Mora Barroso wrote:
> > On Fri, Nov 22, 2019 at 9:49 AM Vojtech Juranek 
> > wrote:
> > >
> > >
> > > On pátek 22. listopadu 2019 9:41:26 CET Dominik Holler wrote:
> > >
> > > > On Fri, Nov 22, 2019 at 8:40 AM Dominik Holler 
> > > > wrote:
> > > >
> > > > > On Thu, Nov 21, 2019 at 10:54 PM Nir Soffer 
> > > > > wrote:
> > > > >
> > > > >> On Thu, Nov 21, 2019 at 11:24 PM Vojtech Juranek
> > > > >> 
> > > > >>
> > > > >>
> > > > >>
> > > > >> wrote:
> > > > >>
> > > > >> > Hi,
> > > > >> > OST fails (see e.g. [1]) in 002_bootstrap.check_update_host. It
> > > > >> > fails
> > > > >>
> > > > >>
> > > > >>
> > > > >> with
> > > > >>
> > > > >>
> > > > >>
> > > > >> >  FAILED! => {"changed": false, "failures": [], "msg": "Depsolve
> > > > >> >  Error
> > > > >>
> > > > >>
> > > > >>
> > > > >> occured:
> > > > >>
> > > > >> > \n Problem 1: cannot install the best update candidate for package
> > > > >> > vdsm-
> > > > >> > network-4.40.0-1236.git63ea8cb8b.el8.x86_64\n  - nothing provides
> > > > >>
> > > > >>
> > > > >>
> > > > >> nmstate
> > > > >>
> > > > >>
> > > > >>
> > > > >> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
> > > > >> > Problem 2:
> > > > >> > package vdsm-python-4.40.0-1271.git524e08c8a.el8.noarch requires
> > > > >>
> > > > >>
> > > > >>
> > > > >> vdsm-network
> > > > >>
> > > > >>
> > > > >>
> > > > >> > = 4.40.0-1271.git524e08c8a.el8, but none of the providers can be
> > > > >>
> > > > >>
> > > > >>
> > > > >> installed\n
> > > > >>
> > > > >>
> > > > >>
> > > > >> > - cannot install the best update candidate for package vdsm-
> > > > >> > python-4.40.0-1236.git63ea8cb8b.el8.noarch\n  - nothing provides
> > > > >> > nmstate
> > > > >> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
> > > > >>
> > > > >>
> > > > >>
> > > > >> nmstate should be provided by copr repo enabled by
> > > > >> ovirt-release-master.
> > > > >
> > > > >
> > > > >
> > > > > I re-triggered as
> > > > > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6131
> > > > > maybe
> > > > > https://gerrit.ovirt.org/#/c/104825/
> > > > > was missing
> > > >
> > > >
> > > >
> > > > Looks like
> > > > https://gerrit.ovirt.org/#/c/104825/ is ignored by OST.
> > >
> > >
> > >
> > > maybe not. You re-triggered with [1], which really missed this patch.
> > > I did a rebase and now running with this patch in build #6132 [2]. Let's
> > > wait
>  for it to see if gerrit #104825 helps.
> > >
> > >
> > >
> > > [1] https://jenkins.ovirt.org/job/standard-manual-runner/909/
> > > [2] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6132/
> > >
> > >
> > >
> > > > Miguel, do you think merging
> > > >
> > > >
> > > >
> > > > https://gerrit.ovirt.org/#/c/104495/15/common/yum-repos/ovirt-master-hos
> > > > t-cq
>  .repo.in
> > > >
> > > >
> > > >
> > > > would solve this?
> >
> >
> > I've split the patch Dominik mentions above in two, one of them adding
> > the nmstate / networkmanager copr repos - [3].
> >
> > Let's see if it fixes it.
>
> it fixes original issue, but OST still fails in
> 098_ovirt_provider_ovn.use_ovn_provider:
>
> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6134

I think Dominik was looking into this issue; +Dominik Holler please confirm.

Let me know if you need any help Dominik.
>
> > [3] - https://gerrit.ovirt.org/#/c/104897/
> >
> >
> > > >
> > > >
> > > > >> Who installs this rpm in OST?
> > > > >
> > > > >
> > > > >
> > > > > I do not understand the question.
> > > > >
> > > > >
> > > > >
> > > > >> > [...]
> > > > >> >
> > > > >> >
> > > > >> >
> > > > >> > See [2] for full error.
> > > > >> >
> > > > >> >
> > > > >> >
> > > > >> > Can someone please take a look?
> > > > >> > Thanks
> > > > >> > Vojta
> > > > >> >
> > > > >> >
> > > > >> >
> > > > >> > [1] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6128/
> > > > >> > [2]
> > > > >>
> > > > >>
> > > > >>
> > > > >> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6128/artifact
> > > > >> /
> > > > >>
> > > > >>
> > > > >>
> > > > >> > exported-artifacts/test_logs/basic-suite-master/
> > > > >>
> > > > >>
> > > > >>
> > > > >> post-002_bootstrap.py/lago-
> > > > >>
> > > > >>
> > > > >>
> > > > >> basic-suite-master-engine/_var_log/ovirt-engine/engine.log___
> > > > >> 
> > > > >> >>
> > > > >>
> > > > >> > Devel mailing list -- devel@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/devel@ovirt.org/message/4K5N3VQ
> > > > >> N26B
> > > > >> L73K7D45A2IR7R3UMMM23/

[ovirt-devel] Re: OST fails, nothing provides nmstate

2019-11-22 Thread Miguel Duarte de Mora Barroso
On Fri, Nov 22, 2019 at 9:49 AM Vojtech Juranek  wrote:
>
> On pátek 22. listopadu 2019 9:41:26 CET Dominik Holler wrote:
> > On Fri, Nov 22, 2019 at 8:40 AM Dominik Holler  wrote:
> > > On Thu, Nov 21, 2019 at 10:54 PM Nir Soffer  wrote:
> > >> On Thu, Nov 21, 2019 at 11:24 PM Vojtech Juranek 
> > >>
> > >> wrote:
> > >> > Hi,
> > >> > OST fails (see e.g. [1]) in 002_bootstrap.check_update_host. It fails
> > >>
> > >> with
> > >>
> > >> >  FAILED! => {"changed": false, "failures": [], "msg": "Depsolve Error
> > >>
> > >> occured:
> > >> > \n Problem 1: cannot install the best update candidate for package
> > >> > vdsm-
> > >> > network-4.40.0-1236.git63ea8cb8b.el8.x86_64\n  - nothing provides
> > >>
> > >> nmstate
> > >>
> > >> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n Problem 2:
> > >> > package vdsm-python-4.40.0-1271.git524e08c8a.el8.noarch requires
> > >>
> > >> vdsm-network
> > >>
> > >> > = 4.40.0-1271.git524e08c8a.el8, but none of the providers can be
> > >>
> > >> installed\n
> > >>
> > >> > - cannot install the best update candidate for package vdsm-
> > >> > python-4.40.0-1236.git63ea8cb8b.el8.noarch\n  - nothing provides
> > >> > nmstate
> > >> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
> > >>
> > >> nmstate should be provided by copr repo enabled by ovirt-release-master.
> > >
> > > I re-triggered as
> > > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6131
> > > maybe
> > > https://gerrit.ovirt.org/#/c/104825/
> > > was missing
> >
> > Looks like
> > https://gerrit.ovirt.org/#/c/104825/ is ignored by OST.
>
> maybe not. You re-triggered with [1], which really missed this patch.
> I did a rebase and now running with this patch in build #6132 [2]. Let's wait
> for it to see if gerrit #104825 helps.
>
> [1] https://jenkins.ovirt.org/job/standard-manual-runner/909/
> [2] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6132/
>
> > Miguel, do you think merging
> >
> > https://gerrit.ovirt.org/#/c/104495/15/common/yum-repos/ovirt-master-host-cq
> > .repo.in
> >
> > would solve this?

I've split the patch Dominik mentions above in two, one of them adding
the nmstate / networkmanager copr repos - [3].

Let's see if it fixes it.

[3] - https://gerrit.ovirt.org/#/c/104897/

> >
> > >> Who installs this rpm in OST?
> > >
> > > I do not understand the question.
> > >
> > >> > [...]
> > >> >
> > >> > See [2] for full error.
> > >> >
> > >> > Can someone please take a look?
> > >> > Thanks
> > >> > Vojta
> > >> >
> > >> > [1] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6128/
> > >> > [2]
> > >>
> > >> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6128/artifact/
> > >>
> > >> > exported-artifacts/test_logs/basic-suite-master/
> > >>
> > >> post-002_bootstrap.py/lago-
> > >>
> > >> basic-suite-master-engine/_var_log/ovirt-engine/engine.log___
> > >> >>
> > >> > Devel mailing list -- devel@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/devel@ovirt.org/message/4K5N3VQN26B
> > >> L73K7D45A2IR7R3UMMM23/ ___
> > >> Devel mailing list -- devel@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/devel@ovirt.org/message/JN7MNUZN5K3
> > >> NS5TGXFCILYES77KI5TZU/
>
___
Devel mailing list -- devel@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/devel@ovirt.org/message/UPJ5SEAV5Z65H5BQ3SCHOYZX6JMTQPBW/


[ovirt-devel] Re: OST fails, nothing provides nmstate

2019-11-22 Thread Vojtech Juranek
On pátek 22. listopadu 2019 9:41:26 CET Dominik Holler wrote:
> On Fri, Nov 22, 2019 at 8:40 AM Dominik Holler  wrote:
> > On Thu, Nov 21, 2019 at 10:54 PM Nir Soffer  wrote:
> >> On Thu, Nov 21, 2019 at 11:24 PM Vojtech Juranek 
> >> 
> >> wrote:
> >> > Hi,
> >> > OST fails (see e.g. [1]) in 002_bootstrap.check_update_host. It fails
> >> 
> >> with
> >> 
> >> >  FAILED! => {"changed": false, "failures": [], "msg": "Depsolve Error
> >> 
> >> occured:
> >> > \n Problem 1: cannot install the best update candidate for package
> >> > vdsm-
> >> > network-4.40.0-1236.git63ea8cb8b.el8.x86_64\n  - nothing provides
> >> 
> >> nmstate
> >> 
> >> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n Problem 2:
> >> > package vdsm-python-4.40.0-1271.git524e08c8a.el8.noarch requires
> >> 
> >> vdsm-network
> >> 
> >> > = 4.40.0-1271.git524e08c8a.el8, but none of the providers can be
> >> 
> >> installed\n
> >> 
> >> > - cannot install the best update candidate for package vdsm-
> >> > python-4.40.0-1236.git63ea8cb8b.el8.noarch\n  - nothing provides
> >> > nmstate
> >> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
> >> 
> >> nmstate should be provided by copr repo enabled by ovirt-release-master.
> > 
> > I re-triggered as
> > https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6131
> > maybe
> > https://gerrit.ovirt.org/#/c/104825/
> > was missing
> 
> Looks like
> https://gerrit.ovirt.org/#/c/104825/ is ignored by OST.

maybe not. You re-triggered with [1], which really missed this patch.
I did a rebase and now running with this patch in build #6132 [2]. Let's wait 
for it to see if gerrit #104825 helps.

[1] https://jenkins.ovirt.org/job/standard-manual-runner/909/
[2] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6132/

> Miguel, do you think merging
> 
> https://gerrit.ovirt.org/#/c/104495/15/common/yum-repos/ovirt-master-host-cq
> .repo.in
> 
> would solve this?
> 
> >> Who installs this rpm in OST?
> > 
> > I do not understand the question.
> > 
> >> > [...]
> >> > 
> >> > See [2] for full error.
> >> > 
> >> > Can someone please take a look?
> >> > Thanks
> >> > Vojta
> >> > 
> >> > [1] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6128/
> >> > [2]
> >> 
> >> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6128/artifact/
> >> 
> >> > exported-artifacts/test_logs/basic-suite-master/
> >> 
> >> post-002_bootstrap.py/lago-
> >> 
> >> basic-suite-master-engine/_var_log/ovirt-engine/engine.log___
> >> >> 
> >> > Devel mailing list -- devel@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/devel@ovirt.org/message/4K5N3VQN26B
> >> L73K7D45A2IR7R3UMMM23/ ___
> >> Devel mailing list -- devel@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/devel@ovirt.org/message/JN7MNUZN5K3
> >> NS5TGXFCILYES77KI5TZU/



signature.asc
Description: This is a digitally signed message part.
___
Devel mailing list -- devel@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/devel@ovirt.org/message/EO5N4T5JPIPXBMHUBDL7XU3QCYV3BH2U/


[ovirt-devel] Re: OST fails, nothing provides nmstate

2019-11-22 Thread Miguel Duarte de Mora Barroso
On Fri, Nov 22, 2019 at 9:41 AM Dominik Holler  wrote:
>
>
>
> On Fri, Nov 22, 2019 at 8:40 AM Dominik Holler  wrote:
>>
>>
>>
>> On Thu, Nov 21, 2019 at 10:54 PM Nir Soffer  wrote:
>>>
>>> On Thu, Nov 21, 2019 at 11:24 PM Vojtech Juranek  
>>> wrote:
>>> >
>>> > Hi,
>>> > OST fails (see e.g. [1]) in 002_bootstrap.check_update_host. It fails with
>>> >
>>> >  FAILED! => {"changed": false, "failures": [], "msg": "Depsolve Error 
>>> > occured:
>>> > \n Problem 1: cannot install the best update candidate for package vdsm-
>>> > network-4.40.0-1236.git63ea8cb8b.el8.x86_64\n  - nothing provides nmstate
>>> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n Problem 2:
>>> > package vdsm-python-4.40.0-1271.git524e08c8a.el8.noarch requires 
>>> > vdsm-network
>>> > = 4.40.0-1271.git524e08c8a.el8, but none of the providers can be 
>>> > installed\n
>>> > - cannot install the best update candidate for package vdsm-
>>> > python-4.40.0-1236.git63ea8cb8b.el8.noarch\n  - nothing provides nmstate
>>> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
>>>
>>> nmstate should be provided by copr repo enabled by ovirt-release-master.
>>
>>
>>
>> I re-triggered as
>> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6131
>> maybe
>> https://gerrit.ovirt.org/#/c/104825/
>> was missing
>>
>
> Looks like
> https://gerrit.ovirt.org/#/c/104825/ is ignored by OST.

Right.

>
> Miguel, do you think merging
>
> https://gerrit.ovirt.org/#/c/104495/15/common/yum-repos/ovirt-master-host-cq.repo.in

It should.

I'll break down patch patch into smaller pieces - one adding the
nmstate / NM copr repos, another w/ enabling nmstate.

>
> would solve this?
>
>>
>>
>>>
>>> Who installs this rpm in OST?
>>>
>>
>> I do not understand the question.
>>
>>>
>>> > [...]
>>> >
>>> > See [2] for full error.
>>> >
>>> > Can someone please take a look?
>>> > Thanks
>>> > Vojta
>>> >
>>> > [1] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6128/
>>> > [2] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6128/artifact/
>>> > exported-artifacts/test_logs/basic-suite-master/post-002_bootstrap.py/lago-
>>> > basic-suite-master-engine/_var_log/ovirt-engine/engine.log___
>>> > Devel mailing list -- devel@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/devel@ovirt.org/message/4K5N3VQN26BL73K7D45A2IR7R3UMMM23/
>>> ___
>>> Devel mailing list -- devel@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/devel@ovirt.org/message/JN7MNUZN5K3NS5TGXFCILYES77KI5TZU/
___
Devel mailing list -- devel@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/devel@ovirt.org/message/JEUPQR4EC2SBHIQ5FNX2U44N6AERRWD5/


[ovirt-devel] Re: OST fails, nothing provides nmstate

2019-11-22 Thread Dominik Holler
On Fri, Nov 22, 2019 at 8:40 AM Dominik Holler  wrote:

>
>
> On Thu, Nov 21, 2019 at 10:54 PM Nir Soffer  wrote:
>
>> On Thu, Nov 21, 2019 at 11:24 PM Vojtech Juranek 
>> wrote:
>> >
>> > Hi,
>> > OST fails (see e.g. [1]) in 002_bootstrap.check_update_host. It fails
>> with
>> >
>> >  FAILED! => {"changed": false, "failures": [], "msg": "Depsolve Error
>> occured:
>> > \n Problem 1: cannot install the best update candidate for package vdsm-
>> > network-4.40.0-1236.git63ea8cb8b.el8.x86_64\n  - nothing provides
>> nmstate
>> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n Problem 2:
>> > package vdsm-python-4.40.0-1271.git524e08c8a.el8.noarch requires
>> vdsm-network
>> > = 4.40.0-1271.git524e08c8a.el8, but none of the providers can be
>> installed\n
>> > - cannot install the best update candidate for package vdsm-
>> > python-4.40.0-1236.git63ea8cb8b.el8.noarch\n  - nothing provides nmstate
>> > needed by vdsm-network-4.40.0-1271.git524e08c8a.el8.x86_64\n
>>
>> nmstate should be provided by copr repo enabled by ovirt-release-master.
>>
>
>
> I re-triggered as
> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6131
> maybe
> https://gerrit.ovirt.org/#/c/104825/
> was missing
>
>
Looks like
https://gerrit.ovirt.org/#/c/104825/ is ignored by OST.

Miguel, do you think merging

https://gerrit.ovirt.org/#/c/104495/15/common/yum-repos/ovirt-master-host-cq.repo.in

would solve this?


>
>
>> Who installs this rpm in OST?
>>
>>
> I do not understand the question.
>
>
>> > [...]
>> >
>> > See [2] for full error.
>> >
>> > Can someone please take a look?
>> > Thanks
>> > Vojta
>> >
>> > [1] https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6128/
>> > [2]
>> https://jenkins.ovirt.org/job/ovirt-system-tests_manual/6128/artifact/
>> > exported-artifacts/test_logs/basic-suite-master/
>> post-002_bootstrap.py/lago-
>> >
>> basic-suite-master-engine/_var_log/ovirt-engine/engine.log___
>> > Devel mailing list -- devel@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/devel@ovirt.org/message/4K5N3VQN26BL73K7D45A2IR7R3UMMM23/
>> ___
>> Devel mailing list -- devel@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/devel@ovirt.org/message/JN7MNUZN5K3NS5TGXFCILYES77KI5TZU/
>>
>
___
Devel mailing list -- devel@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/devel@ovirt.org/message/AXXKBFNWEUWVUKCMSHZTJTZGJ6KVXZ4W/