15:01:14 #startmeeting puppet-openstack 15:01:15 Meeting started Tue Mar 15 15:01:14 2016 UTC and is due to finish in 60 minutes. The chair is EmilienM. Information about MeetBot at http://wiki.debian.org/MeetBot. 15:01:16 Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. 15:01:19 The meeting name has been set to 'puppet_openstack' 15:01:25 morning 15:01:27 #link agenda https://etherpad.openstack.org/p/puppet-openstack-weekly-meeting-20160315 15:01:30 hey :) 15:01:34 o/ 15:01:36 <_ody> o/ 15:01:38 wow wehave items this week 15:02:09 let's start 15:02:13 #topic trove external repos 15:02:15 o/ 15:02:15 mfisch: o/ 15:02:18 hey 15:02:25 okay so this came up as we looked into using Trove 15:02:32 hi 15:02:46 tesora have their own repo that it would be nice to add support for, but I saw in a previous neutron review that we've dropped external repos? 15:02:48 whats the policy? 15:02:53 what do they provide? 15:03:17 mfisch: https://openstack.nimeyo.com/60184/openstack-puppet-should-puppet-neutron-manage-party-software 15:03:37 they do more frequent releases amongst other things 15:03:53 not a great comparison but like redhat enterprise to centos 15:03:56 you want to enable third party repos to install a more recent version of Trove? 15:04:01 abramley: can you explain better ^ 15:04:05 we could add it into openstack_extras? 15:04:15 it's sounds very odd to me. 15:04:26 it could be an optional repo 15:04:42 rather than forking the module I think it's preferred 15:04:47 they should rather contribute to RDO or UCA, which are supposed to be official packaging, isn't? 15:04:49 something like $use_tesora_repo 15:05:08 mfisch: is package name & service name the same? 15:05:14 good question 15:05:19 service names yes, package names no 15:05:22 Tesora is a commercial offering based on trove 15:05:23 if yes, just do it in your composition layer 15:05:36 theere is no way we enable commercial things in our repositories. 15:05:36 in order to avoid a fork at a minimum we need to make the package names configurable 15:05:47 then yes, operators could do their own repo managament 15:05:58 sounds like our uca vs deb package name conversation again 15:06:05 yes, exactly 15:06:12 remind me the outcome of that? 15:06:43 we are using the os_package_type fact for that but that doesn't make sense for this 15:06:59 the original idea proposed was to create a globals class that you could override package names 15:07:03 that worked because your names match the debian names exactly 15:07:04 I was thinking package names would need to be parameters 15:07:18 there's what 3 main packages for trove? 15:07:32 this is a similar situation in that tesora is basically an alternate distro for just trove 15:07:39 yes 15:07:42 you could just Package <| title == 'trove' |> { name => 'whatever' } in your composition layer 15:07:44 thats a good way to explain 15:07:54 +1 to mwhahaha way 15:07:55 no, 4 at least 15:07:55 we keep the same package structure - api, conductor, taskmanager 15:08:28 could automagically do such things in an openstack_extras class where it sets up the repo 15:08:43 abramley: same service name? 15:08:55 yes - same service names 15:09:09 if service/package names are same as in UCA, there is no need to patch puppet-trove. 15:09:28 package names are not 15:09:29 I said above 15:09:30 so the question is whether allow openstack_extras to have a class that setup the repo or let people manage that in their composition layer 15:09:32 tesora-dbaas-common_1.6.2-614_all.deb 15:09:38 tesora-dbaas-api_1.7.0-93_all.deb 15:09:39 etc 15:09:54 so override them with the spaceship 15:10:09 right, you don't need to fork puppet-trove for that 15:10:42 just provide some guidance to folks to make it easy to use 15:10:58 we already have a large comp layer so its easy to add there 15:11:23 so if we create a tesora class in openstack_extras that sets up the repo and puts in the package name overrides, it would be an easy to implement thing for anyone who wants it 15:11:40 mfisch: you could patch puppet-trove/examples/tesora.pp with an example of manifest that add the repo and change package name and deploy trove 15:11:44 whats the argument for putting it there? just because we manage other repos there? 15:11:45 include openstack_extras::repo::tesora or something 15:11:51 yea 15:11:58 mwhahaha: if we do that, we'll have to accept other third party repos 15:12:09 something we kind of rejected in the past with https://openstack.nimeyo.com/60184/openstack-puppet-should-puppet-neutron-manage-party-software 15:12:17 only as part of the puppet-neutron 15:12:25 i would say -1 to putting it in puppet-trove 15:12:27 EmilienM: I think plugins and distros are different cases 15:12:41 I don't mind enabling tesora repos then 15:13:00 so we'll do it in openstack-extras 15:13:02 mfisch: ok for openstack_extras::repo::tesora 15:13:12 with package spaceships there too? 15:13:20 for lack of a better way to explain ^ 15:13:21 mfisch: optionally, yes 15:13:30 that you can disable with a boolean 15:13:45 thanks 15:13:55 abramley: why not re-using ubuntu package names? 15:14:15 mfisch: cool, sounds like a good approach. 15:14:44 at the time I seem to remember it was a branding thing more than anything else 15:14:53 #action mfish to create openstack_extras::repo::tesora 15:15:02 mfisch: anything else? 15:15:09 thats it on that 15:15:09 abramley: good, no problem 15:15:20 that action may take awhile btw just due to priorities 15:15:29 #topic move some functions from puppet-openstacklib to puppetlabs-stdlib 15:15:43 I've noticed some of our functions could be move to upstream puppet 15:15:49 chem created one recently about ipv6 15:16:03 Hunner, _ody: would it make sense to you? 15:16:10 normalize_ip_for_uri would be a good candidate 15:16:19 for example https://github.com/openstack/puppet-openstacklib/blob/master/lib/puppet/parser/functions/normalize_ip_for_uri.rb 15:16:36 chem: we might need to support array too 15:16:51 I've been playing with our CI to deploy IPv6 and I had to use it 15:17:05 chem: can you engage the move maybe? 15:17:13 EmilienM:this is not a problem 15:17:33 #action chem move normalize_ip_for_uri to puppetlabs-stdlib and support array 15:17:35 chem: thx 15:17:38 EmilienM: Yep, will make the feature request on puppetlab side no problem 15:17:49 nice, ping Hunner or _ody when done, so we can get it soon 15:17:52 <_ody> EmilienM: yeah. Our functions are good and robust and obviously solve issues. 15:17:58 ack 15:18:16 #topic release status 15:18:20 so just some fyi : 15:18:35 I'm working this week on Mitaka release notes for modules that will get release 15:18:46 #link release doc https://docs.google.com/spreadsheets/d/1XVrmEiLrJSdxDo-S_vFB7ljxTdYg-pe8hiMUryRor5A/edit#gid=1966527233&vpid=A1 15:19:22 Ubuntu confirmed they'll cut their stable release soon after the official release 15:20:04 so, 8.0.0 (Mitaka) should be release almost in same time as other projects 15:20:25 if you have anything you need in stable/mitaka before the cut, let us know 15:20:27 <_ody> Wow. Like first time ever, isn't it? 15:20:41 _ody: yeah, we're getting better 15:20:57 <_ody> Well packaging only started keeping up in the last couple cycles. 15:21:09 our CI is robust enought to certify you can deploy Mitaka, so I don't see the need to wait more 15:21:34 #action EmilienM to write release notes with reno for our modules 15:21:58 just a reminder about reno, I'm not pushing people to write release notes when they send patches, but please do it if you like me 15:22:21 during Newton cycle, we need to start to push people using it a little bit more 15:22:38 so if you fix a bug, bring a feature, please add a release note, it takes 30 seconds. 15:22:46 #link reno doc http://docs.openstack.org/developer/reno/usage.html 15:22:55 any question / feedback about releases ? 15:23:21 EmilienM, we can add some check for this 15:23:32 so if we have patch and don't have updated notes -1 :D 15:23:35 for job 15:23:43 that's tough 15:24:04 since newton i guess we can add (if need) 15:24:04 I think we want to educate by gently asking people to do it, by showing the right example 15:24:19 so if our core team follows this path 15:24:28 I'm sure other will get educated over the time 15:24:44 but I won't -1 someone who miss it 15:25:00 i like this way 15:25:21 #topic Open Discussion, Bug and Review triage (submit modules to triage here) 15:25:38 don't forget to follow up with a ML email about reno for newton :) 15:25:46 cause i'm so going to forget 15:26:12 good point, to notify people via mail 15:26:13 mwhahaha: right 15:26:26 #action EmilienM to follow-up on ML about reno & releases 15:26:53 degorenko: so let's start triage 15:26:57 degorenko: puppet-heat? 15:27:00 yep 15:27:00 so 15:27:05 it's about version less 15:27:09 https://review.openstack.org/261326 15:27:09 <_ody> I've noticed recently that some failing CI patches have old tests gates assigned to them. If you rebasse or ammend your commit, you'll get the newest set that are more likely to pass. 15:27:29 also we have one more patch from Gael 15:27:44 and it seems like we need to mix our patches into one 15:27:47 Probably we should also think about moving heat to auth plugins? 15:28:17 we can try to do it, yes 15:28:26 skolekonov: can it be done in a further iteration? or should it be done in the same patch? 15:28:43 are the patches exclusive? 15:29:05 We will need to deprecate identity_uri. So probably one patch makes sense 15:29:28 ok 15:29:32 degorenko: ok to change that? 15:29:33 my patch is for auth_uri and indentity but it won't work without a couple trustee params and client_uri 15:29:45 that is implemented by Gael patch 15:30:18 we with dmburmistrov tested it, it works when both patches is on repo 15:30:35 do we need to stash both patches in one? 15:30:47 yes 15:31:01 ping gael about it, and make sure you agree on that, but I don't see any problem 15:31:17 if we need to stash, go ahead, and make it clear in commit message 15:31:34 ok, i will ping gael then 15:32:05 mfisch: keystone hook 15:32:23 I think your patch need further work, regarding degorenko's review 15:33:33 i also have one more request for review :) https://review.openstack.org/#/c/291709/ 15:33:34 EmilienM: yep 15:33:40 EmilienM: I am going to look today 15:33:52 iberezovskiy: excellent work on oslo 15:34:00 the code LGTM, I'm waiting for CI 15:34:16 I'm glad you're working on that, it was kind of staled lately 15:34:25 EmilienM, as you can see I've also started to switch nova to it 15:34:45 so, I wanna ask one thing, do we need to keep qpid https://github.com/openstack/puppet-nova/blob/master/manifests/init.pp#L616 ? 15:35:02 AFIK qpid is dead in Oslo meesaging 15:35:07 yep 15:35:10 https://review.openstack.org/#/q/topic:deprecate_qpid 15:35:11 mwhahaha: can you review https://review.openstack.org/#/c/292638/ please? 15:35:23 i'm done with deprecation it for liberty some time ago 15:35:26 sure 15:35:27 iberezovskiy: so in a separated patch, we need to drop qpid everywhere 15:35:32 now it can be fully removed in mitaka i guess 15:35:38 with parameter deprecation to keep our users happy 15:35:46 EmilienM : replaced with QPid/Proton + pyngus python library 15:36:24 ok, it'll be a separate patch 15:36:27 dims, can you provide some docs for Proton? 15:36:37 also I'll start working on other modules to switch to oslo 15:36:49 degorenko: Qpid has been replaced by Proton + pyngus, right? 15:37:07 EmilienM, this question i guess is going to dims 15:37:11 degorenko http://docs.openstack.org/developer/oslo.messaging/AMQP1.0.html 15:37:46 dims: ^ yeah sorry 15:38:37 y, we have a new driver 15:38:58 then we need not remove qpid in mitaka, but replace it on proton 15:39:09 degorenko : that's logical +1 15:39:19 iberezovskiy, ^^^ 15:39:24 ok, do we have people deploying proton? 15:39:57 anyway, let's first move rabbimq code to puppet-oslo 15:39:58 EmilienM have to ask flaper87 and kgiusti 15:40:11 and drop all old qpid stuff if needed 15:40:19 we'll see for proton during newton cycle 15:40:35 ok 15:40:51 EmilienM : makes sense 15:40:57 +1 for me 15:41:12 what did I do now? 15:41:15 :( 15:41:40 flaper87: we were wondering about new amqp driver in oslo.messaging 15:41:41 flaper87 : are there folks deploying proton+pyngus+oslo.messaging 15:41:49 dims: yes 15:42:02 note that proton != qpid 15:42:02 outside devstack? :-) 15:42:11 EmilienM: >.> 15:42:16 :P 15:42:24 Is there a problem? 15:42:24 lol 15:42:28 something I can help with? 15:42:39 do we have packages? 15:42:52 it sounds something we need to investigate 15:42:55 degorenko: for proton? yes 15:43:06 There are packages for qpid-proton and pyngus 15:43:10 I'm not sure about debian, though 15:43:15 I think there are no for debian 15:43:20 but I know there's work in progress 15:43:26 perhaps zigo can help us out there 15:43:28 nice, then we need some investigation, yes, about using this 15:43:35 cool 15:43:39 and there's work on puppet manifests for it 15:43:46 flaper87: where? 15:43:49 I can point you to the folks working on that 15:43:51 O_o 15:44:02 It's in progress, fwiw 15:44:14 we haven't seen any Puppet work related on that 15:44:15 I don't have other details as of now 15:44:29 except if people commit on their own github 15:44:30 may be they have some separate repo for this? 15:44:31 EmilienM: it's not ready/upstream yet but it's in progress AFAICT 15:44:35 :( 15:44:37 no no 15:44:39 wait, stop 15:44:42 don't freak out 15:44:43 :D 15:44:44 jeeez 15:44:44 it would be great if people would commit upstream, even WIP 15:44:53 agree ^ 15:44:54 There's people *working* on it as of like 2 or 3 weeks ago 15:45:00 at least for keeping open design & discssuon 15:45:17 release early, release often 15:45:23 EmilienM: these are folks not working on open stack full time. Bare with me while I help them go upstream 15:45:28 I put all my WIP in Gerrit so people can look at it 15:45:34 openstack* 15:45:42 cool 15:45:52 probably we can ask them to upload wip review 15:45:53 tell them to commit on Gerrit so at least we know they're on it 15:46:19 flaper87: take my hat. What would you do if you see parallel and private efforts to improve puppet modules? 15:46:49 anyway, I'm looking forward to seeing their work, ASAP 15:46:58 EmilienM: I'm not saying you're wrong. I'm just providing you info based on what I know 15:47:03 do we have outstanding bugs or reviews for today? 15:47:38 It's better to assume good faith. They are not working on this privately because they are afraid of reviews 15:47:50 flaper87: thank you for letting us know this information, and thank you for pushing them to contribute upstream 15:48:11 they should not afraid us :) 15:48:33 AFAICT we don't bite...right? :) 15:48:40 degorenko: they are not, trust me! 15:48:42 how can you be afraid of a puppy https://c1.staticflickr.com/5/4112/5170590074_714d36db83_b.jpg 15:48:55 awww 15:49:03 :D 15:49:16 ok, I'll let open discussion for 1 min and close the meeting, if nothing comes up 15:49:32 I love puppies 15:49:46 if I had a house, I would buy dogs 15:50:11 have a good week everyone 15:50:16 #endmeeting