16:00:41 #startmeeting ironic_neutron 16:00:41 Meeting started Mon Apr 11 16:00:41 2016 UTC and is due to finish in 60 minutes. The chair is Sukhdev. Information about MeetBot at http://wiki.debian.org/MeetBot. 16:00:43 Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. 16:00:45 The meeting name has been set to 'ironic_neutron' 16:01:05 #topic: Agenda 16:01:11 #link: https://wiki.openstack.org/wiki/Meetings/Ironic-neutron#Meeting_April_11.2C_2016 16:01:23 #topic: Announcements 16:01:43 Folks Mitaka is out and Newton is open for business 16:02:02 We have one more meeting before we all head out to summit 16:02:11 morning 16:02:15 o/ 16:02:18 jroll : GM 16:02:44 we discussed about 4 patches last week 16:03:04 I reviewed them over the weekend - they look good 16:03:30 any chance we can get them some core love and get them merged within April? 16:04:11 devananda : you have been busy testing them as well - any thoughts? 16:04:32 Sukhdev: I've found a few issues with the network driver patch, and posted comments last week 16:04:41 I see there are new patches up, which I need to retest this week 16:05:12 devananda: I will try to give them a spin as well 16:06:12 as far as the hardware tests I've been doing - the environment is up but some kinks are still being worked out with our deployment. I'm hoping by EOW, and no later than the summit, we'll have some significant testing done against it 16:06:55 devananda : that will really nice 16:07:15 devananda: are you testing with OVN? 16:08:37 anybody else is testing these patches as well? 16:09:17 * sambetts hasn't had a chance to rebase his out of driver driver since the network interface to driver change 16:09:32 out of tree 16:10:19 Sukhdev: yes, with OVN 16:10:24 sambetts : I am also in the same dilemma - my setup is running 2-3 weeks old pathes 16:11:04 devananda : cool - so, the neutron-ironic interface is working just fine for you 16:11:58 sambetts : I am thinking about updating my setup with latest patches 16:12:13 unsure - we were at that point in the build last week, and I haven't sync with the team yet today 16:12:46 * jroll bbiaf 16:13:09 devananda: ah I see - if you need any help, feel free to ping me 16:13:21 I think its in a fairly stable state now, its probably at a point where I can confidently rebase my interface and not have to worry about having to drastically change it again 16:13:55 yep, updates during the last 2 weeks were mostly unittests 16:13:55 :-) 16:14:14 sambetts: well, there's one major issue in it 16:14:42 I left feedback on p31 16:15:00 * on review 285852 patch 31 16:15:15 * Sukhdev looking 16:15:20 two issues: 16:15:39 - network drivers are loaded at instantiation of the Node object, but should be loaded when the Conductor starts 16:15:59 - upgrade path requires a CONF change, and not doing so breaks ironic-conductor silently 16:17:00 First issue solved by ensuring that enabled_network_drivers is processed at conductor start 16:17:05 right? 16:17:44 yes, except the new interface isn't loaded there 16:17:50 so it may take some refactoring - -I'm not sure 16:17:54 second by having a check in the init for the network drivers if cleaning is enabled: ensure conf is there 16:19:25 if enabled_network_drivers were instantiated within CondctorManager.__init__, that would address the first one 16:19:44 it would also cause the second one to result in an error message and Condcutor's refusal to start today 16:19:52 which would be better than a silent failure, but also, I htink the wrong solution 16:20:08 I'd like to ask -- do we actually need to define the cleaning_network_uuid for the FlatNetworkDriver ? 16:21:07 devananda: https://review.openstack.org/#/c/285852/36/ironic/drivers/modules/network/flat.py its needed for add_cleaning_network 16:21:16 devananda : hasn't this been the case before? 16:21:20 as this patch stands, it adds a new requirement to Ironic -- all deployments must set a Neutron Network UUID 16:21:30 even if they do not have Neutron in the environment 16:21:37 because flat networks worked just fine without Neutron before 16:21:42 ie, in the case of a stand-alone ironic 16:21:44 devananda: we do, that's a thing today 16:21:46 or a private single-tenant cloud 16:21:48 afaik 16:21:49 jroll: no, it's not 16:22:02 how are cleaning ports created then? 16:22:04 devananda: yep, before it was required only when neutron dhcp is used and cleaning is enabled 16:22:11 right, that 16:22:12 vdrok: exactly 16:22:15 s/before/now 16:22:33 so if I'm using bifrost (with no neutron) I don't need to set this 16:22:43 so yeah, I guess it might need a refactor so that only happens if neutron dhcp is in use 16:22:44 after this patch, I have to pass in a fake UUID for this variable 16:22:52 s/variable/CONF option/ 16:23:00 we just need an if statement in https://review.openstack.org/#/c/285852/36/ironic/drivers/modules/network/flat.py L36 that checks if cleaning enabled right? 16:23:03 nod 16:23:10 cool 16:23:31 sambetts: well, it should be able to work without that config, if noop dhcp provider is used 16:23:38 "it" being cleaning 16:23:57 clint was also requesting that the config accept a name 16:24:06 but idk if he put that in the review 16:24:11 while we're hacking adding the cleaning network via the dhcp provider 16:24:49 once that is deprecated and we're calling the network provider for cleaning networks directly then is cleaning enabled is your only flag for disabling it right? 16:25:00 jroll: he did not, and idk if it's worth adding this too right now, lots of stuff there already, we could change it later if needed 16:25:17 vdrok: sure 16:25:32 sambetts: well, it actually depends on the dhcp provider really :/ 16:25:52 maybe we shouldn't be moving that, hrm 16:26:10 personally I think that the dhcp should be moved inside the network driver 16:26:15 or perhaps we need to fold dhcp provider things... yeah 16:26:33 I feel like we can do that after all of these things, with the one catch being this config 16:27:11 the easiest thing would be to meove the cleaning net check inside cleaning methods instead of init right? 16:27:43 vdrok: or into the conductor's __init__ ? 16:27:53 but then it fails during runtime and I'd love to have it just blow up the conductor at the start if i've got an invalid config 16:28:19 sambetts +1 16:28:25 sambetts: yes 16:28:40 DriverLoadError will only abort the conductor if raised during __init__ 16:29:05 so if we don't check this during conductor init, it will just get logged over and over again (which is what I'm seeing right now) 16:29:07 having an if CONF.cleaning_enabled in the FlatProviders init would allow it to work if they are using the Ironic config correctly 16:29:43 sambetts: IFF we also instantiated FlatNetworkProvider during ConductorManager.__init__ -- which we don't today 16:29:43 (I'm assuming that these drivers will be loaded at conductor load) 16:29:49 :) 16:29:53 which I really want them to be 16:30:00 ++ 16:30:02 fwiw, I'm surprised the drivers aren't loading at conductor init, they look like they should be already 16:30:26 driver_factory.NetworkInterfaceFactory() in init_host? 16:30:43 ^ yeah, that's what's needed 16:31:00 ah, that isn't done today 16:31:02 my mistake 16:32:55 it seems like simple fix, but, will require good amount of testing - 16:35:15 Anything else on this patch? 16:35:21 Sukhdev: that's it for me 16:36:09 devananda : thanks for articulating the issue - when I saw the comments on p35, I thought your issue was addressed 16:36:39 #topic: VLAN aware servers 16:36:58 We discussed this last week, and I followed up in Neutron 16:37:07 thought I give a quick update 16:37:30 So, OVN has this implemented 16:37:55 the author who was looking for OVS got pulled into something else 16:38:12 hence, it has not been getting much attention in the neutron side - 16:38:28 but, last week I raised the priority because of Ironic need 16:39:02 We are looking into separating out the OVS implementation from the API - 16:39:28 this means, the basic core API will be implemented so that who ever has need for it can use it 16:39:40 which works best for us for Ironic integration 16:40:37 I am also trying to get a design session on this topic so that we can all discuss 16:41:30 as you know neutron is one of the biggest project, and, the number of sessions tend to be tight - 16:41:55 but, I will continue to hope and push for one :-) 16:41:58 oh! we did get the cross-project session for this on tuesday 16:42:00 ++ for generic API, my concern with the existing API is that they define a translation between what comes out of the VM and what is carried on the neutron network, which of course doesn't work for most BM cases because we can't run anything between the node and the switch 16:42:27 jroll : cool - thanks for sharing this news 16:42:39 \o/ 16:42:43 np, almost forgot :) 16:43:12 jroll: woot! 16:43:43 Neutron summit session ideas are here: https://etherpad.openstack.org/p/newton-neutron-summit-ideas 16:44:00 Ours is L34 16:44:38 Sukhdev: any idea when the decision will be made for neutron? 16:44:41 sambetts : correct, present proposal was by OVN (and OVS team) - hence, very VM centric 16:45:29 sambetts : I think the deadline for the session schedule is 4/17 - 16:45:31 Sukhdev: Yeah, we (Cisco) have an interest for making in more generic for SRIOV too, because that has the same problem as BM 16:45:43 making it* 16:46:12 Sukhdev: So we should know by next meeting then 16:46:19 awesome :) 16:46:22 sambetts : yup 16:47:21 BTW, I saw rosella replied on ML that she will pick up the work on VLAN aware VMs - she was driving it earlier 16:47:33 this means we will get traction on this - 16:47:49 Great! 16:48:21 What I am trying to do is to pull all the players in a room so that we can all lay out the requirements and work together so that duplicated work can be avoided 16:48:55 so that it is VLAN aware server (not just VMs) 16:49:20 Anything else on this? 16:49:42 Sort of related, I've added by patches to glean to add support for bonding and multiple vlans 16:49:48 to the midcycle ehterpad 16:50:21 sambetts : yes, I saw them - thanks 16:50:30 https://etherpad.openstack.org/p/ironic-neutron-mid-cycle L73 16:51:45 when I get a moment I hope to try to chase the same for cloudinit also 16:52:12 glean was an easy first target though 16:53:17 * Sukhdev time check - 7 min 16:53:29 anything else on this? 16:53:45 #topic: Open Discussion 16:54:11 Any body wants to discuss anything? 16:54:42 Nothing from me 16:54:58 silence is golden 16:55:04 :) 16:55:11 shall we call it a day? 16:55:31 +1 16:55:41 OK 16:55:55 thanks folks - it was a great discussion 16:55:55 thanks y'all :) 16:56:00 bye 16:56:14 Thanks everyone 16:56:17 #endmeeting