Wednesday, 2021-12-01

*** akekane_ is now known as abhishekk07:32
*** pojadhav is now known as pojadhav|afk08:06
*** pojadhav|afk is now known as pojadhav08:36
*** jpena|off is now known as jpena10:10
*** pojadhav is now known as pojadhav|afk10:19
*** pojadhav|afk is now known as pojadhav11:13
opendevreviewMerged openstack/devstack master: Remove unnecessary unset for project-scoped token in glance  https://review.opendev.org/c/openstack/devstack/+/81707411:27
*** pojadhav is now known as pojadhav|brb11:37
*** pojadhav|brb is now known as pojadhav12:08
*** pojadhav is now known as pojadhav|brb13:38
kopecmartingmann: do you think we can start with this? https://bugs.launchpad.net/tempest/+bug/1911044 - dropping unittest214:10
kopecmartingmann: btw, when the openstack-health is not up to date, is there other way how to check results of a test marked as unstable? 14:16
*** pojadhav|brb is now known as pojadhav14:38
opendevreviewArtom Lifshitz proposed openstack/whitebox-tempest-plugin master: Stop silently overriding clients with admin clients  https://review.opendev.org/c/openstack/whitebox-tempest-plugin/+/80478014:47
opendevreviewArtom Lifshitz proposed openstack/whitebox-tempest-plugin master: Remove create_test_server() helper override  https://review.opendev.org/c/openstack/whitebox-tempest-plugin/+/80530014:47
artomjparker, ^^ wanna take a look at those when you get a chance?14:48
jparkerartom: sure thing14:49
artomFinishing up the admin clients override clean up14:49
artomHrmm, I'll need to clean up the commit message though, it's no longer relevant14:50
artomIn fact, I'll probably just squash them together14:51
jparkerartom: you mean in regards to the unit test and the emulator thread test?14:51
artomYeah14:51
artomWith the extensive refactoring you did to remove NSM, there's little need to keep these separate14:51
*** pojadhav is now known as pojadhav|brb14:58
opendevreviewArtom Lifshitz proposed openstack/whitebox-tempest-plugin master: Stop silently overriding clients with admin clients  https://review.opendev.org/c/openstack/whitebox-tempest-plugin/+/80530015:05
artomjparker, ^^ there, maybe wait for CI to confirm I didn't screw it up first :)15:05
* jparker looking now15:09
opendevreviewMerged openstack/tempest master: Replace deprecated assertDictContainsSubset  https://review.opendev.org/c/openstack/tempest/+/81975115:32
opendevreviewAlfredo Moralejo proposed openstack/devstack master: Support CentOS Stream 9  https://review.opendev.org/c/openstack/devstack/+/80090315:47
gmannkopecmartin: on unittest, let me finish pinning tempest in train testing (after fixing the neutron issues) and after that we can iterate on this if stestr version etc are all ok for master supported branches https://review.opendev.org/c/openstack/devstack/+/81654915:54
gmannkopecmartin: on checking test status for unstable, no I do not know any other way then o-h.15:58
jparkerartom: I'm trying to understand why the zuul is failing for the commit, does create_test_server default to os_primary and then when os_admin is called by get_server_xml it can't see the name? I would still think os_admin would get that information as well no?15:58
artomjparker, yeah, it's weird. I suppose it's a good thing, forces us to be clean and explicit about clients and resource cleanup15:59
*** pojadhav|brb is now known as pojadhav16:29
*** gmann is now known as gmann_afk17:34
*** pojadhav is now known as pojadhav|out17:46
*** jbadiapa is now known as jbadiapa|off17:46
*** jpena is now known as jpena|off18:18
artomjparker, huh, so in my "stop overriding with admin clients" patch I see the following error for an instance built from an image gotten from copy_default_image: Invalid input received: Inv18:41
artomalid image identifier or unable to access requested image.18:41
artomYou had that as well, right? But for a different thing...18:41
*** gmann_afk is now known as gmann18:53
opendevreviewArtom Lifshitz proposed openstack/tempest master: WIP: Don't override images client in compute admin tests  https://review.opendev.org/c/openstack/tempest/+/82006219:09
opendevreviewArtom Lifshitz proposed openstack/whitebox-tempest-plugin master: Stop silently overriding clients with admin clients  https://review.opendev.org/c/openstack/whitebox-tempest-plugin/+/80530019:19
jparkerartom: ack yea I believe it was for the rescue volume back commit I'm working on, it looks like you may have solved it though with your latest ps19:29
artomjparker, hopefully so, though it needs a change in tempest that I suspect will explode many more things19:42
artom... that will hopefully be easy to fix with just s/image_client/admin_image_client/19:43
opendevreviewMerged openstack/tempest master: Define default OS_TEST_TIMEOUT for every tempest tox env  https://review.opendev.org/c/openstack/tempest/+/70331520:14
jparkerartom: unless the connection method is floating the create_test_server will no longer return active state correct since the wait_until isn't explicitly passed?20:31
jparkerartom: I just tried running the commit locally and its failing early b/c it can't find a host since its in build state still20:31
artomjparker, yeah, I wonder if we can just make wait_until='ACTIVE' the default20:54
artomIn tempest itself - seems like the most common use of it20:54
jparkerartom: yea I would think it would be the most common state required20:56
artomYeah, a quick grep told me there's only like 2 or cases of wait_until something other than ACTIVE20:56
artomDammit, there's the following logic in the common/compute.py implementation:21:01
artom        if CONF.validation.connect_method == 'floating':21:01
artom            if wait_until is None:21:01
artom                wait_until = 'ACTIVE'21:01
artomIOW, it relies on the default being None21:01
artomSo we can't change it in tempest directly. Guess we'll just do it in whitebox ourselves...21:01
opendevreviewAde Lee proposed openstack/tempest master: WIP - replace paramiko with libssh  https://review.opendev.org/c/openstack/tempest/+/80627421:02
jparkerartom: but if wait_until defaults to ACTIVE couldn't it just be removed?21:05
artomjparker, yeah, I'd have liked to default it to ACTIVE in tempest21:05
jparkerartom: so couldnt the logic be removed then? 21:06
artomOh, I see what you're saying21:06
artomI think you're right, the only case it would still be needed for is if a test passed explicitly passed wait_until=None (instead of relying on the default) but passed validatable=True21:09
artomAnd relied on that logic21:09
artomWhich would be... very weird21:09
jparkerI guess the other concern would be added time21:12
jparkerartom: if there are a large number of instances where wait_until just is not passed and now they have to wait for the instance to reach ACTIVE21:13
artomjparker, also a good point21:14
artomI guess in the spirit of being explicit and not relying on potentially hard to find defaults, we should just add it everywhere in whitebox...21:14
artomThere aren't that many places...21:15
jparkeryea its fine21:15
jparkerartom: I can work on it some tomorrow and do local tests to make sure everything is working21:17
jparkerartom: when I added it locally to one of the tests it started passing again21:17
artomjparker, well, I have something in progress locally, lemme at least just finish that up and push it21:18
jparkerartom: ack sounds good21:18
jparkerartom: need to go get the kids from school I can sync up with you tomorrow 21:18
gmannkopecmartin: this is ready https://review.opendev.org/c/openstack/tempest/+/80192021:19
opendevreviewArtom Lifshitz proposed openstack/tempest master: WIP: Don't override images client in compute admin tests  https://review.opendev.org/c/openstack/tempest/+/82006221:24
opendevreviewArtom Lifshitz proposed openstack/whitebox-tempest-plugin master: Stop silently overriding clients with admin clients  https://review.opendev.org/c/openstack/whitebox-tempest-plugin/+/80530021:38
opendevreviewArtom Lifshitz proposed openstack/tempest master: Don't override images client in compute admin tests  https://review.opendev.org/c/openstack/tempest/+/82006221:38
opendevreviewArtom Lifshitz proposed openstack/whitebox-tempest-plugin master: Stop silently overriding clients with admin clients  https://review.opendev.org/c/openstack/whitebox-tempest-plugin/+/80530023:54
opendevreviewArtom Lifshitz proposed openstack/whitebox-tempest-plugin master: Don't show server twice needlessly  https://review.opendev.org/c/openstack/whitebox-tempest-plugin/+/82008123:54

Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!