Wednesday, 2021-02-03

openstackgerritJacob Anders proposed openstack/ironic-python-agent master: Add support for using NVMe specific cleaning  https://review.opendev.org/c/openstack/ironic-python-agent/+/77190400:01
*** MentalSiege has quit IRC00:02
*** ianychoi__ has joined #openstack-ironic00:14
*** tosky has quit IRC00:15
*** ianychoi_ has quit IRC00:17
*** lmcgann has quit IRC00:28
TheJuliarloo: commented on the spec. If you wouldn't mind take a quick look and see if I've clarified some of your questions.00:34
*** cp-- has quit IRC00:50
*** cp- has joined #openstack-ironic00:51
*** xinliang has joined #openstack-ironic00:51
*** tzumainn has quit IRC01:59
openstackgerritJacob Anders proposed openstack/ironic-python-agent master: Add support for using NVMe specific cleaning  https://review.opendev.org/c/openstack/ironic-python-agent/+/77190402:06
*** paras333 has quit IRC02:08
*** paras333 has joined #openstack-ironic02:09
*** zzzeek has quit IRC02:12
*** zzzeek has joined #openstack-ironic02:12
*** lbragstad_ has joined #openstack-ironic02:14
*** k_mouza has joined #openstack-ironic02:15
*** lbragstad has quit IRC02:17
*** k_mouza has quit IRC02:19
*** paras333 has quit IRC02:23
*** paras333_ has joined #openstack-ironic02:23
*** paras333 has joined #openstack-ironic02:24
*** rcernin has quit IRC02:37
*** rloo has quit IRC02:46
*** rcernin has joined #openstack-ironic02:51
openstackgerritMerged openstack/bifrost master: Add release version to release notes  https://review.opendev.org/c/openstack/bifrost/+/77331803:06
*** pmannidi has quit IRC03:11
*** pmannidi has joined #openstack-ironic03:12
openstackgerritMerged openstack/ironic master: Add release version to release notes  https://review.opendev.org/c/openstack/ironic/+/77331403:19
*** dustinc has joined #openstack-ironic03:29
openstackgerritMerged openstack/bifrost master: Automatically configure the idrac hardware type  https://review.opendev.org/c/openstack/bifrost/+/77256203:33
openstackgerritMerged openstack/bifrost master: Trivial: remove a duplicate variable  https://review.opendev.org/c/openstack/bifrost/+/77255703:33
TheJulialbragstad_: on endpoints that return lists, are projects querying the db with the project ID and just allowing readers to hit the endpoint... or... are they doing something else?!? I can see applying a policy after getting an object and being able to compare the policy versus the object, but yeah03:49
*** lbragstad_ is now known as lbragstad03:51
lbragstadi think i depends on the project03:51
lbragstadsome projects have db methods or driver methods that return object for a project03:52
lbragstadwhich is pretty clean (IMO) after the policy check passes03:52
lbragstadothers will fetch the entire list of references after the policy check succeeds and then filter it03:52
lbragstadi think it*03:53
lbragstadin keystone - we fetch the object before we call enforcement03:53
TheJuliaI mean at that poin thte policy is basically "are they a reader"03:54
TheJuliawhich is kind of what I'm thinking I'm going to have to do to get the list of objects, no need to constantly re-apply and re-evaluate, I'd rather push database searches to something that is indexed and that knows how to do that REALLY fast :)03:55
lbragstadyep - that makes sense03:55
TheJulianow, inside that list if your not system scoped, that will be another aspect to consider, but not at the moment03:56
lbragstadyou mean instead of doing db.get_all_resources() then filtering by project03:56
* TheJulia sighs at what seems to be a race condition in the test runner03:56
lbragstaddo something like db.get_resource_for_project(project_id)03:56
TheJulialbragstad: I mean stripping entire fields03:56
TheJulialike "oh, you shouldn't be able to see this, nope!"03:56
lbragstadok - so sanitizing information?03:58
TheJulialess sanitizing, more "there is zero need to expose information that may help you do things your not supposed to ever do"03:58
TheJuliabut I heed to look at that specifically, just trying to get the basic stuff sorted for access03:59
lbragstadok - so you're removing objects from the list response, and not removing attributes from the object, based on the policy03:59
TheJulianot objects from the list, but like03:59
TheJuliathere is no need a lessee would ever need to see the internal_info field03:59
TheJuliaif they are trying to troubleshoot things, that is different, but it begins to reveal internal structural data like the last Ip address the agent heartbeated from04:00
lbragstadah - and internal_info is an attribute of a baremetal host04:00
TheJuliayes04:00
TheJuliaowner on the other hand, it is likely okay04:00
lbragstadok04:00
TheJuliasystem scoped, perfectly fine04:00
lbragstadright04:00
lbragstadyeah - i'm following you line of thinking04:01
lbragstadyour*04:01
lbragstadif you have database/backend methods to give you that, then that's cool and faster than doing it in python at a higher layer i'm sure04:02
TheJuliayeah, unfortunately since it is an object we're converting, it is in the object we're handing back out, so it has to be done higher up04:02
* TheJulia signs and wonders why we're getting 3 records when we should only be able to see two... 50% of the time04:03
*** paras333 has quit IRC04:05
*** uzumaki has joined #openstack-ironic04:08
lbragstadi'm not sure i can help with the race condition, but does that help with the policy enforcement bit?04:09
TheJuliaheh04:10
TheJuliaIt does04:10
TheJuliaI think I see what it is with the race04:11
TheJuliaI think04:11
*** paras333_ has joined #openstack-ironic04:12
TheJuliaYeah, its the same data being exposed to the test runner and my return results not being filtered it seems04:15
*** paras333_ has quit IRC04:16
TheJuliahmm, maybe ot04:18
TheJulianot04:18
* TheJulia digs more04:18
* lbragstad nods04:19
lbragstadgood luck!04:19
*** xinliang has quit IRC04:22
openstackgerritMerged openstack/ironic-python-agent-builder master: Update requirements for diskimage-builder  https://review.opendev.org/c/openstack/ironic-python-agent-builder/+/77182004:26
openstackgerritMerged openstack/ironic master: Fix Mis-Ordering of Bash Variable Definition in DevStack  https://review.opendev.org/c/openstack/ironic/+/77327204:26
openstackgerritMerged openstack/metalsmith master: Change metalsmith to centos8+uefi job by default  https://review.opendev.org/c/openstack/metalsmith/+/77370104:28
TheJuliaokay, yeah, I need to dig deep into it in the morning04:40
TheJuliaIn the mean time, enough of the computers for today04:40
*** pmannidi has quit IRC04:49
*** pmannidi has joined #openstack-ironic04:50
openstackgerritMerged openstack/ironic stable/victoria: For Supermicro BMCs set enable when changing boot device  https://review.opendev.org/c/openstack/ironic/+/77365604:54
*** pmannidi has quit IRC05:13
*** dustinc has quit IRC05:39
*** pmannidi has joined #openstack-ironic05:39
*** uzumaki has quit IRC06:07
*** rcernin has quit IRC06:08
*** rcernin has joined #openstack-ironic06:08
*** rcernin has quit IRC06:17
*** rcernin has joined #openstack-ironic06:17
*** rcernin has quit IRC06:17
*** rcernin has joined #openstack-ironic06:19
*** k_mouza has joined #openstack-ironic06:26
*** k_mouza has quit IRC06:30
openstackgerritankit proposed openstack/sushy stable/victoria: Fixes issue of redfish firmware update  https://review.opendev.org/c/openstack/sushy/+/77160406:52
*** uzumaki has joined #openstack-ironic06:52
*** moshiur has joined #openstack-ironic07:24
arne_wiebalckGood morning, ironic!07:42
openstackgerritMerged openstack/ironic master: Apply force_persistent_boot_device to all boot interfaces  https://review.opendev.org/c/openstack/ironic/+/77338207:51
arne_wiebalckThe foundation has created a playlist for the bare metal SIG on their Youtube channel uploaded the first videos: https://www.youtube.com/playlist?list=PLKqaoAnDyfgoBFAjUvZGjKXQjogWZBLL_07:55
*** anuradha1904 has joined #openstack-ironic07:56
*** Qianbiao has joined #openstack-ironic08:06
openstackgerritDevendra Kulkarni proposed x/sushy-oem-idrac master: Fix for bugs related to virtual media boot  https://review.opendev.org/c/x/sushy-oem-idrac/+/77384808:39
*** tosky has joined #openstack-ironic08:40
*** rpittau|afk is now known as rpittau08:41
rpittaugood morning ironic! o/08:41
arne_wiebalckhey rpittau o/08:42
rpittauhey arne_wiebalck :)08:43
ajyamorning, ironic08:56
ajyaiurygregory: yes, that's exactly how that error looks, and also can see in message that non-default port is used. For now either setup to use default or switch back to HTML4 plugin08:56
ajya*HTML508:56
*** ociuhandu has joined #openstack-ironic09:06
*** lucasagomes has joined #openstack-ironic09:11
*** ociuhandu has quit IRC09:28
*** ociuhandu has joined #openstack-ironic09:33
*** derekh has joined #openstack-ironic09:39
*** ociuhandu has quit IRC09:45
openstackgerritDevendra Kulkarni proposed x/sushy-oem-idrac master: Fix virtual media boot constants and retry count  https://review.opendev.org/c/x/sushy-oem-idrac/+/77384809:46
*** dougsz has joined #openstack-ironic09:56
*** ociuhandu has joined #openstack-ironic10:19
*** ociuhandu has quit IRC10:24
*** rcernin has quit IRC10:24
*** k_mouza has joined #openstack-ironic10:27
*** k_mouza has quit IRC10:31
openstackgerritMark Goddard proposed openstack/tenks master: Test idempotence of deploy and teardown in CI  https://review.opendev.org/c/openstack/tenks/+/66096410:34
*** sshnaidm|afk is now known as sshnaidm|ruck10:35
*** ociuhandu has joined #openstack-ironic10:36
*** ociuhandu has quit IRC10:41
*** ociuhandu has joined #openstack-ironic10:42
openstackgerritMark Goddard proposed openstack/networking-generic-switch master: Create and delete networks in parallel  https://review.opendev.org/c/openstack/networking-generic-switch/+/69240410:44
*** dtantsur|afk is now known as dtantsur10:49
dtantsurmorning ironic10:49
dtantsurin case you, like me, are craving for any good news: the ironic-agent element has been dropped from DIB10:51
dtantsuron the negative side, we need to make sure it does not affect stable/train (I think no)10:51
rpittaugood morning dtantsur :)10:52
rpittauthat is a good news indeed10:52
*** k_mouza has joined #openstack-ironic10:52
iurygregorygood morning Ironic o/10:53
iurygregoryajya, tks!10:53
rpittauhey iurygregory :)10:53
rpittaudtantsur: I was looking at the hardware module in IPA for... reasons and I found your note https://opendev.org/openstack/ironic-python-agent/src/branch/master/ironic_python_agent/hardware.py#L43110:55
rpittaucan't we just point that to utils.LSBLK_COLUMNS ? Or we want to exclude PARTUUID on purpose for some reason?10:55
*** rcernin has joined #openstack-ironic10:55
* dtantsur is trying to remember10:56
rpittau:D10:56
dtantsurrpittau: whatever the reason was, I cannot remember it, and the decision no longer makes sense to me10:56
dtantsurI definitely recall that I did have *some* reasoning behind it10:57
dtantsurbut I guess we can try changing it10:57
rpittauok, I'll propose a test patch with that10:58
rpittauI have a couple more changes, but I'll keep them separate for now10:58
openstackgerritAija Jauntēva proposed openstack/ironic-specs master: Pre-defined system hw configuration in single step  https://review.opendev.org/c/openstack/ironic-specs/+/74072110:59
openstackgerritRiccardo Pittau proposed openstack/ironic-python-agent master: [WIP] Use variable for lsblk columns device info  https://review.opendev.org/c/openstack/ironic-python-agent/+/77387111:02
openstackgerritJacob Anders proposed openstack/ironic-python-agent master: Add support for using NVMe specific cleaning  https://review.opendev.org/c/openstack/ironic-python-agent/+/77190411:15
*** rcernin has quit IRC11:15
openstackgerritDmitry Tantsur proposed openstack/bifrost master: Add a workaround for openSUSE  https://review.opendev.org/c/openstack/bifrost/+/77387211:16
dtantsurlet's hope this helps11:16
openstackgerritMonica Pardhi proposed openstack/ironic stable/ussuri: DRAC: Fix a failure to create virtual disk  https://review.opendev.org/c/openstack/ironic/+/77387411:16
openstackgerritMonica Pardhi proposed openstack/ironic stable/ussuri: DRAC: Fix a failure to create virtual disk  https://review.opendev.org/c/openstack/ironic/+/77027711:26
openstackgerritDmitry Tantsur proposed openstack/bifrost master: docs: explain OS support in terms of two tiers  https://review.opendev.org/c/openstack/bifrost/+/77387511:27
*** ociuhandu has quit IRC11:27
dtantsurTheJulia: added your "operating systems evolve" point to ^^^11:27
* dtantsur is pondering promoting Debian to voting11:29
iurygregoryif is "stable" why not? =)11:35
*** uzumaki has quit IRC11:39
ajyadtantsur: can you clarify on this comment thread - https://review.opendev.org/c/openstack/ironic/+/768353/4/ironic/conductor/rpcapi.py#42711:40
dtantsurajya: I think you can skip can_send_version('1.22') and just use version='1.52' if deploy_steps are provided11:56
dtantsurI think the failure will happen anyway11:56
ajyadtantsur: ok, will look into that.11:57
ajyadtantsur: and about this comment - https://review.opendev.org/c/openstack/ironic/+/768353/6/ironic/api/controllers/v1/node.py#87 which common.py do you mean? Create a new one? Can't see anything suitable11:58
*** ociuhandu has joined #openstack-ironic11:59
openstackgerritJacob Anders proposed openstack/ironic-python-agent master: Add support for using NVMe specific cleaning  https://review.opendev.org/c/openstack/ironic-python-agent/+/77190411:59
dtantsurajya: I think there v1.common or v1.utils12:00
*** rcernin has joined #openstack-ironic12:01
*** ociuhandu_ has joined #openstack-ironic12:12
*** ociuhandu has quit IRC12:15
*** mkowalski_ has joined #openstack-ironic12:22
openstackgerritDmitry Tantsur proposed openstack/ironic-inspector stable/victoria: Fix memcached host address.  https://review.opendev.org/c/openstack/ironic-inspector/+/77367512:36
*** rcernin has quit IRC12:43
dtantsurthe suse workaround passed the CI: https://review.opendev.org/c/openstack/bifrost/+/77387212:44
iurygregory\o/12:45
*** ociuhandu_ has quit IRC12:46
*** ociuhandu has joined #openstack-ironic12:47
*** mkowalski_ has quit IRC12:53
*** mkowalski_ has joined #openstack-ironic12:54
openstackgerritMerged openstack/ironic-prometheus-exporter master: Reconfigure tox.ini  https://review.opendev.org/c/openstack/ironic-prometheus-exporter/+/77216112:54
*** mkowalski_ has quit IRC13:00
*** mkowalski_ has joined #openstack-ironic13:01
*** uzumaki has joined #openstack-ironic13:05
*** mkowalski_ has quit IRC13:07
*** mkowalski_ has joined #openstack-ironic13:08
*** mkowalski_ has quit IRC13:09
*** mkowalski_ has joined #openstack-ironic13:10
*** ociuhandu has quit IRC13:10
*** mkowalski_ has quit IRC13:10
*** ociuhandu has joined #openstack-ironic13:11
*** mkowalski_ has joined #openstack-ironic13:11
*** mkowalski_ has quit IRC13:18
*** mkowalski_ has joined #openstack-ironic13:18
openstackgerritMerged openstack/bifrost master: Add a workaround for openSUSE  https://review.opendev.org/c/openstack/bifrost/+/77387213:20
*** mkowalski_ has joined #openstack-ironic13:20
*** mkowalski_ has quit IRC13:20
*** mkowalski_ has joined #openstack-ironic13:21
*** mkowalski_ has quit IRC13:22
*** mkowalski_ has joined #openstack-ironic13:22
openstackgerritDmitry Tantsur proposed openstack/bifrost stable/victoria: Add a workaround for openSUSE  https://review.opendev.org/c/openstack/bifrost/+/77389613:24
openstackgerritMerged openstack/sushy master: Automatically retry HTTP 5xx on GET requests  https://review.opendev.org/c/openstack/sushy/+/77371113:32
*** rloo has joined #openstack-ironic13:37
openstackgerritDmitry Tantsur proposed openstack/sushy stable/victoria: Automatically retry HTTP 5xx on GET requests  https://review.opendev.org/c/openstack/sushy/+/77389713:38
iurygregoryI have a fix for the IPA, had to add some mocks to get_node_boot_mode13:40
dtantsurnice!13:42
iurygregorydtantsur, do I need a release note?13:42
iurygregoryonly unit tests (so I don't think it would be necessary)13:43
dtantsurthen no13:47
iurygregorylet's see how it goes13:48
openstackgerritIury Gregory Melo Ferreira proposed openstack/ironic-python-agent master: Mock tests to return bios boot mode  https://review.opendev.org/c/openstack/ironic-python-agent/+/77389113:48
iurygregory20sec to send the patch \o/13:48
*** tosin has joined #openstack-ironic13:51
rpittauit's super slow for me too since last week13:52
*** lbragstad has quit IRC13:57
*** zaneb has quit IRC13:58
iurygregoryfor me it's since the update XD14:01
*** ociuhandu has quit IRC14:08
*** ociuhandu has joined #openstack-ironic14:09
*** lmcgann has joined #openstack-ironic14:15
* TheJulia had the worst migraine in years last night14:24
*** paras333_ has joined #openstack-ironic14:24
dtantsurouch14:26
dtantsurmorning TheJulia, take it easy today14:26
*** ociuhandu has quit IRC14:27
*** ociuhandu has joined #openstack-ironic14:28
openstackgerritRiccardo Pittau proposed openstack/ironic-python-agent master: Use variable for lsblk columns device info  https://review.opendev.org/c/openstack/ironic-python-agent/+/77387114:29
TheJuliadtantsur: yeah, I think I need to find my glasses too. I think that made things so much worse yesterday starting to dig an issue in our api code14:31
TheJuliain nodes.py :(14:31
*** ociuhandu has quit IRC14:32
openstackgerritRiccardo Pittau proposed openstack/ironic-python-agent master: Use variable for lsblk columns device info  https://review.opendev.org/c/openstack/ironic-python-agent/+/77387114:32
*** akahat|rover is now known as akahat14:34
openstackgerritDmitry Tantsur proposed openstack/bifrost master: Consistent pip_opts handling + drop --no-cache-dir  https://review.opendev.org/c/openstack/bifrost/+/77391814:35
*** lbragstad has joined #openstack-ironic14:35
*** uzumaki has quit IRC14:40
openstackgerritMerged openstack/ironic master: Redfish secure boot management  https://review.opendev.org/c/openstack/ironic/+/77149314:43
TheJulia\o/14:45
TheJulianow we just need to review redfish raid14:45
*** tzumainn has joined #openstack-ironic14:45
TheJuliao/ tzumainn14:46
openstackgerritRiccardo Pittau proposed openstack/ironic-python-agent stable/victoria: Prevent broken partition image UEFI deploys  https://review.opendev.org/c/openstack/ironic-python-agent/+/77074614:46
tzumainnTheJulia, hi!14:46
openstackgerritMerged openstack/ironic master: Raw image size estimation improved  https://review.opendev.org/c/openstack/ironic/+/54483914:49
openstackgerritVerification of a change to openstack/ironic-inspector failed: Remove grenade jobs from old stable branches  https://review.opendev.org/c/openstack/ironic-inspector/+/77333214:49
openstackgerritRiccardo Pittau proposed openstack/ironic-python-agent stable/victoria: Prevent broken partition image UEFI deploys  https://review.opendev.org/c/openstack/ironic-python-agent/+/77074614:53
TheJuliatzumainn: so I'm seeming to encounter a race in testing project scope with owner + admin role :\15:01
TheJuliaerr, encountering15:01
*** MentalSiege has joined #openstack-ironic15:02
tzumainnTheJulia, ah, what's happening?15:02
openstackgerritRiccardo Pittau proposed openstack/ironic-python-agent stable/victoria: Prevent broken partition image UEFI deploys  https://review.opendev.org/c/openstack/ironic-python-agent/+/77074615:04
*** MentalSiege has quit IRC15:06
*** ociuhandu has joined #openstack-ironic15:06
TheJuliatzumainn: I'm not quite sure yet15:08
tzumainnTheJulia, do you have a patch up? I'm happy to take a look15:09
TheJuliaI think there is a mix of a test runner race and the project id filtered view not working as expected15:09
TheJuliacoming right up15:10
* TheJulia waits for gerrit to do its thing15:11
openstackgerritJulia Kreger proposed openstack/ironic master: RBAC System Scope: observer -> reader  https://review.opendev.org/c/openstack/ironic/+/77245015:12
openstackgerritJulia Kreger proposed openstack/ironic master: Initial Project scoped tests  https://review.opendev.org/c/openstack/ironic/+/77245115:12
openstackgerritJulia Kreger proposed openstack/ironic master: WIP: Project Scoping Node endpoint  https://review.opendev.org/c/openstack/ironic/+/77392415:12
*** k_mouza has quit IRC15:14
*** ociuhandu has quit IRC15:15
TheJuliatzumainn: that very last patch15:17
tzumainnyep, taking a look!15:17
*** ociuhandu has joined #openstack-ironic15:18
TheJuliaif you run all of test_acl, you can easily kind of see it15:25
TheJuliabut finding why seems to be the troublemaker15:26
tzumainnit's TestRBACProjectScoped.test_project_scoped_00007_owner_admin_can_get_node, correct?15:27
TheJuliayup15:27
TheJuliashould only be able to see two nodes not 3..15:27
TheJuliaoh15:29
TheJuliait looks like somehow the first policy is permitting it15:29
TheJuliabut it shouldn't....15:29
* TheJulia wonders if the config is toggling in the test run15:31
tzumainnTheJulia, I suspect it's because of the settings on baremetal:node:list_all, which I believe allows someone to see *all* nodes regardless of whether they're the owner or lessee15:38
TheJuliayeah, I'm thinking the same thing15:39
TheJuliaI think somehow without a target being passed to resolve the the node/target association, the policy check is still passing15:39
TheJuliaso I think listing everything is just going to need a scope restricted policy15:40
TheJuliawhich kind of makes sense in a way15:40
* TheJulia restricts the policy and reruns15:41
tzumainnwhat did you change the policy to? I updated baremetal:node:list to match baremetal:node:get, and reduced the scope of list_all to SYSTEM_READER, and got... different errors15:42
tzumainnbut I may be misunderstanding how this works15:42
TheJulialist_all to system_reader and scope of system only15:42
TheJuliabecause the fallback doesn't also fallback on a 500 error15:43
openstackgerritRiccardo Pittau proposed openstack/bifrost stable/ussuri: Fix CI issues  https://review.opendev.org/c/openstack/bifrost/+/76674215:44
tzumainnokay, yeah, I tried that and got 500s15:44
rlooTheJulia: commented on rbac spec. Might be useful to let me know how high level you want the spec to be at. That'll give me an idea as to how much info might be needed for me to grok it. At the end of the day, each policy & setting is really what I want to see, but having guidelines etc on how those are derived (and so that they are also consistent) is very useful.15:44
openstackgerritRiccardo Pittau proposed openstack/bifrost stable/ussuri: Fix CI issues  https://review.opendev.org/c/openstack/bifrost/+/76674215:45
*** moshiur has quit IRC15:46
openstackgerritDmitry Tantsur proposed openstack/ironic master: Prevent redfish-virtual-media from being used with Dell nodes  https://review.opendev.org/c/openstack/ironic/+/77161915:51
*** k_mouza has joined #openstack-ironic15:52
tzumainnTheJulia, so the test is still failing after I changed the policy; looking at the output, it looks like when the API request fails the baremetal:node:list_all check, it returns a 500 instead of HTTPForbidden15:55
tzumainnthe latter is what's caught in the API code to fallback to the 'baremetal:node:list' check15:55
tzumainnI'm not sure if there may be an issue mocking, or if this is just new policy behavior to adjust code around?15:56
*** ociuhandu_ has joined #openstack-ironic16:00
*** Qianbiao has quit IRC16:02
*** ociuhandu has quit IRC16:03
tzumainnTheJulia, I think I figured it out16:04
tzumainnit's because on list operations, there's no concept of node.owner or anything, because there's no singular node16:05
tzumainnbut SYSTEM_OR_PROJECT_READER assumes that there is16:05
tzumainnif you change the list policy to simply check if a user has the reader role, then the tests pass16:07
tzumainnTheJulia, oh, and I also changed https://opendev.org/openstack/ironic/src/branch/master/ironic/api/controllers/v1/utils.py#L1578 to no longer be selective about exceptions; I'm not entirely sure what's going on there16:10
openstackgerritAija Jauntēva proposed openstack/ironic master: Add 'deploy steps' parameter for provisioning API  https://review.opendev.org/c/openstack/ironic/+/76835316:26
openstackgerritDmitry Tantsur proposed openstack/sushy-tools master: Populate System Manufacturer  https://review.opendev.org/c/openstack/sushy-tools/+/77394016:29
*** ociuhandu_ has quit IRC16:30
*** tosin has quit IRC16:30
openstackgerritMerged openstack/ironic-inspector stable/victoria: Fix memcached host address.  https://review.opendev.org/c/openstack/ironic-inspector/+/77367516:31
openstackgerritDmitry Tantsur proposed openstack/ironic master: Trivial: log the newly detected vendor  https://review.opendev.org/c/openstack/ironic/+/77394216:32
openstackgerritankit proposed openstack/ironic stable/victoria: Fixes issue of redfish firmware update  https://review.opendev.org/c/openstack/ironic/+/77391016:33
*** ociuhandu has joined #openstack-ironic16:38
openstackgerritAija Jauntēva proposed openstack/ironic master: Add 'deploy steps' parameter for provisioning API  https://review.opendev.org/c/openstack/ironic/+/76835316:48
*** sshnaidm|ruck is now known as sshnaidm16:52
openstackgerritDerek Higgins proposed openstack/ironic master: Don't mark an agent as alive if rebooted  https://review.opendev.org/c/openstack/ironic/+/77394917:06
*** uzumaki has joined #openstack-ironic17:18
*** juanoterocas has joined #openstack-ironic17:29
*** dougsz has quit IRC17:30
*** lucasagomes has quit IRC17:31
*** ociuhandu_ has joined #openstack-ironic17:34
*** k_mouza has quit IRC17:35
*** ociuhandu has quit IRC17:37
*** ociuhandu_ has quit IRC17:38
*** juanoterocas has quit IRC17:39
openstackgerritRiccardo Pittau proposed openstack/bifrost master: [WIP] Collect firewalld info if present  https://review.opendev.org/c/openstack/bifrost/+/77395317:40
*** k_mouza has joined #openstack-ironic17:41
openstackgerritMerged openstack/ironic master: Update python packages to python3 in quickstart.rst  https://review.opendev.org/c/openstack/ironic/+/76486817:42
TheJuliatzumainn: I had basically came to the same conclusion while I was looking at it during my last meeting. Part of it is the 500 is expected I think becasue it makes sense, different mode of use should map to different controls17:46
*** k_mouza has quit IRC17:52
*** ociuhandu has joined #openstack-ironic17:56
arne_wiebalckbye everyone o/17:56
*** ociuhandu has quit IRC18:01
*** derekh has quit IRC18:02
iurygregoryyay edit hashtag patch got a +W \o/18:06
rpittaugood night! o/18:08
*** rpittau is now known as rpittau|afk18:08
*** dtantsur is now known as dtantsur|afk18:16
TheJulia\o/18:20
TheJuliatzumainn: needed to catch the exception from the policy checck code18:20
tzumainnahhh18:22
TheJuliablah18:49
TheJulianow /v1/nodes/detail is matching baremetal:node:get18:49
iurygregorywow18:59
TheJulialbragstad: is there anything regarding ordering rules that we should be aware of?19:00
TheJuliayeah, it gets routed to get_one instead of detail19:02
TheJuliainteresting....19:02
TheJuliaI guess something is wrong with the request routing19:02
* TheJulia makes lunch19:02
iurygregoryhabemus edit hashtag \o/19:06
iurygregory<insert happy dance>19:06
TheJulia\o/19:06
iurygregorywe probably need to discuss monday what hashtags we will use19:07
TheJulia++19:07
*** ayoung has joined #openstack-ironic19:09
*** k_mouza has joined #openstack-ironic19:15
openstackgerritMerged openstack/ironic master: Swap Metalsmith job out for centos8-uefi  https://review.opendev.org/c/openstack/ironic/+/77370219:15
*** k_mouza has quit IRC19:19
TheJuliaI see the deal, the format is deprecated19:23
TheJuliaugh19:26
TheJuliano, a typo19:26
*** k_mouza has joined #openstack-ironic19:35
*** k_mouza has quit IRC19:40
*** rcernin has joined #openstack-ironic19:49
*** ociuhandu has joined #openstack-ironic20:04
*** rcernin has quit IRC20:20
*** rcernin has joined #openstack-ironic20:20
*** sshnaidm is now known as sshnaidm|afk20:52
*** SpamapS has quit IRC20:52
*** juanoterocas has joined #openstack-ironic21:03
*** uzumaki has quit IRC21:06
*** nam-est has quit IRC21:06
*** paras333_ has quit IRC21:07
*** paras333_ has joined #openstack-ironic21:08
*** paras333_ has quit IRC21:12
*** rcernin has quit IRC21:22
*** anuradha1904 has quit IRC21:32
*** ociuhandu has quit IRC21:36
*** k_mouza has joined #openstack-ironic21:44
*** k_mouza has quit IRC21:48
*** SpamapS has joined #openstack-ironic21:54
trandlestoday's edition of dumb question from trandles: I have an image that deployed successfully (at least IPA thinks it was successful) but it doesn't look like it ran grub-install because the system falls through booting from disk on a reboot. Any hints?21:59
*** rcernin has joined #openstack-ironic22:05
*** rcernin has quit IRC22:06
*** rcernin has joined #openstack-ironic22:07
*** openstackgerrit has quit IRC22:11
*** juanoterocas has quit IRC22:20
*** paras333_ has joined #openstack-ironic22:27
*** bfournie has quit IRC22:37
*** rcernin has quit IRC22:45
jandershey trandles22:57
jandersit's hard to tell without more details, however I had issues like this when I accidentally swapped full disk image vs partition image22:57
trandlesAnswering my own question: It was a BIOS problem on the hardware. Frustrating part is switching the BIOS from BIOS->UEFI->BIOS "fixed" it?22:57
jandersoh dear22:57
janderssounds like something failed to re-read something22:58
trandlesWe didn't redeploy anything. It just magically started working.22:58
jandersfrustrating indeed22:58
*** paras333_ has quit IRC22:59
trandleswe have another half dozen of these systems, so we're going to deploy them and "see what happens"23:03
*** pmannidi has quit IRC23:21
*** pmannidi has joined #openstack-ironic23:21
TheJuliatrandles: weeeeirdddddddd23:27
*** rloo has quit IRC23:33
*** tosky has quit IRC23:54

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