Monday, 2021-10-04

iurygregorygood morning Ironic o/05:50
arne_wiebalckGood morning, iurygregory and Ironic!06:17
iurygregoryarne_wiebalck, o/06:18
rpittaugood morning ironic! o/07:25
iurygregorymorning rpittau o/07:25
rpittauhey iurygregory :)07:25
*** sshnaidm|off is now known as sshnaidm07:26
dtantsurmorning ironic07:36
iurygregorymorning dtantsur o/07:37
ajyamorning ironic07:53
ajyacan anyone take a look at ironic wallaby backports - https://review.opendev.org/q/project:openstack/ironic+branch:stable/wallaby+status:open ?07:53
rpittauajya: good morning! I'm having at exact this moment :)08:06
rpittauerr... "having a look"08:06
dtantsuralso could I get some reviews on https://review.opendev.org/c/openstack/sushy-tools/+/806253 and https://review.opendev.org/c/openstack/bifrost/+/810686 please?08:07
ajyathanks rpittau 08:13
iurygregoryajya, if possible can you also push the backports to bugfix/18.1 ? 08:42
ajyaiurygregory: ok, will do. Thanks for the reviews.08:50
opendevreviewAija Jauntēva proposed openstack/ironic bugfix/18.1: Add iDRAC configuration mold docs  https://review.opendev.org/c/openstack/ironic/+/81220908:55
opendevreviewAija Jauntēva proposed openstack/ironic bugfix/18.1: Redfish RAID: Use identity instead of durable_name  https://review.opendev.org/c/openstack/ironic/+/81231008:55
opendevreviewAija Jauntēva proposed openstack/ironic bugfix/18.1: Add better error messages for invalid conf molds  https://review.opendev.org/c/openstack/ironic/+/81231108:56
opendevreviewAija Jauntēva proposed openstack/ironic bugfix/18.1: Fix iDRAC import configuration job with errors  https://review.opendev.org/c/openstack/ironic/+/81231208:56
opendevreviewAija Jauntēva proposed openstack/ironic bugfix/18.1: Fix iDRAC import configuration missing task handling  https://review.opendev.org/c/openstack/ironic/+/81231308:56
opendevreviewMerged openstack/bifrost master: Enable authentication in sushy-tools  https://review.opendev.org/c/openstack/bifrost/+/81068609:24
opendevreviewMerged openstack/ironic stable/wallaby: Always update cache for HTTP images if Last Modified is unknown  https://review.opendev.org/c/openstack/ironic/+/80966609:36
opendevreviewMerged openstack/ironic stable/wallaby: Fix iDRAC import configuration missing task handling  https://review.opendev.org/c/openstack/ironic/+/80950909:51
opendevreviewMerged openstack/ironic stable/wallaby: Fix iDRAC import configuration job with errors  https://review.opendev.org/c/openstack/ironic/+/80955109:51
opendevreviewMerged openstack/ironic stable/wallaby: Add iDRAC configuration mold docs  https://review.opendev.org/c/openstack/ironic/+/81149609:51
*** jamesdenton_alt is now known as jamesdenton11:42
arne_wiebalckI am seeing a surprisingly high rate of creation errors for s/w RAID on NVMe drives: seems like the kernel does not see the partition in time ... anyone seen this before? Looks like a timing issue I never saw on our SSDs.11:47
jssfrarne_wiebalck, I think we were seeing something similar on CentOS 711:51
jssfr(and it went away on CentOS 8)11:51
arne_wiebalckjssfr: hmm ... our IPA is already on c8 at the moment12:01
arne_wiebalckjssfr: thanks :)12:01
jssfrI might poke the guy who was working on that tomorrow, he's not working on mondays12:01
arne_wiebalckjssfr: thanks, very kind!12:08
opendevreviewDmitry Tantsur proposed openstack/ironic-python-agent master: Use two more functions from disk_utils  https://review.opendev.org/c/openstack/ironic-python-agent/+/80639312:38
jcosmaohello12:41
jcosmaoarne_wiebalck, i got a similar bug for md creation on nvme (IPA on debian10). 12:42
arne_wiebalckjcosmao: interesting12:43
jcosmaochecking my logs12:43
jcosmaoin create_configuration,  i got few errors at md creation (mdadm --create /dev/md0 --force --run --metadata=1 --level 1 --raid-devices 2 /dev/nvme0n1p1 /dev/nvme1n1p1)12:44
jcosmaoerror in dmesg: device /dev/nvme1n1p1 out of raid during sync12:44
arne_wiebalckjcosmao: mine is "Stderr: 'mdadm: cannot open /dev/nvme1n1p1: No such file or directory\n'"12:45
arne_wiebalckjcosmao: we have some code to ask the kernel to re-read partitions, but maybe this does not work on nvme drives12:46
arne_wiebalckjcosmao: the mdadm call is right after partition creation, so this might be a timing issue12:47
jcosmaoi added a call to  _udev_settle()  after part creation,  (my ipa is not up to date, so code may have changed since)12:47
arne_wiebalckjcosmao: which also fits the fact that re-re-re-trying eventually works12:47
opendevreviewDmitry Tantsur proposed openstack/bifrost master: Remove the keystone admin endpoint  https://review.opendev.org/c/openstack/bifrost/+/80620712:47
jcosmaoyes, it was same bug12:47
arne_wiebalckI thought we had a 'partx -u' there ... checking ...12:48
arne_wiebalckjcosmao: https://opendev.org/openstack/ironic-python-agent/src/branch/master/ironic_python_agent/hardware.py#L2155-L216312:51
jcosmaoyep, there is a partx call12:51
arne_wiebalckdoesn't cut it, it seems12:52
arne_wiebalckyou added _udev_settle() at this place?12:52
jcosmaoi have this patch on my side:12:52
jcosmao                    utils.execute('parted', device, '-s', '-a',12:52
jcosmao                                  'optimal', '--', 'mkpart', 'primary',12:52
jcosmao                                  start_str, end_str)12:52
jcosmao                    # Parted partition creation is asynchronous.12:52
jcosmao                    # Wait udev events are processed before going to12:52
jcosmao                    # next step. This avoid getting error at mdadm create12:52
jcosmao                    # because a device is not ready yet.12:52
jcosmao                    _udev_settle()12:52
jcosmaooups sorry12:52
iurygregoryhttps://paste.opendev.org/ is your friend :D 12:53
jcosmaoyep thx :)12:53
iurygregorynp =)12:53
jcosmaohttps://paste.opendev.org/show/809765/12:54
arne_wiebalckjcosmao: this looks like my issue ... in fact, I was not aware there is some asynchronicity here!12:55
arne_wiebalckjcosmao: the kernel notifies udev (which is asynchronous)12:56
arne_wiebalckjcosmao: I will add this and see how it goes, thanks!12:56
jcosmaook great, let me know12:57
jcosmaoi didn't get any error since i applied this patch12:57
opendevreviewMerged openstack/ironic bugfix/18.1: Fix driver task pattern to reduce periodic db load  https://review.opendev.org/c/openstack/ironic/+/80937613:12
dtantsurhalf of the problems in IPA are solved by adding `udev settle`13:14
TheJuliagood morning13:16
* TheJulia tries to wake up13:17
rpittaugood morning TheJulia :)13:17
dtantsurTheJulia: morning13:19
iurygregorygood morning TheJulia =)13:20
* TheJulia tries to remove sleep from eyes and fails... noting sleep seems like a good idea13:24
dtantsurSLEEEEEP13:49
*** TheJulia is now known as needsleep13:49
*** needsleep is now known as TheJulia13:49
iurygregoryI just had a heart attack after reading https://twitter.com/openinfradev/status/1445011468248920071 <3 14:27
TheJuliaheh14:35
TheJuliaiurygregory: I edited the agenda, it was from last week still14:35
iurygregorywho is going to run the meeting today?14:36
TheJuliaI believe I am14:39
dtantsurin-person summit, yay! looking forward to seeing you all14:44
iurygregory\o/ yes!14:45
TheJulia\o/ \o\ \o/ /o/ \o/14:45
iurygregoryTheJulia, wasn't dtantsur today? 14:46
iurygregoryat least based on the logs... :D14:46
TheJuliadtantsur: oh, then I guess it is you14:46
TheJuliaoh right, I knew I had jury duty14:46
* TheJulia still might, need to "check" every day of the week to see if I need to go in14:46
dtantsurTheJulia: I'm fine with letting you drive it, I risk falling asleep right in the middle :)14:47
TheJuliadtantsur: didn't sleep well?14:48
iurygregoryI can run the meeting also14:48
dtantsurI think I slept well, I did not wake up well :)14:48
TheJuliaheh14:48
dtantsurdunno how my body works14:48
dtantsur35 years until the retirement, and I'm already tired more often than not14:48
* TheJulia sighs14:48
TheJuliawhat is this retirement thing you speak of?14:49
dtantsurit's when you stop working and start growing potatoes, complaining about the youth and voting for conservatives :)14:49
JayF> I did not wake up well :) <--- I think you get that as a birthday present something in your 30s :P14:50
dtantsurahh!14:50
JayFWake up, count the aches, oh hey, there's a new one right there in my wake-up bone14:50
iurygregoryJayF, I need to agree...14:50
TheJuliadtantsur: oh... well... that doesn't sound like fun.14:51
dtantsurno fun expected, alas14:51
TheJuliaI was on the roof of the mobile command center this past weekend. everything hurts.14:52
TheJulia(painted it with a highly reflective white paint to keep it cooler14:52
TheJuliaoh yes, everying does indeed hurt14:54
TheJuliathing14:54
TheJuliahttps://twitter.com/MaartjeME/status/144496984727274291314:55
dtantsurI had an intensive bouldering session yesterday, I understand "everything hurts" very well14:55
dtantsurwe need plush human-sized pixie boots14:55
opendevreviewMerged openstack/ironic master: [iRMC] Avoid repeatedly resuming clean after creating raid configuration  https://review.opendev.org/c/openstack/ironic/+/80902214:56
TheJuliadtantsur: we *really* do14:56
iurygregoryhuman-sized....14:57
iurygregory> 150cm?14:57
JayFMine is not oging to sound nearly as impressive, but I spent like 2 hours re-cable-managing my desk area in the office14:57
JayFwhich was a lot more physical effort than I expected lol14:58
TheJuliaFWIW, https://twitter.com/MaartjeME/status/1444973019189891076 is my favorite14:59
TheJulia#startmeeting ironic15:00
opendevmeetMeeting started Mon Oct  4 15:00:25 2021 UTC and is due to finish in 60 minutes.  The chair is TheJulia. Information about MeetBot at http://wiki.debian.org/MeetBot.15:00
opendevmeetUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.15:00
opendevmeetThe meeting name has been set to 'ironic'15:00
TheJuliao/15:00
TheJulia#chair iurygregory 15:00
opendevmeetCurrent chairs: TheJulia iurygregory15:00
erbarro/15:00
rpittauo/15:00
TheJuliaOur agenda this week can be found on the wiki.15:00
TheJulia#link https://wiki.openstack.org/wiki/Meetings/Ironic#Agenda_for_next_meeting15:00
iurygregoryo/15:00
TheJuliaIt appears, we have a fairly short agenda...15:00
rlooo/15:01
ajyao/15:01
dtantsuro/15:01
rpioso\o15:01
bfournieo/15:01
TheJuliaSo hopefully this will be a quick meeting, and then we can get back to plotting how to save the Blåhaj15:01
TheJuliaIn accordance with the prophecy :)15:01
* iurygregory googles - Blåhaj15:02
arne_wiebalcko/15:02
* TheJulia may have reached silly before 8 AM15:02
TheJulia#Announcements / Reminders15:02
TheJuliaWe have two items this week on the agenda.15:02
TheJulia#info PTG is in two weeks15:02
TheJulia#link https://www.eventbrite.com/e/project-teams-gathering-october-2021-tickets-16123566922715:02
TheJulia#link https://etherpad.opendev.org/p/ironic-yoga-ptg15:02
TheJuliaiurygregory: when should we expect the etherpad to begin its transformation into an agenda15:03
iurygregoryby EOW =)15:03
TheJuliaSounds like a plan!15:03
stendulkero/15:03
TheJuliaNext item, and hopefully this one brings joy to everyone on the meeting!15:03
TheJulia#info the 2022 Open Infrastructure Summit will be in person!15:04
iurygregory<insert beer to continue the meeting> 15:04
TheJulia#link https://twitter.com/openinfradev/status/144501146824892007115:04
TheJuliaSo start plotting your presentation ideas!15:04
iurygregoryyes! \o/15:04
rpiosoTheJulia: When will it be held?15:04
TheJuliarpioso: Announcement will be on Wednesday.15:05
TheJuliaI *think* Q2 timeframe, but I honestly don't remember.15:05
rpiosoTheJulia: Thank you15:06
TheJuliaiurygregory: did we have any action items last week?15:06
iurygregoryI wasn't present last week (holiday in CZ)15:06
TheJuliaoh right15:06
TheJuliaokay15:06
TheJuliaSo, before we proceed onward with the agenda, does anyone have anything to announce or remind us of?15:06
iurygregoryI don't think so =)15:07
TheJuliaNo action items it appears15:07
TheJulia#topic Review subteam status reports15:07
TheJuliahttps://etherpad.opendev.org/p/IronicWhiteBoard staring around line 6215:07
TheJuliaiurygregory: I was going to ask about privsep.. but if your going to try to get back to it this week then I'll hold off15:10
TheJuliasdanni: you around?15:10
TheJulialmcgann: ^^15:10
iurygregoryTheJulia, I plan to at least update the patch during this week, but I might need some help to finish the whole work 15:11
TheJuliaiurygregory: ack, lmk if pairing up would help15:11
sdanniTheJulia: yes15:11
iurygregoryTheJulia, sure =)15:11
lmcgannpresent15:11
TheJulialmcgann: sdanni: any progrtess with reviews/feedback w/r/t attestation/keylime? Asking because we're doing subteam status review15:12
* iurygregory will try to look again at the keylime patches this week 15:12
sdanniI submitted a new patch for attestation extension: https://review.opendev.org/c/openstack/ironic-python-agent/+/80351015:13
TheJuliasdanni: ack, if you add a note on the whitebaord every week, it helps with visibility15:13
TheJuliaAround line 126 :)15:14
sdannigotcha!15:14
lmcgannI submitted an updated attestation interface patch addressing the comments and updating the api versions. As for the keylime interface, i updated the code to use generic urls for allowlist downloading.15:14
TheJuliaIt will make sense once looked at15:14
TheJulialmcgann: awesome15:14
TheJuliaSo onward?15:14
iurygregory++15:15
TheJulia#topic Deciding on priorities for the coming week15:15
TheJulia#link https://review.opendev.org/q/status:open+hashtag:ironic-week-prio15:15
iurygregoryI've added two patches from janders_ https://review.opendev.org/c/openstack/ironic/+/800001 https://review.opendev.org/c/openstack/ironic/+/80403215:16
TheJuliaI'd like to add https://review.opendev.org/c/openstack/ironic/+/810249 to the list, since it merge conflicts easily15:16
TheJuliaas it is a bit... invasive.15:16
iurygregory++15:16
TheJuliaAnyone have anything else they would like to add to the list this week?15:18
iurygregoryI will take a look at the stable+bugfix branches to see if there is anything we want to backport or any open patches15:20
TheJuliaiurygregory: sounds good15:20
TheJuliaOnward?15:21
rpittaulet's15:21
iurygregory++15:21
TheJuliaWe have no discussion topics, so onward to the SIG15:21
TheJulia#topic Baremetal SIG15:21
TheJulia#link https://etherpad.opendev.org/p/bare-metal-sig15:21
TheJuliaarne_wiebalck: did it get tweeted?15:21
arne_wiebalckTheJulia: not yet15:21
arne_wiebalckTheJulia:  I will send announcements soon.15:22
iurygregoryit will be another operator's user's feedback?15:22
arne_wiebalckTheJulia: tomorrow I think15:22
arne_wiebalckiurygregory: yes15:22
iurygregoryguilhermesp, fyi ^15:22
TheJuliaarne_wiebalck: ack, lmk I'll share it internally with a few folks15:22
arne_wiebalckTheJulia: ok, will do15:22
TheJuliaNobodyCam: ^^ you may be interested in this once announced15:22
TheJuliaDo we have anything else SIG related to dsicuss today?15:22
arne_wiebalckI don't think there is anything else for the SIG.15:23
TheJuliaOkay then!15:23
TheJulia#topic Open Discussion15:23
TheJuliaDoes anyone have anything they would like to discuss?15:23
iurygregoryI have a question 15:23
iurygregoryTheJulia, regarding https://github.com/OpenStackweb/ironic-website/pull/43 I can try to test locally if you want15:24
iurygregorysince CI seems unhappy =)15:24
TheJuliaiurygregory: oh yeah, forgot about that. if you wouldn't mind that would be appreciated15:24
iurygregoryack =)15:24
TheJuliaI *did* try to reach out to foundation staff since that error seems to be basically undebugable and didn't get a reply15:24
iurygregory='(15:25
iurygregoryit's life15:25
TheJuliaso true15:25
TheJuliaSo anything else? Shall we plan to save the ikea shark stuffed animals now?15:26
arne_wiebalckI have one more announcement.15:26
TheJuliaarne_wiebalck: sure!15:27
arne_wiebalckI'd like to introduce Marina , she just joined the CERN Ironic team.15:27
Marina_hello everyone:)15:27
dtantsurwelcome Marina_!15:27
TheJuliahi Marina_!15:27
iurygregorywelcome Marina_ !15:27
rpittauhey welcome Marina_ :)15:27
JayFo/ Marina_ 15:27
Marina_thanks!15:27
rpiosoMarina_: Good morning. Welcome to the community.15:27
stendulkerwelcome Marina_ !15:27
arne_wiebalckMarina_: this is the awesome Ironic community :)15:28
JayFMarina_ (and any others; really): Do you have or want a Pixie Boots sticker for your laptop, that makes you an official Ironic contributor :D 15:28
JayFI think I have a half dozen still in a box over here15:28
iurygregoryJayF, WOOT!? /me wants more pixie stickers :D15:29
Marina_sure:)15:29
* arne_wiebalck ran out of Ironic stickers as well15:29
rloohi Marina_, I hope you'll like it here. Welcome! :D15:29
TheJuliaWe should totally work up some swag stuff for 2022 and stickers15:29
JayFOK apparently I have 3 of the foundation-style and 1 of the old-school (you can't have the old school one)15:29
iurygregoryTheJulia, ++ agree15:29
TheJuliaI have some foundation styles but I need to get more ordred15:29
iurygregoryI have the old school one :D15:29
iurygregoryand 1 foundation-style =D15:30
rpittauI think I also have the old school one :)15:30
JayFiurygregory: cool, then I'll leave you off the list for now since I wanna keep one or two for future use 15:30
rloowonder what pixie boots with a mask on, would look like...15:30
* TheJulia senses the need to get a sticker order placed to be... strong.15:30
JayFthe old school one is like marking you as an OG Ironic'r15:30
JayFrloo++ that'd be AWESOME for the summit15:30
iurygregoryrloo, ++15:30
dtantsur:D15:30
iurygregorywe need the pxie boot mask for the summit :D15:30
rloonot sure foundation would approve so would need to be old style pixie boot? ;)15:31
iurygregory+115:31
TheJuliarloo: we basically have free use for the project logos15:31
iurygregoryorly? :O15:31
dtantsurneat15:32
TheJuliayes, as long as we're not making money with it15:32
TheJuliaand if it is for community, even better15:32
iurygregorynice \o/15:32
TheJuliaGranted, I'm basically summing up pages of policy15:32
TheJuliabut yeah15:32
rloojust thinking, maybe the mask should just hang off of the stick. or will we be wearing masks still?15:32
rloo(that's my contribution to the topic. heh.)15:33
rpittauthat's too soon to see I guess :/15:33
TheJuliarloo: I suspect we will be wearing masks for some time to come :(15:33
iurygregoryyeah15:33
TheJuliaeven *with* vaccination15:33
* rloo too optimistic15:33
JayFIf for nothing else than continutity planning for OpenStack -- you don't want all the critical contributors having a spread event15:33
TheJulia++15:34
TheJuliayeah15:34
rloomask on then!15:34
TheJuliaiurygregory: I feel like we need an ideas section on the ptg etherpad, and from there we can figure out what makes sense. I'm happy to kick in for a batch or three of stickers15:35
rlooomg. what about the foundation giving out masks with the pixie boot logo (or other project logos). easy to identify who is interested in which (one) project!15:35
iurygregoryTheJulia, makes sense to me ++15:35
* TheJulia also has the 4" classic pixie boots for cars stickers... albeit only 15 irght now15:35
TheJuliaright now15:35
TheJuliaAnyway, once ordered we can figure out shipping/distribution/etc15:36
* iurygregory will finally be able to use the pixie boot car sticker next year \o/15:36
TheJuliaiurygregory: \o/15:36
TheJuliaSo onward?!15:36
iurygregoryyes15:36
TheJulia#topic Who is going to run the next meeting?15:36
iurygregoryI can 15:36
TheJuliaiurygregory: Awesome, thanks!15:37
TheJuliaThanks everyone!15:37
iurygregory:D15:37
TheJuliaHave a wonderful week!15:37
TheJulia#endmeeting15:37
opendevmeetMeeting ended Mon Oct  4 15:37:29 2021 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)15:37
opendevmeetMinutes:        https://meetings.opendev.org/meetings/ironic/2021/ironic.2021-10-04-15.00.html15:37
opendevmeetMinutes (text): https://meetings.opendev.org/meetings/ironic/2021/ironic.2021-10-04-15.00.txt15:37
opendevmeetLog:            https://meetings.opendev.org/meetings/ironic/2021/ironic.2021-10-04-15.00.log.html15:37
JayFdid anyone figure out the location from the tweets yet?15:37
TheJulianow, to CAFFINATE15:37
JayFI'll happily take a spoiler in DM from someone who knows LOL15:37
* TheJulia feels like that last comment was for her :)15:37
TheJuliaI'm saying nothing :)15:38
JayFif you have the information, it totes was15:38
JayFif someone else does, I meant them instead 15:38
JayFLOL15:38
iurygregoryI know they will add more clues every 12hrs15:38
TheJulia:)15:38
JayFiurygregory: they will add more clues, but my rememberance to check will fade :P Especially since it's exceedingly unlikely I'd participate15:39
JayFbut I want to enjoy you all's joy vicariously :D15:39
iurygregoryJayF, :D yeah15:39
iurygregoryI will just wait till wed15:40
rloo(someone will remember to let JayF know on Wed so the suspense doesn't kill him)15:42
JayFIf I forget I'm suspenseful about it, is it really deadly levels of suspense? 15:42
JayFThere is a certain value in being forgetful15:42
rpittaubye everyone, have a nice rest of the day! o/15:45
iurygregoryo/15:45
NobodyCamGood Morning Ironic Folks15:46
arne_wiebalckhey NobodyCam o/15:47
iurygregoryhey NobodyCam o/15:47
NobodyCamhey hey Good Morning arne_wiebalck and iurygregory :)15:48
* NobodyCam looks at the etherpad15:48
dtantsurg'night folks o/16:25
iurygregoryg'night o/16:30
opendevreviewJulia Kreger proposed openstack/ironic master: Yoga: Change default boot mode to uefi  https://review.opendev.org/c/openstack/ironic/+/81024916:36
opendevreviewJulia Kreger proposed openstack/ironic master: CI: Change CI ipxe file to snponly  https://review.opendev.org/c/openstack/ironic/+/81216716:42
opendevreviewJulia Kreger proposed openstack/ironic master: Retool devstack plugin to use pxe loaders configuration  https://review.opendev.org/c/openstack/ironic/+/81218816:42
opendevreviewMerged openstack/ironic master: Remove legacy rpm install list and use bindep  https://review.opendev.org/c/openstack/ironic/+/81031317:08
opendevreviewMerged openstack/ironic master: [iRMC] Set polling after RAID is built  https://review.opendev.org/c/openstack/ironic/+/80902317:08
opendevreviewMerged openstack/ironic master: Update release doc  https://review.opendev.org/c/openstack/ironic/+/81091817:08
opendevreviewJulia Kreger proposed openstack/ironic-inspector stable/wallaby: Ignored error state cache for new requests  https://review.opendev.org/c/openstack/ironic-inspector/+/81237417:59
opendevreviewJulia Kreger proposed openstack/ironic-inspector stable/victoria: Ignored error state cache for new requests  https://review.opendev.org/c/openstack/ironic-inspector/+/81237518:04
opendevreviewJulia Kreger proposed openstack/ironic-inspector stable/ussuri: Ignored error state cache for new requests  https://review.opendev.org/c/openstack/ironic-inspector/+/81237618:04
opendevreviewJulia Kreger proposed openstack/ironic-inspector stable/train: Ignored error state cache for new requests  https://review.opendev.org/c/openstack/ironic-inspector/+/81237718:04
opendevreviewJulia Kreger proposed openstack/ironic master: Yoga: Change default boot mode to uefi  https://review.opendev.org/c/openstack/ironic/+/81024918:58
opendevreviewJulia Kreger proposed openstack/ironic master: CI: Change CI ipxe file to snponly  https://review.opendev.org/c/openstack/ironic/+/81216718:59
opendevreviewJulia Kreger proposed openstack/ironic master: Retool devstack plugin to use pxe loaders configuration  https://review.opendev.org/c/openstack/ironic/+/81218818:59
TheJuliastevebaker: I think I broke the grub job https://ebfd4ec54dbc92b01f1e-dbc96e30a25abd79ad83d28f747c4e2b.ssl.cf2.rackcdn.com/812188/9/check/ironic-tempest-ipa-partition-uefi-pxe-grub2/a591ed6/controller/logs/ironic-bm-logs/node-1_console_2021-10-04-18%3A01%3A34_log.txt :)19:04
TheJuliastevebaker: or well... https://ebfd4ec54dbc92b01f1e-dbc96e30a25abd79ad83d28f747c4e2b.ssl.cf2.rackcdn.com/812188/9/check/ironic-tempest-ipa-partition-uefi-pxe-grub2/a591ed6/tftpd-journal.txt it was broken to begin with?!19:05
stevebakermorning19:26
TheJuliagood morning19:28
TheJuliaade_lee: what would you like to do about fips stuffs?20:38
ade_leeTheJulia, sorry - was tied up in trying to figure out a tripleo thing.  I'll ping you in the morning as I have to take kids to piano etc. but the short answer is "you tell me :)"  You guys know best how you want to add fips to your ci - I will adjust my patch accordingly - or you can do so as you prefer.21:11
ade_leethe important thing is to make sure we cover the cases that need to be covered to ensure that we continue to work in fips mode21:12
TheJuliaade_lee: ok, have a wonderful evening21:13
ade_leethanks you too21:13
opendevreviewJulia Kreger proposed openstack/ironic master: Retool devstack plugin to use pxe loaders configuration  https://review.opendev.org/c/openstack/ironic/+/81218822:32
TheJuliastevebaker: so, wrong file copied ^ :(22:42
opendevreviewJulia Kreger proposed openstack/ironic master: SRBAC - Prepare for additional services  https://review.opendev.org/c/openstack/ironic/+/81241123:42

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