*** hwoarang has quit IRC | 00:00 | |
*** hwoarang has joined #openstack-ironic | 00:07 | |
*** hwoarang has quit IRC | 00:20 | |
*** hwoarang has joined #openstack-ironic | 00:22 | |
*** hwoarang has quit IRC | 00:28 | |
*** hwoarang has joined #openstack-ironic | 00:29 | |
*** yaawang has quit IRC | 00:56 | |
*** yaawang has joined #openstack-ironic | 00:58 | |
*** whoami-rajat has joined #openstack-ironic | 01:19 | |
*** tiendc has joined #openstack-ironic | 01:31 | |
*** irclogbot_1 has quit IRC | 01:44 | |
*** edleafe has quit IRC | 01:48 | |
*** hwoarang has quit IRC | 02:02 | |
*** hwoarang has joined #openstack-ironic | 02:03 | |
*** yaawang has quit IRC | 02:28 | |
*** yaawang has joined #openstack-ironic | 02:30 | |
openstackgerrit | Kaifeng Wang proposed openstack/ironic-inspector master: Support reapply with supplied introspection data https://review.openstack.org/639039 | 03:10 |
---|---|---|
*** pcaruana has joined #openstack-ironic | 04:49 | |
*** mkrai has joined #openstack-ironic | 04:50 | |
*** pcaruana has quit IRC | 04:55 | |
*** hwoarang has quit IRC | 05:21 | |
*** hwoarang has joined #openstack-ironic | 05:23 | |
*** e0ne has joined #openstack-ironic | 05:31 | |
*** e0ne has quit IRC | 05:39 | |
*** e0ne has joined #openstack-ironic | 05:56 | |
*** e0ne has quit IRC | 06:04 | |
*** ltomasbo has joined #openstack-ironic | 06:07 | |
*** ltomasbo has left #openstack-ironic | 06:08 | |
*** jtomasek has joined #openstack-ironic | 06:20 | |
*** jtomasek has quit IRC | 06:22 | |
*** jtomasek has joined #openstack-ironic | 06:23 | |
*** pcaruana has joined #openstack-ironic | 06:30 | |
arne_wiebalck | good morning, ironic! | 06:33 |
*** jtomasek has quit IRC | 06:49 | |
*** jtomasek has joined #openstack-ironic | 06:49 | |
*** jtomasek has quit IRC | 06:51 | |
*** jtomasek has joined #openstack-ironic | 06:51 | |
*** jtomasek has quit IRC | 06:59 | |
*** jtomasek has joined #openstack-ironic | 07:00 | |
arne_wiebalck | dtantsur|afk: rpittau|afk: the reason for nodes going down when cleaning fails is here: https://github.com/openstack/ironic/blob/master/ironic/drivers/modules/agent_base_vendor.py#L548 (this needs a parameter set I think) | 07:07 |
arne_wiebalck | What I'm not clear on is the relation to the error handling in the manager, in particular this: https://github.com/openstack/ironic/blob/master/ironic/conductor/manager.py#L1430 | 07:07 |
arne_wiebalck | Can you shed some light? | 07:07 |
*** e0ne has joined #openstack-ironic | 07:24 | |
*** andrein has joined #openstack-ironic | 07:29 | |
*** rpittau|afk is now known as rpittau | 07:48 | |
rpittau | good morning ironic! o/ | 07:48 |
*** dsneddon has joined #openstack-ironic | 07:52 | |
*** yolanda_ has joined #openstack-ironic | 07:52 | |
*** e0ne has quit IRC | 07:52 | |
*** andrein has quit IRC | 07:53 | |
*** lucasagomes has joined #openstack-ironic | 07:54 | |
rpittau | arne_wiebalck: yeah, the cleaning_error_handler called like that will cause a chain up to tear_down_inband_cleaning that powers off the node | 07:57 |
rpittau | arne_wiebalck: the parameter is tear_down_cleaning itself | 07:57 |
*** dsneddon has quit IRC | 07:57 | |
arne_wiebalck | rpittau. yes, I verified: changing the param lets the node stay up | 07:57 |
arne_wiebalck | rpittau: just not sure how the manager interacts here | 07:58 |
rpittau | my browser just crashed... monday \o/ | 07:59 |
*** tssurya has joined #openstack-ironic | 07:59 | |
rpittau | arne_wiebalck: it seems the manager does basically the same in case of error | 08:02 |
rpittau | it calls tear_down and powers off the node | 08:02 |
*** iurygregory has joined #openstack-ironic | 08:02 | |
iurygregory | good morning all | 08:02 |
rpittau | hi iurygregory :) | 08:02 |
iurygregory | o/ | 08:03 |
openstackgerrit | raphael.glon proposed openstack/ironic master: Ansible module: fix clean error handling https://review.openstack.org/649665 | 08:07 |
*** dougsz has joined #openstack-ironic | 08:11 | |
*** yolanda_ has quit IRC | 08:11 | |
*** yolanda_ has joined #openstack-ironic | 08:11 | |
arne_wiebalck | rpittau: yes, but I'm not clear on when that would be called | 08:19 |
*** rcernin has quit IRC | 08:19 | |
arne_wiebalck | rpittau: I verified that agent_base_vendor seems to do the error handling and is shutting the node off in my case | 08:21 |
rpittau | arne_wiebalck: in that specific case, the clean step can bring the node to 2 states, clean_wait or None (if it's completed). If the state is not one of those two, then it calls teh cleaning_error_handler | 08:21 |
arne_wiebalck | rpittau: yes, but is the difference an exception vs the return code being not empty? | 08:21 |
arne_wiebalck | rpittau: the difference on who is handling a cleaning error, I mean | 08:22 |
openstackgerrit | Kaifeng Wang proposed openstack/ironic-inspector-specs master: WIP etcd coordination https://review.openstack.org/650630 | 08:22 |
arne_wiebalck | rpittau: so, if the cleaning raises an exception the driver will handle it while if there is a non-empty return code the manager handles it? | 08:22 |
arne_wiebalck | rpittau: I'm trying to figure out is the manager code needs some patching as well | 08:23 |
arne_wiebalck | s/is/if/ | 08:23 |
rpittau | arne_wiebalck: it seems like the manager in both cases | 08:26 |
rpittau | arne_wiebalck: actually it start from the manager but it always ends up in the hands of the driver, since what does the dirty job is tear_down_cleaning | 08:28 |
*** andrein has joined #openstack-ironic | 08:30 | |
*** dsneddon has joined #openstack-ironic | 08:32 | |
arne_wiebalck | yes ... but cleaning_error_handler is the one that decides on the shutdown and this one seems to be called from multiple places | 08:32 |
arne_wiebalck | if the general idea is that upon failure a node in cleaning should not be switched off, it should apply in both scenarios | 08:33 |
*** derekh has joined #openstack-ironic | 08:33 | |
arne_wiebalck | scenarios: exception and non-zero return code | 08:34 |
arne_wiebalck | anyway, I prepare a patch and we'll take it from there | 08:35 |
arne_wiebalck | thx rpittau ! | 08:35 |
*** dtantsur|afk is now known as dtantsur | 08:35 | |
*** e0ne has joined #openstack-ironic | 08:36 | |
dtantsur | morning ironic | 08:36 |
rpittau | arne_wiebalck: for those scenarios probably calling the cleaning_error_handler with tear_down_cleaning to False should do the trick, or look like it's done for the fast_track | 08:37 |
rpittau | arne_wiebalck: no problem | 08:38 |
arne_wiebalck | rpittau: I tried already in qa | 08:38 |
arne_wiebalck | rpittau: it does | 08:38 |
arne_wiebalck | rpittau: the node stays up when I trigger an exception during cleaning | 08:38 |
*** mkrai has quit IRC | 08:38 | |
arne_wiebalck | rpittau: but I only changed the driver, not the manager and was wondering if that needs to be changed as well | 08:39 |
*** zigo_ has joined #openstack-ironic | 08:45 | |
*** zigo_ is now known as zigo | 08:50 | |
openstackgerrit | raphael.glon proposed openstack/ironic master: Ansible module: fix partition_configdrive.sh file https://review.openstack.org/649663 | 08:57 |
openstackgerrit | raphael.glon proposed openstack/ironic master: Ansible module: fix partition_configdrive.sh file https://review.openstack.org/649663 | 09:06 |
openstackgerrit | Arne Wiebalck proposed openstack/ironic master: [Trivial] Fix typo in agent_base_vendor unit test https://review.openstack.org/650637 | 09:07 |
*** yolanda_ has quit IRC | 09:09 | |
openstackgerrit | raphael.glon proposed openstack/ironic master: Ansible module: fix clean error handling https://review.openstack.org/649665 | 09:10 |
openstackgerrit | Riccardo Pittau proposed openstack/bifrost master: Collect all conf files under /etc https://review.openstack.org/650308 | 09:23 |
openstackgerrit | Kaifeng Wang proposed openstack/ironic-inspector master: Remove deprecated ssl options https://review.openstack.org/650824 | 09:24 |
*** e0ne has quit IRC | 09:27 | |
*** e0ne has joined #openstack-ironic | 09:34 | |
openstackgerrit | Riccardo Pittau proposed openstack/bifrost master: Improve iptables test info collection https://review.openstack.org/649946 | 09:43 |
openstackgerrit | raphael.glon proposed openstack/ironic master: Ansible module: fix partition_configdrive.sh file https://review.openstack.org/649663 | 09:47 |
openstackgerrit | raphael.glon proposed openstack/ironic master: Ansible module: fix partition_configdrive.sh file https://review.openstack.org/649663 | 09:48 |
openstackgerrit | Uros Orozel proposed openstack/ironic master: Can we recheck this? https://review.openstack.org/650832 | 09:48 |
openstackgerrit | Kaifeng Wang proposed openstack/ironic-inspector master: Remove deprecated store_data_location https://review.openstack.org/650833 | 09:48 |
*** e0ne has quit IRC | 10:06 | |
*** yolanda_ has joined #openstack-ironic | 10:11 | |
openstackgerrit | Riccardo Pittau proposed openstack/bifrost master: Collect conf files under /etc https://review.openstack.org/650308 | 10:12 |
*** e0ne has joined #openstack-ironic | 10:13 | |
*** Lucas_Gray has joined #openstack-ironic | 10:17 | |
*** livelace has joined #openstack-ironic | 10:17 | |
openstackgerrit | Arkady Shtempler proposed openstack/ironic-tempest-plugin master: Single tenant tests: BM to BM and BM to VM https://review.openstack.org/650839 | 10:24 |
*** andrein has quit IRC | 10:25 | |
openstackgerrit | Nikolay Fedotov proposed openstack/ironic-python-agent master: Discover IPv6 BMC address https://review.openstack.org/640795 | 10:31 |
*** priteau has joined #openstack-ironic | 10:32 | |
*** mbuil has quit IRC | 10:33 | |
*** andrein has joined #openstack-ironic | 10:35 | |
*** yolanda_ has quit IRC | 10:38 | |
*** andrein has quit IRC | 10:41 | |
*** andrein has joined #openstack-ironic | 10:44 | |
*** hwoarang has quit IRC | 10:45 | |
*** hwoarang has joined #openstack-ironic | 10:45 | |
*** yolanda_ has joined #openstack-ironic | 10:48 | |
*** hwoarang has quit IRC | 10:53 | |
*** hwoarang_ has joined #openstack-ironic | 10:53 | |
*** tiendc has quit IRC | 10:55 | |
*** e0ne has quit IRC | 11:02 | |
*** andrein has quit IRC | 11:04 | |
*** e0ne has joined #openstack-ironic | 11:09 | |
*** Lucas_Gray has quit IRC | 11:18 | |
* dtantsur -> short walk | 11:20 | |
*** dtantsur is now known as dtantsur|brb | 11:20 | |
*** Lucas_Gray has joined #openstack-ironic | 11:22 | |
openstackgerrit | Merged openstack/ironic stable/rocky: ipmi: Ignore sensor debug data https://review.openstack.org/650109 | 11:22 |
openstackgerrit | Merged openstack/ironic stable/queens: ipmi: Ignore sensor debug data https://review.openstack.org/650110 | 11:22 |
openstackgerrit | Merged openstack/ironic master: [Trivial] Fix typo in agent_base_vendor unit test https://review.openstack.org/650637 | 11:22 |
*** andrein has joined #openstack-ironic | 11:27 | |
*** Lucas_Gray has quit IRC | 11:27 | |
*** e0ne has quit IRC | 11:46 | |
*** pcaruana has quit IRC | 11:47 | |
*** bfournie has quit IRC | 11:50 | |
*** e0ne has joined #openstack-ironic | 11:51 | |
*** e0ne has quit IRC | 11:53 | |
*** derekh has quit IRC | 11:58 | |
*** priteau has quit IRC | 12:01 | |
*** rh-jelabarre has joined #openstack-ironic | 12:02 | |
jroll | morning all | 12:18 |
rpittau | hey jroll :) | 12:20 |
*** bfournie has joined #openstack-ironic | 12:23 | |
openstackgerrit | Merged openstack/ironic-ui stable/stein: Imported Translations from Zanata https://review.openstack.org/650564 | 12:24 |
*** pcaruana has joined #openstack-ironic | 12:38 | |
*** michchap has joined #openstack-ironic | 12:43 | |
*** edleafe has joined #openstack-ironic | 12:44 | |
*** jcoufal has joined #openstack-ironic | 12:45 | |
*** mmethot has joined #openstack-ironic | 12:45 | |
*** dtantsur|brb is now known as dtantsur | 12:47 | |
dtantsur | morning jroll | 12:48 |
needssleep | good morning | 12:48 |
dtantsur | morning needssleep :) | 12:48 |
needssleep | I still need sleep | 12:49 |
*** needssleep is now known as TheJulia | 12:49 | |
*** derekh has joined #openstack-ironic | 12:50 | |
*** jroll has quit IRC | 12:50 | |
* TheJulia sisp coffee | 12:50 | |
*** jroll has joined #openstack-ironic | 12:50 | |
*** brandor5 has joined #openstack-ironic | 12:52 | |
brandor5 | tonyb: you around today? :) | 12:54 |
dtantsur | TheJulia, rpittau, fun problem with mdns: you cannot register the same name from different conductors :-/ | 12:55 |
*** macintoshme has joined #openstack-ironic | 12:55 | |
TheJulia | I thought you could announce srv record data | 12:56 |
dtantsur | TheJulia: right, but what happens if you try to announce the same thing several times? | 12:56 |
dtantsur | the library I use blows up :( | 12:56 |
openstackgerrit | Nikolay Fedotov proposed openstack/ironic-python-agent master: Discover IPv6 BMC address https://review.openstack.org/640795 | 12:58 |
*** mjturek has joined #openstack-ironic | 13:00 | |
michchap | hey folks, I copied the standalone upstream job and with some small changes have it running locally. Since it has no nova services I can't set a flavor - is there another way to boot baremetal instances without a baremetal flavor or an aggregate? | 13:02 |
*** mjturek has quit IRC | 13:04 | |
dtantsur | michchap: https://docs.openstack.org/ironic/latest/install/standalone.html scroll down | 13:06 |
michchap | dtantsur: ty | 13:07 |
michchap | dtantsur: will that still create the port in neutron, or is that skipped when doing a deploy using that method? | 13:10 |
michchap | dtantsur: (for ansible-ml2 testing) | 13:10 |
dtantsur | michchap: you can do it, but nothing will happen magically | 13:10 |
dtantsur | michchap: you can try https://docs.openstack.org/metalsmith/latest/ I'm using it for all my local testing | 13:10 |
dtantsur | disclaimer: I wrote it :) | 13:10 |
michchap | dtantsur: that looks nice, I'll give it a go. Cheers | 13:11 |
openstackgerrit | Riccardo Pittau proposed openstack/bifrost master: Collect conf files under /etc https://review.openstack.org/650308 | 13:13 |
*** mjturek has joined #openstack-ironic | 13:14 | |
*** rloo has joined #openstack-ironic | 13:20 | |
*** whoami-rajat has quit IRC | 13:28 | |
*** pcaruana has quit IRC | 13:31 | |
*** pcaruana has joined #openstack-ironic | 13:36 | |
*** whoami-rajat has joined #openstack-ironic | 13:38 | |
openstackgerrit | Christopher Dearborn proposed openstack/ironic-specs master: Add firmware update spec for Dell EMC hardware https://review.openstack.org/602132 | 13:40 |
*** Goneri has joined #openstack-ironic | 13:49 | |
*** baha has joined #openstack-ironic | 14:16 | |
openstackgerrit | Varsha Verma proposed openstack/ironic master: Removes `hash_distribution_replicas` configuration option https://review.openstack.org/650912 | 14:21 |
openstackgerrit | Varsha Verma proposed openstack/ironic master: Removes `hash_distribution_replicas` configuration option https://review.openstack.org/650912 | 14:26 |
*** spotz has joined #openstack-ironic | 14:27 | |
openstackgerrit | Christopher Dearborn proposed openstack/ironic-specs master: Add firmware update spec for Dell EMC hardware https://review.openstack.org/602132 | 14:33 |
*** cdearborn has joined #openstack-ironic | 14:40 | |
*** etingof is now known as etingof|afk | 14:41 | |
*** diga has joined #openstack-ironic | 14:52 | |
*** dnuka has joined #openstack-ironic | 14:58 | |
*** kaifeng has joined #openstack-ironic | 14:59 | |
TheJulia | I need lots of coffee today :) | 14:59 |
cdearborn | +++ I hear that! | 15:00 |
iurygregory | we all do | 15:00 |
TheJulia | #startmeeting ironic | 15:00 |
openstack | Meeting started Mon Apr 8 15:00:17 2019 UTC and is due to finish in 60 minutes. The chair is TheJulia. Information about MeetBot at http://wiki.debian.org/MeetBot. | 15:00 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 15:00 |
TheJulia | o/ | 15:00 |
*** openstack changes topic to " (Meeting topic: ironic)" | 15:00 | |
rpioso | \o | 15:00 |
openstack | The meeting name has been set to 'ironic' | 15:00 |
rpittau | o/ | 15:00 |
iurygregory | o/ | 15:00 |
bdodd | o/ | 15:00 |
cdearborn | o/ | 15:00 |
TheJulia | Four meetings this morniing... :( | 15:00 |
TheJulia | Anyway, time for yet another ironic weekly meeting! | 15:00 |
mjturek | o/ | 15:00 |
rajinir | o/ | 15:00 |
arne_wiebalck | o/ | 15:00 |
dnuka | o/ | 15:00 |
baha | o/ | 15:00 |
rloo | o/ | 15:01 |
TheJulia | I'm hoping this one is fairly quick today because we do need to assess people's interest in PTG topics for those that will and will not be there if there are things that are important to them as well. | 15:01 |
*** sthussey has joined #openstack-ironic | 15:01 | |
TheJulia | #link https://wiki.openstack.org/wiki/Meetings/Ironic#Agenda_for_next_meeting | 15:01 |
TheJulia | #topic Announcements / Reminders | 15:01 |
*** openstack changes topic to "Announcements / Reminders (Meeting topic: ironic)" | 15:01 | |
mgoddard | o/ | 15:02 |
kaifeng | o/ | 15:02 |
jroll | \o | 15:02 |
TheJulia | As discussed, the PTG discussion etherpad for the Train cycle can be found in the agenda, and I'll put the link in the meeting. | 15:02 |
TheJulia | #link https://etherpad.openstack.org/p/DEN-train-ironic-brainstorming | 15:02 |
TheJulia | Does anyone have any announcements or reminders? | 15:03 |
*** stendulker has joined #openstack-ironic | 15:03 | |
stendulker | o/ | 15:03 |
dtantsur | \o | 15:03 |
TheJulia | I'll take that as a No, so we can move on :) | 15:04 |
TheJulia | #topic Review action items from previous meeting | 15:04 |
*** openstack changes topic to "Review action items from previous meeting (Meeting topic: ironic)" | 15:04 | |
TheJulia | #link http://eavesdrop.openstack.org/meetings/ironic/2019/ironic.2019-04-01-15.00.log.html | 15:04 |
TheJulia | I didn't get to my action items | 15:04 |
TheJulia | #action TheJulia to get links for fast track posted and follow-up re-smartnics. | 15:04 |
TheJulia | So carrying those forward this week. | 15:05 |
TheJulia | There were no other items that I'm aware of or saw. | 15:05 |
TheJulia | Moving on! | 15:05 |
TheJulia | #topic Review subteam status reports | 15:05 |
*** openstack changes topic to "Review subteam status reports (Meeting topic: ironic)" | 15:05 | |
TheJulia | #link https://etherpad.openstack.org/p/IronicWhiteBoard | 15:05 |
TheJulia | Line 238 | 15:05 |
TheJulia | I wouldn't expect much to have changed over the last week. Largely it seems we had numerous sporadic failures impact us this past week in CI. | 15:06 |
dtantsur | yeah | 15:07 |
TheJulia | Looking at the log, it actually looks like it impacted us heavily this past week. I know we've posted a couple minor fixes, so it looks like just the multinode job seems suspect at this point | 15:08 |
TheJulia | Is anyone looking at the multinode job? | 15:09 |
rloo | I'm going to delete the Python3 first section (L242). If someone wants it as a topic for changes in Train -- add to the Train wishlist etherpad. | 15:09 |
TheJulia | WFM | 15:10 |
rloo | TheJulia: wrt UEFI First, there's one thing left there. L246. I'm not sure what the next steps are for that. | 15:10 |
TheJulia | rloo: additional testing | 15:11 |
rloo | TheJulia: so needs reviews? | 15:11 |
rloo | no, looks like still needs work. | 15:11 |
TheJulia | I think we can drop it and if there is interest then we can carry forth what the community feels it needs for the Train cycle | 15:12 |
rloo | TheJulia: ok, deleting that UEFI First section then. | 15:12 |
TheJulia | I think we can drop conductor roll splitting from our etherpad list | 15:12 |
TheJulia | Any objections? | 15:12 |
dtantsur | nope | 15:13 |
*** e0ne has joined #openstack-ironic | 15:14 | |
openstackgerrit | Mark Goddard proposed openstack/bifrost master: Pin proliantutils version https://review.openstack.org/648193 | 15:14 |
TheJulia | mgoddard: still WIP for the raid invocation wip? | 15:14 |
mgoddard | TheJulia: yeah, for now | 15:14 |
*** Lucas_Gray has joined #openstack-ironic | 15:15 | |
TheJulia | etingof|afk: still redfish vmedia'ing? | 15:15 |
TheJulia | I did just take care of an action item, I pinged neutron people re smartnics | 15:17 |
TheJulia | \o/ | 15:17 |
*** dnuka has quit IRC | 15:17 | |
TheJulia | If there is nothing else, I'm good with proceeding to discussion of the PTG and topics | 15:17 |
dtantsur | I do think etingof|afk is still vmedia'ing | 15:17 |
TheJulia | ack | 15:18 |
dtantsur | there is also a contentious chain of sushy-tools patches for that | 15:18 |
TheJulia | Thanks! | 15:18 |
TheJulia | \o/ | 15:18 |
*** dnuka has joined #openstack-ironic | 15:18 | |
TheJulia | #topic Deciding on priorities for the coming week | 15:19 |
*** openstack changes topic to "Deciding on priorities for the coming week (Meeting topic: ironic)" | 15:19 | |
TheJulia | I think we should keep this as-is for this week. Naturally removing the merged items from the list. | 15:20 |
TheJulia | Any objections? | 15:20 |
TheJulia | #link https://etherpad.openstack.org/p/IronicWhiteBoard | 15:20 |
mgoddard | I added one for bifrost if that's ok | 15:20 |
TheJulia | Line 125 | 15:20 |
*** gyee has joined #openstack-ironic | 15:20 | |
TheJulia | mgoddard: sure | 15:20 |
mgoddard | rocky is currently broken without it | 15:20 |
TheJulia | :( | 15:21 |
TheJulia | NobodyCam: could you look at bifrost reviews when you have a chance? :) | 15:21 |
NobodyCam | Will do :) | 15:22 |
TheJulia | Thanks | 15:22 |
TheJulia | I've removed merged | 15:22 |
NobodyCam | :) | 15:22 |
TheJulia | Is everyone good with the list for the week? If so I think we can proceed to discusison | 15:23 |
rloo | ++ | 15:23 |
TheJulia | #topic Discussion | 15:23 |
*** openstack changes topic to "Discussion (Meeting topic: ironic)" | 15:23 | |
TheJulia | I'd like us to take a few minutes to go through the denver etherpad. Discuss any items that people wish to ask for questions with, and add +'s to items that people feel are important. | 15:24 |
TheJulia | #link https://etherpad.openstack.org/p/DEN-train-ironic-brainstorming | 15:24 |
TheJulia | Maybe "+1" ? | 15:24 |
rloo | wrt the first one, standalone ironic -- rpioso asks a question. i'm guessing it'll be discussed in both forum and ptg? | 15:27 |
TheJulia | I think so yes | 15:27 |
TheJulia | Forum is much more information collection/larger community context acquisition | 15:27 |
rpioso | rloo, TheJulia: ty | 15:28 |
dtantsur | I also think both | 15:28 |
rpioso | dtantsur: u, too :) | 15:28 |
rloo | oh, TheJulia, to be clear, 'is submitting this as a forum topic...' (L12). Do we know if it is a topic? I thought the forum sched came out but i don't recall the details. | 15:29 |
TheJulia | The ones I submitted did make it t hrough | 15:29 |
rloo | TheJulia: thx, i updated :) | 15:29 |
TheJulia | larsks: will you be at the OpenStack Forum/PTG? | 15:33 |
TheJulia | i guess next steps will be to try and determine a schedule, but I'd like to see more people express interest on various topics | 15:33 |
dtantsur | another Forum/PTG question: do we want to plan a get-together? | 15:34 |
TheJulia | That is another good question. | 15:35 |
rloo | what's a PTG without a get-together? :) | 15:35 |
TheJulia | I can try and figure something out but I'll also need a head count by Friday | 15:35 |
rloo | thx TheJulia! | 15:35 |
TheJulia | Anyway, I guess people can take a little more time to comment on the topics | 15:36 |
TheJulia | but end of day I'll try to begin forming a list together for the actual PTG and begin to try and co-ordinate schedules | 15:36 |
TheJulia | #action TheJulia to make a doodle for an evening gathering | 15:36 |
TheJulia | I guess we're good to proceed to Open Discussion | 15:37 |
rloo | TheJulia: is L147 the same as L160? | 15:37 |
rloo | or maybe not... | 15:37 |
TheJulia | definite overlap | 15:37 |
TheJulia | I can nuke 160 | 15:37 |
rloo | well, L150 seems to ask the same question | 15:37 |
TheJulia | 160 has been nuked | 15:38 |
TheJulia | #topic Open Discussion | 15:38 |
*** openstack changes topic to "Open Discussion (Meeting topic: ironic)" | 15:38 | |
TheJulia | Does anyone have anything to discuss today? | 15:39 |
TheJulia | (anything else) | 15:39 |
* dtantsur has nothing | 15:40 | |
rloo | crickets | 15:41 |
*** brandor5 has quit IRC | 15:43 | |
TheJulia | Okay everyone! Thanks! | 15:43 |
TheJulia | Have a wonderful week! | 15:43 |
rloo | Thanks TheJulia! | 15:43 |
TheJulia | #endmeeting | 15:43 |
*** openstack changes topic to "Bare Metal Provisioning | Status: http://bit.ly/ironic-whiteboard | Docs: http://docs.openstack.org/ironic/ | Bugs: https://storyboard.openstack.org/#!/project_group/75 | Contributors are generally present between 6 AM and 12 AM UTC, If we do not answer, please feel free to pose questions to openstack-dev mailing list." | 15:43 | |
openstack | Meeting ended Mon Apr 8 15:43:57 2019 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 15:43 |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/ironic/2019/ironic.2019-04-08-15.00.html | 15:43 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/ironic/2019/ironic.2019-04-08-15.00.txt | 15:44 |
openstack | Log: http://eavesdrop.openstack.org/meetings/ironic/2019/ironic.2019-04-08-15.00.log.html | 15:44 |
*** dnuka has quit IRC | 15:44 | |
*** Sundar has joined #openstack-ironic | 15:44 | |
*** kaifeng has quit IRC | 15:52 | |
openstackgerrit | Merged openstack/bifrost master: Disable RabbitMQ by default https://review.openstack.org/645093 | 15:52 |
openstackgerrit | Arne Wiebalck proposed openstack/ironic master: Do not tear down node upon cleaning failure https://review.openstack.org/650942 | 15:57 |
mgoddard | Has anyone tried switching from one inspector PXE filter to another? | 15:58 |
mgoddard | It seems switching from iptables to another filter can leave the iptables rules in place | 15:58 |
*** tssurya has quit IRC | 15:59 | |
arne_wiebalck | TheJulia: For this one ^, I'm not clear on whether conductor/manager.py needs to be patched as well ... maybe with your recent fast track work you'll be able to tell immediately. | 15:59 |
dtantsur | mgoddard: I think hjensas has some experience with that | 16:00 |
*** mjturek has quit IRC | 16:00 | |
*** e0ne has quit IRC | 16:02 | |
mgoddard | dtantsur: I think I'll put something in kolla-ansible for now but I think it ought to go in inspector | 16:02 |
*** mjturek has joined #openstack-ironic | 16:02 | |
dtantsur | possibly | 16:02 |
*** lucasagomes has quit IRC | 16:02 | |
hjensas | mgoddard: in TripleO I belive there is some cleanup of iptable rules as an upgrade task. (Or we changed the config to flush tables on stop/start) | 16:03 |
mgoddard | thanks hjensas | 16:04 |
*** e0ne has joined #openstack-ironic | 16:05 | |
*** brandor5 has joined #openstack-ironic | 16:07 | |
brandor5 | hello everyone: I'm looking for the file 'bootppc64' to provision some ppc64le hosts... (using the directions found at https://docs.openstack.org/ironic/pike/install/configure-pxe.html) can anyone tell me where I can find it? | 16:08 |
brandor5 | `yum provides "*/bootppc64" fails to return anything | 16:08 |
*** Sundar has quit IRC | 16:09 | |
*** stendulker has quit IRC | 16:09 | |
hjensas | mgoddard: there is some ansible purging the chain on the upgrade when we switch to dnsmasq filter - https://github.com/openstack/tripleo-heat-templates/blob/stable/rocky/puppet/services/ironic-inspector.yaml#L294 | 16:10 |
mgoddard | hjensas: nice, just wrote exactly the same task :) | 16:10 |
hjensas | mgoddard: took me longer to find the code in ooo *urk* | 16:11 |
TheJulia | arne_wiebalck: I'll take a look in a little bit. I just got off from 3 hours of continious meetings so I need to eat breakfast, have coffee, etc. | 16:11 |
arne_wiebalck | Oh, sure, absolutely no rush! Thx! | 16:12 |
arne_wiebalck | Bon appetit ;) | 16:12 |
mgoddard | hjensas: well I almost got it right - used ironic_inspector rather than ironic-inspector. I think this uncovered a bug though - ansible barfs if the chain doesn't exist, so it's not idempotent | 16:15 |
*** e0ne has quit IRC | 16:17 | |
dtantsur | brandor5: maybe tonyb or mjturek know | 16:20 |
*** dtantsur is now known as dtantsur|afk | 16:27 | |
dtantsur|afk | o/ | 16:27 |
TheJulia | arne_wiebalck: Yeah, I think that is all you need to do. We'll need to backport that btw | 16:29 |
arne_wiebalck | TheJulia: That was a fast breakfast ... | 16:29 |
TheJulia | I only just finished making my coffee :) | 16:30 |
arne_wiebalck | TheJulia: What about the return code and excpetion handling in the manager? Why does that not need changes? | 16:30 |
* arne_wiebalck is digging out a link | 16:31 | |
arne_wiebalck | https://github.com/openstack/ironic/blob/master/ironic/conductor/manager.py#L1410 | 16:32 |
arne_wiebalck | or | 16:32 |
arne_wiebalck | https://github.com/openstack/ironic/blob/master/ironic/conductor/manager.py#L1430 | 16:32 |
*** etingof|afk is now known as etingof | 16:33 | |
TheJulia | cleaning error handing is all over the place sadly | 16:33 |
TheJulia | Likely all of them need to be changed | 16:33 |
arne_wiebalck | my patch seems to do it | 16:34 |
* arne_wiebalck works in a lab that does experiemtns | 16:34 | |
arne_wiebalck | but I am not clear when the manager would handle cleaning erros | 16:34 |
arne_wiebalck | s/erros/errors | 16:35 |
TheJulia | the first manager one could just be a transient failure really | 16:36 |
TheJulia | the second is a general failure leaning towards IPA incompatibility or someone doing highly custom things | 16:36 |
arne_wiebalck | doesn't seem there is any retry logic, is there? | 16:39 |
rpittau | good night! o/ | 16:39 |
TheJulia | a human I guess | 16:39 |
TheJulia | goodnight rpioso | 16:39 |
TheJulia | err | 16:39 |
TheJulia | rpioso: | 16:39 |
TheJulia | doh! | 16:39 |
TheJulia | rpittau: | 16:39 |
rpittau | xD | 16:40 |
*** rpittau is now known as rpittau|afk | 16:40 | |
*** Lucas_Gray has quit IRC | 16:40 | |
arne_wiebalck | TheJulia: the human will need to redo cleaning as we switch the node off after this transient error | 16:40 |
TheJulia | arne_wiebalck: I guess with fast track engaged, the node will continue heartbeating, the records will be there, we'll skip starting a new ramdisk | 16:40 |
TheJulia | it should them immediately retry the task... | 16:40 |
*** Lucas_Gray has joined #openstack-ironic | 16:40 | |
* arne_wiebalck needs to look at TheJulia's fast track patch set | 16:41 | |
TheJulia | arne_wiebalck: if we don't and we don't actually chnage the state, then it would retry on next heartbeat | 16:41 |
arne_wiebalck | TheJulia: But this is for fast track. ATM, if we hit this code, the node would also go off, no? Due to the lines I posted above, I mean. | 16:42 |
TheJulia | yes, they would presently be off | 16:43 |
TheJulia | I'm thinking "if we don't turn them off" | 16:43 |
arne_wiebalck | ah | 16:43 |
arne_wiebalck | right | 16:43 |
arne_wiebalck | but if I understand the code correctly, a clean step that returns a non-empty return code (for instance to signal an erorr) would switch off the node | 16:44 |
* arne_wiebalck cannot type error today | 16:44 | |
TheJulia | it returning unknown error seems more risky to me, I dunno | 16:45 |
*** e0ne has joined #openstack-ironic | 16:46 | |
arne_wiebalck | ok, so my patch seems to cover an exception in a cleaning step, but there may be other situations where we switch a node while we advertise we would not | 16:46 |
arne_wiebalck | doesn't seem to be a big issue in practice, though | 16:47 |
arne_wiebalck | :) | 16:47 |
TheJulia | yeah, both of those seem to be more of the catches for edge cases | 16:47 |
*** Lucas_Gray has quit IRC | 16:47 | |
*** Lucas_Gray has joined #openstack-ironic | 16:49 | |
arne_wiebalck | Thx, TheJulia! | 16:50 |
arne_wiebalck | bye, everyone o/ | 16:52 |
*** derekh has quit IRC | 16:58 | |
*** dougsz has quit IRC | 17:02 | |
*** e0ne has quit IRC | 17:16 | |
*** andrein has quit IRC | 17:17 | |
* TheJulia begins the sift through all of the emails | 17:29 | |
*** diablo_rojo has joined #openstack-ironic | 17:29 | |
diablo_rojo | TheJulia, as I am helping the marketing folks get together the Press Release stuff and wanting to give Ironic some spotlight. Was wondering if you/someone else here could help me with a screenshot or two showing off the deployment templates for standalone users? | 17:30 |
diablo_rojo | For context, we have screenshots of some JSON responses from the placement stuff and screenshots of creating/listing network segements in Neutron. | 17:31 |
diablo_rojo | Basically need them today if we are going to get them into the PR in time. I know its tight :/ | 17:32 |
*** jcoufal has quit IRC | 17:33 | |
diablo_rojo | also totally didnt need to capitalize 'Press Release' in that first sentence lol. This is why I am not in marketing. | 17:33 |
TheJulia | diablo_rojo: eek, give me a efw to context switch over and see what we can do today | 17:38 |
diablo_rojo | TheJulia, awesome. Take your time. I'll be here all day :) | 17:38 |
*** Lucas_Gray has quit IRC | 17:38 | |
openstackgerrit | Varsha Verma proposed openstack/ironic master: Removes `hash_distribution_replicas` configuration option https://review.openstack.org/650912 | 17:42 |
brandor5 | mjturek: you around? | 17:47 |
*** andrein has joined #openstack-ironic | 17:53 | |
mjturek | yep hey brandor5 | 17:58 |
brandor5 | mjturek: hiya, i'm working on provisioning ppc64le systems with ironic, do you have a few minutes for some questions? | 17:59 |
mjturek | sure! | 18:00 |
brandor5 | mjturek: cool, thanks. Mind if I take it to DMs to avoid annoying people? or would you rather leave it in channel? | 18:00 |
mjturek | I don't mind in channel, we can move to pvt if it gets noisy in here! | 18:01 |
openstackgerrit | Christopher Dearborn proposed openstack/ironic-specs master: Add firmware update spec for Dell EMC hardware https://review.openstack.org/602132 | 18:01 |
brandor5 | ok thanks! | 18:02 |
brandor5 | mjturek: so first off, we're on an old version... newton (I'm sorry) | 18:02 |
mjturek | should be okay | 18:02 |
brandor5 | mjturek: currently our idea is to manually hack ironic config to hand out the ppc64 pxe image, is that what should be expected? | 18:03 |
brandor5 | instead of the normal undionly.kpxe i mean | 18:03 |
mjturek | brandor5: are you familiar with how ppc64* handles pxe? it's a little differnt | 18:04 |
mjturek | you don't use pxelinux.0 | 18:05 |
brandor5 | mjturek: not really and I'm afraid that's part of our problem :| | 18:05 |
mjturek | no worries! | 18:05 |
mjturek | brandor5: this article is very helpful https://docs.oracle.com/cd/E24628_01/em.121/e27046/appdx_pxeboot.htm#EMLCM12199 | 18:05 |
mjturek | actually not exactly what I thought it was, one sec | 18:06 |
brandor5 | np :) | 18:06 |
mjturek | brandor5: http://jk.ozlabs.org/blog/post/158/netbooting-petitboot/ | 18:06 |
mjturek | this will help you understanding the underlying netbooting process | 18:06 |
brandor5 | yep, we found that earlier :) | 18:07 |
mjturek | brandor5: here is the patch that enabled pxe for ironic | 18:08 |
mjturek | https://review.openstack.org/#/c/185987/13 | 18:08 |
patchbot | patch 185987 - ironic - Enable PXE for systems using petitboot (MERGED) - 13 patch sets | 18:08 |
mjturek | basically, using the pxe hardware type for ppc64* should be functionally identical to using the x86_64 one | 18:09 |
mjturek | I forget if this patch merged in time for newton though | 18:09 |
mjturek | so you may need to backport it | 18:10 |
mjturek | (though I think it is in newton) | 18:10 |
brandor5 | ok, we'll look through those docs closer and see what we can come up with | 18:12 |
brandor5 | one more questions | 18:12 |
mjturek | sure! | 18:12 |
brandor5 | we've been playing around with petitboot inside the nodes and have it pulling a kernel and initrd and booting into the ipa | 18:12 |
brandor5 | the problem is that we don't know what info we need to pass into the ipa to make it work... it just sits there :) | 18:13 |
brandor5 | is ipa-api-url sufficient? | 18:13 |
mjturek | hmmm I've unfortunately never set those manually | 18:14 |
mjturek | let me check something | 18:14 |
brandor5 | ok | 18:14 |
openstackgerrit | Ilya Etingof proposed openstack/sushy-tools master: Use HTTP code 307 for redirects https://review.openstack.org/650074 | 18:15 |
*** nuclearasaurus has joined #openstack-ironic | 18:15 | |
openstackgerrit | Ilya Etingof proposed openstack/sushy-tools master: Include all libvirt domains in Systems https://review.openstack.org/648700 | 18:16 |
*** diga has quit IRC | 18:16 | |
openstackgerrit | Ilya Etingof proposed openstack/sushy-tools master: Ensure non-empty libvirt <loader/> tag https://review.openstack.org/642728 | 18:17 |
openstackgerrit | Ilya Etingof proposed openstack/sushy-tools master: Create libvirt boot loader element if needed https://review.openstack.org/642581 | 18:18 |
mjturek | brandor5: hmmm yeah it seems like it should just be the ipa-api-url you need | 18:19 |
mjturek | let me grab the file | 18:19 |
openstackgerrit | Ilya Etingof proposed openstack/sushy-tools master: Add docs on UEFI boot libvirt-based emulation https://review.openstack.org/642830 | 18:19 |
mjturek | https://github.com/openstack/ironic/blob/master/ironic/drivers/modules/agent_config.template#L5 | 18:19 |
mjturek | brandor5: we don't use anything fancy param wise, just this ^ | 18:20 |
*** johnsom has quit IRC | 18:20 | |
*** fyx has quit IRC | 18:20 | |
*** PrinzElvis has quit IRC | 18:20 | |
brandor5 | cool, thanks! is there an easy way to find out what is getting passed there? I can probably figure it out, but would be quicker if I knew where that was stored | 18:21 |
*** fyx has joined #openstack-ironic | 18:21 | |
*** PrinzElvis has joined #openstack-ironic | 18:21 | |
*** johnsom has joined #openstack-ironic | 18:21 | |
brandor5 | i think it's just going to be our default api url... `https://something:6385` correct? | 18:23 |
TheJulia | diablo_rojo: I'm standing up a fresh standalone env at the moment | 18:30 |
TheJulia | diablo_rojo: I'm kind of worried that a screen shot might not reveal that much, but part of that feeling may be because I was not directly invovled with its development | 18:32 |
*** e0ne has joined #openstack-ironic | 18:33 | |
diablo_rojo | TheJulia, for reference, the Rocky ones didnt show a ton either really: https://www.openstack.org/software/rocky/ | 18:35 |
diablo_rojo | The screen shots are 1/3 of the way down | 18:35 |
TheJulia | oh, heh | 18:37 |
openstackgerrit | Ilya Etingof proposed openstack/sushy-tools master: Add docs on UEFI boot libvirt-based emulation https://review.openstack.org/642830 | 18:39 |
diablo_rojo | TheJulia, see? Low bar lol so don't make yourself too crazy. If you want to see the other screenshots we are pulling from I can send them over. | 18:42 |
TheJulia | trying not to, just getting a clean up to date env up is always easier said than done. things are installing now | 18:43 |
etingof | there are a handful of +2'ed patches against ironic and sushy-tools awaiting a bored core to +4 them, eventually... | 18:43 |
diablo_rojo | TheJulia, definitely not the cakewalk it should be. | 18:44 |
TheJulia | complex software is complex | 18:50 |
*** nuclearasaurus has left #openstack-ironic | 18:51 | |
*** e0ne has quit IRC | 18:55 | |
*** eandersson_ is now known as eandersson | 18:57 | |
mjturek | brandor5 - also, if you ever need to shoot me any configs or logs, I'd be more than happy to take a look | 18:59 |
brandor5 | mjturek: thanks! | 18:59 |
mjturek | oooh just saw your questions I believe you're correct. let me see if I can resolve it | 19:00 |
brandor5 | mjturek: that seems to be right | 19:17 |
brandor5 | but now I'm getting an error inside the IPA | 19:17 |
brandor5 | https://pastebin.com/QUZnJ8y0 | 19:18 |
brandor5 | I'm using the IPA from RHOSP14... i wouldn't think that would matter, but I'm probably wrong | 19:18 |
brandor5 | mjturek: ^^ | 19:24 |
mjturek | brandor5: hmm yeah that's a connection issue. Seems like it can't reach the ironic api client | 19:27 |
brandor5 | i'm wondering if it's because of ssl | 19:27 |
mjturek | brandor5: are you sure that the machine can reach that IP? I would start there | 19:28 |
brandor5 | definitely can | 19:28 |
*** jcoufal has joined #openstack-ironic | 19:28 | |
mjturek | cool cool | 19:28 |
TheJulia | brandor5: that looks like a general connectivity issue | 19:50 |
TheJulia | port 13385 *blink* | 19:50 |
brandor5 | TheJulia: redhat ;) | 19:50 |
* TheJulia puts on her fedora and shakes her head | 19:52 | |
*** jaypipes has quit IRC | 20:07 | |
*** jaypipes has joined #openstack-ironic | 20:07 | |
*** whoami-rajat has quit IRC | 20:08 | |
*** jaypipes_ has joined #openstack-ironic | 20:08 | |
*** jaypipes has quit IRC | 20:12 | |
*** Lucas_Gray has joined #openstack-ironic | 20:14 | |
*** andrein has quit IRC | 20:25 | |
*** pcaruana has quit IRC | 20:25 | |
TheJulia | Somehow I'm not surprised we don't want to have any sort of retrospective :) | 20:38 |
openstackgerrit | Ilya Etingof proposed openstack/sushy-tools master: Include all libvirt domains in Systems https://review.openstack.org/648700 | 20:40 |
openstackgerrit | Ilya Etingof proposed openstack/sushy-tools master: Ensure non-empty libvirt <loader/> tag https://review.openstack.org/642728 | 20:40 |
openstackgerrit | Ilya Etingof proposed openstack/sushy-tools master: Create libvirt boot loader element if needed https://review.openstack.org/642581 | 20:40 |
openstackgerrit | Ilya Etingof proposed openstack/sushy-tools master: Use HTTP code 307 for redirects https://review.openstack.org/650074 | 20:40 |
openstackgerrit | Ilya Etingof proposed openstack/sushy-tools master: Add docs on UEFI boot libvirt-based emulation https://review.openstack.org/642830 | 20:40 |
TheJulia | yay for patches? :) | 20:40 |
* etingof is combining bugs in a compatible way | 20:41 | |
TheJulia | :) | 20:41 |
* TheJulia goes back to combining sujects into a schedule | 20:41 | |
* etingof goes to his cloudy dreams | 20:42 | |
TheJulia | goodnight | 20:42 |
etingof | o/ | 20:42 |
tonyb | brandor5: I've never heard oif that file | 20:45 |
tonyb | brandor5: a power8 running OPAL shoudln't need a chain loader s the firmare itself parses the syslinux config and boots the right thing | 20:46 |
tonyb | brandor5: so all you really need to do is verify that ironic/inspector send the right path in tftp and you're good to go | 20:47 |
tonyb | brandor5: I've only tested it in >= queens and I suspect that pike wont work | 20:47 |
openstackgerrit | Richard G. Pioso proposed openstack/ironic stable/rocky: Revert "Fix OOB introspection to use pxe_enabled flag in idrac driver" https://review.openstack.org/650116 | 20:49 |
brandor5 | tonyb: thanks, i think we're going to be able to work around it with petitboot for now... luckily we only have a handful of systems to provision and we are the ones who will be using them :) | 20:49 |
*** jaypipes_ is now known as jaypipes | 20:51 | |
tonyb | brandor5: Well using petitboot is the right thing to do so less of a work around and more of a 'do the right thing' | 20:55 |
brandor5 | tonyb: workaround in that we're manually entering petitboot entries :D | 20:56 |
*** mjturek has quit IRC | 20:57 | |
tonyb | brandor5: Ahh okay yeah that'd be terrible but shoudl work | 20:58 |
brandor5 | hehe yeah | 20:58 |
tonyb | brandor5: any chnace you're going to be at the OpenInfra summit? | 20:59 |
brandor5 | yep, i sure am | 20:59 |
tonyb | brandor5: cool. We shoudl find a few minutes to chat | 21:02 |
tonyb | dtantsur|afk: When you're workign again can you take a few minutes to look over: https://github.com/redhat-cip/hardware/pull/81 to see if you're okay with that direction | 21:03 |
tonyb | dtantsur|afk: there is stuff still to fix but I think it's better than my first attempt and even works on aarch64 'for free' ;P | 21:03 |
brandor5 | tonyb: sure thing :) i'll dm my email to you | 21:04 |
tonyb | brandor5: cool! | 21:04 |
*** bfournie has quit IRC | 21:07 | |
*** brandor5 has quit IRC | 21:12 | |
*** Goneri has quit IRC | 21:14 | |
*** baha has quit IRC | 21:34 | |
*** jcoufal has quit IRC | 21:35 | |
*** whoami-rajat has joined #openstack-ironic | 21:45 | |
*** andrein has joined #openstack-ironic | 22:00 | |
openstackgerrit | Richard G. Pioso proposed openstack/ironic stable/queens: Revert "Fix OOB introspection to use pxe_enabled flag in idrac driver" https://review.openstack.org/650134 | 22:11 |
*** rcernin has joined #openstack-ironic | 22:14 | |
rpioso | TheJulia: I cleaned up the cleanup. | 22:19 |
TheJulia | rpioso: thanks | 22:20 |
rpioso | TheJulia: You're welcome. I look forward to your reviews :) | 22:21 |
TheJulia | I'll try to look before I step away to make dinner. Tying to work out schedule details | 22:27 |
*** persia has quit IRC | 22:30 | |
*** persia has joined #openstack-ironic | 22:31 | |
rpioso | Super! Appreciate it. | 22:35 |
*** ijw has joined #openstack-ironic | 22:46 | |
lifeless | TheJulia: retrospectives are good, no? | 23:03 |
*** rloo has quit IRC | 23:03 | |
TheJulia | retrospecting is powerful, the actual act as a group.... maybe not quite as effective with an everchanging group | 23:05 |
*** livelace has quit IRC | 23:08 | |
TheJulia | rpioso: Seems like tomorrow, I'm going to call it a night soon | 23:13 |
rpioso | TheJulia: Sounds good. Have a great evening. | 23:13 |
TheJulia | you too | 23:13 |
*** mgoddard has quit IRC | 23:14 | |
*** mgoddard has joined #openstack-ironic | 23:15 | |
rpioso | Thank you | 23:15 |
openstackgerrit | Merged openstack/bifrost master: Improving test vm data collection https://review.openstack.org/650306 | 23:18 |
*** Lucas_Gray has quit IRC | 23:28 | |
*** w14161_1 has joined #openstack-ironic | 23:58 | |
*** whoami-rajat has quit IRC | 23:58 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!