Thursday, 2017-10-12

ekcs#startmeeting congressteammeeting00:01
openstackMeeting started Thu Oct 12 00:01:18 2017 UTC and is due to finish in 60 minutes.  The chair is ekcs. Information about MeetBot at http://wiki.debian.org/MeetBot.00:01
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.00:01
*** openstack changes topic to " (Meeting topic: congressteammeeting)"00:01
openstackThe meeting name has been set to 'congressteammeeting'00:01
thinrichsHi all00:01
ekcshello all.00:01
ekcshi thinrichs00:01
ekcstopics here as usual: https://etherpad.openstack.org/p/congress-meeting-topics00:01
*** yangyapeng has quit IRC00:02
*** masahito has joined #openstack-meeting00:02
*** yangyapeng has joined #openstack-meeting00:02
masahitoekcs: hi.00:03
ekcshi masahito !00:03
ekcstopics here as usual: https://etherpad.openstack.org/p/congress-meeting-topics00:03
masahitosorry, I need to go in 30 mins.00:03
*** yamahata has quit IRC00:03
ekcsgot it!00:03
ekcswell let’s get started then.00:04
ekcs#topic priorities00:04
*** openstack changes topic to "priorities (Meeting topic: congressteammeeting)"00:04
ekcssince the PTG I’ve been maintaining a list of congress priorities in strict order.00:04
ekcshttps://etherpad.openstack.org/p/congress-task-priority00:04
ekcsIdea is to avoid having a bunch of things all at the same priority level.00:05
*** Manuel_112 has joined #openstack-meeting00:05
ekcsin reality it may not be exact, but it’s better than having 10 “high priority” items we can’t distinguish between.00:05
*** gmann_afk is now known as gmann00:06
*** ramineni_ has joined #openstack-meeting00:06
ekcsPlease take a look from time to time and make any comments, suggestions, changes as needed.00:06
thinrichsTotal priority is good00:06
ekcsyups.00:06
*** yangyapeng has quit IRC00:07
*** ijw has quit IRC00:07
ekcswe’re making decent progress so far. 1, 2.2, 2.3, 4 are all in review.00:07
ekcs1 is ready to merge just need the unblock the gate still.00:07
*** ijw has joined #openstack-meeting00:08
ekcsany comments, additions, thoughts, or discussions on the list?00:08
*** Swami has quit IRC00:08
*** ramineni_ has left #openstack-meeting00:10
thinrichsLook good to me.  I'd focus on solving community pain points, which it looks like is where the priorities are lining up.00:10
*** Manuel_112 has quit IRC00:10
ekcsthinrichs: agreed on focusing on concrete pain points.00:11
ekcsplease feel free to insert anything you guys see missing from the list.00:11
ekcsor bring them up in IRC.00:11
*** yamahata has joined #openstack-meeting00:12
ekcsok moving on then00:14
ekcs#topic gate blockage00:15
*** openstack changes topic to "gate blockage (Meeting topic: congressteammeeting)"00:15
ekcsunfortunately our gate is still blocked since the jenkin to zuul migration.00:15
*** torgomatic has left #openstack-meeting00:15
ekcswe have patch ready to fix things in our repo, but that patch is still blocked by stuff in other repos.00:16
ekcsalso seeing a fair amount of infra instability with POST_FAILURE.00:16
*** edmondsw has joined #openstack-meeting00:16
ekcshoping for things to be settled down by next week.00:17
ekcsquite a few patches stuck at the gate.00:17
ekcsany thoughts/comments/questions?00:17
ekcsmain external issue we’re still waiting on: https://bugs.launchpad.net/designate/+bug/172143200:18
openstackLaunchpad bug 1721432 in oslo.context "TypeError: __init__() got an unexpected keyword argument 'project' in Designate" [Critical,In progress] - Assigned to Juan Antonio Osorio Robles (juan-osorio-robles)00:18
ekcsok moving along then.00:19
ekcs#topic continue drivers conf discussion00:19
*** openstack changes topic to "continue drivers conf discussion (Meeting topic: congressteammeeting)"00:19
ekcsactually ramineni seems to be in and out.00:20
ekcsmaybe we’ll wait a bit more.00:20
ekcsany other topics on our minds?00:20
thinrichsNot me00:20
thinrichsexcept… did you figure out the grammar problem?00:21
*** edmondsw has quit IRC00:21
ekcsthinrichs: no I haven’t. the triple quote appears to be broken. but not sure we want to actually try and fix it.00:21
ekcsI’m thinking we’ll work around it for feeding YAML to mistral in rule.00:22
ekcslike explicitly de-escape the \n in a string argument before passing on the mistral.00:23
ekcsone issue is what the intended result is when we write something like p(“a\nb”) in a congress rule.00:24
ekcsis it supposed to be length 3 with a newline character or is it supposed to be length 4? right now it reads as length 4.00:24
*** gouthamr has joined #openstack-meeting00:24
ekcsI’m thinking we don’t really want to muck with that behavior so we can just add another layer of de-escape on top of that.00:25
ekcsopen to thoughts and suggestions.00:25
*** sballe_ has quit IRC00:25
ekcsbtw here is what I organized from our previous discussion around changing driver conf behavior: https://etherpad.openstack.org/p/congress-driver-conf00:27
thinrichsNot clear to me why embedding the carriage-return in the triple quote is the wrong thing.  It gives the user the power to choose that.00:28
thinrichsEspecially if the triple-quotes are broken.00:28
thinrichsI also don't know where the code that would change \n to a CRLF would live.  The datasource?00:28
ekcsthinrichs: I’m thinking the datasource, for specific use like YAML string arg.00:29
ekcsthinrichs: I agree it’s cleaner to make p(“a\nb”) read as length 4 string.00:29
*** jkilpatr has quit IRC00:29
ekcssorry length 300:29
*** Patifa has quit IRC00:30
thinrichsTo be clear, I was thinking "a\nb" would be a 4-length string, but """a\nb""" would be a 3-length string.00:30
ekcsoh I see what you mean.00:30
*** andreas_s has joined #openstack-meeting00:31
*** wanghao has joined #openstack-meeting00:31
ekcsI was thinking “a\nb” would be length 3, and “a\\nb” would be length 4. consistent with python.00:31
ekcsso you’re saying since triple quote is broken, we can just fix it.00:31
*** wanghao has quit IRC00:31
ekcssince clearly we’re not going to break people.00:32
*** wanghao has joined #openstack-meeting00:32
ekcsin python triple quote, “””a\nb””” would be length 4.00:32
*** b1airo has quit IRC00:32
ekcs“””a00:32
ekcsb”””00:32
ekcswould be length 3.00:32
thinrichsOh I see.  I was assuming we wanted to write with the actual line-breaks in there.00:33
thinrichsBut you're saying we want to use \n instead of the actual line-break.00:33
masahitosorry to interrupt. I need to go.00:34
thinrichsIf I were embedding YAML into the file I'd probably want to cut-and-paste as is (and use YAML linters).  That would require using the actual line breaks, instead of the \n./00:34
*** sanjay has joined #openstack-meeting00:34
ekcsthanks masahito see you later!00:34
masahitoekcs: thanks, bye.00:34
*** sanjay has quit IRC00:35
thinrichsbye masahito00:35
masahitothinrichs: bye00:35
*** masahito has quit IRC00:35
ekcsthinrichs: right. if we want to be able to copy past YAML into an arg, we’d need to fix triple quote and allow actual line breaks in the input.00:35
*** sanjay-redhat has joined #openstack-meeting00:35
*** andreas_s has quit IRC00:35
ekcsthat would be ideal.00:35
*** Apoorva_ has joined #openstack-meeting00:36
ekcsbut I have no idea where to start in fixing triple quote.00:36
ekcsand a compromise would be for user to replace newline by \n before pasting.00:37
ekcsmay be the preferable style anyway in many cases.00:37
ekcsrather than00:37
thinrichsSo then something consistent with Python makes sense.  Maybe a backwards incompatible change, but that seems fine.00:38
*** sanjay-redhat has quit IRC00:39
*** Apoorva has quit IRC00:39
ekcswhat is the backward incompatible change?00:40
ekcsreading “a\nb” is length three?00:40
*** Apoorva_ has quit IRC00:40
thinrichsYes00:40
thinrichsThat's not how it works today, right?00:41
ekcsno not how it works today. my favored option right now is to keep it working the way it is today.00:41
thinrichs(It'd obviously be a pretty tiny change in behavior)00:41
*** Manuel_112 has joined #openstack-meeting00:41
thinrichsOh—then no backwards incompatible change.00:41
thinrichsPut the translation in the datasource driver.00:42
thinrichsRight?00:42
ekcsbut simply built it into specific action executions to de-escape. so it’s part of that action semantic rather than general parsing semantic00:42
ekcsright. it’s a bit hacky (ie. specific to something)00:42
ekcsbut it keeps backward compatibility.00:42
ekcsbut it’s also an option to just change the way “a\nb” parses completely to be consistent with python.00:45
ekcsi’m not sure how to do that either, but it may be easier to figure out than the triple quote.00:46
*** Manuel_112 has quit IRC00:46
*** thorst has joined #openstack-meeting00:46
*** thorst has quit IRC00:46
*** wanghao has quit IRC00:46
*** tovin07_ has joined #openstack-meeting00:46
thinrichsThe datasource answer sounds like the simplest for now00:47
*** wanghao has joined #openstack-meeting00:48
ekcsyea that’s what I’m thinking.00:48
ekcsi’ll give it a try.00:48
ekcsso do you have any more thoughts on the drivers conf?00:48
*** wanghao has quit IRC00:49
*** wanghao_ has joined #openstack-meeting00:49
ekcsI added a new suggestion which is to treat the existing drivers option as specifying drivers in addition to the default ones.00:49
ekcshttps://etherpad.openstack.org/p/congress-driver-conf00:49
ekcsthat way people who have additional drivers configured don’t get broken by upgrade. people who have old config don’t miss out on new drivers.00:50
ekcsonly people who get “messed up” are people who specifically want certain drivers to be unavailable.00:50
ekcsthey’d need to specify a new whitelist_driver option to limit to those.00:51
ekcsthat’s 2.2 in the etherpad.00:51
ekcssorry it’s 2.3 in the etherpad.00:53
*** unicell has quit IRC00:53
ekcs2.2 is what I think both you and ramineni favored in last meeting.00:53
ekcs2.1 is what I favored last meeting before I considered 2.3.00:53
*** wanghao has joined #openstack-meeting00:54
*** XueFeng has quit IRC00:56
*** XueFeng has joined #openstack-meeting00:56
*** Manuel_112 has joined #openstack-meeting00:57
*** wanghao_ has quit IRC00:58
*** XueFeng has quit IRC00:59
*** XueFeng has joined #openstack-meeting00:59
*** priteau has joined #openstack-meeting00:59
ekcsok well time’s up. thanks for the discussion! feel free to add comments to the etherpad and/or respond to my ML message later. have a great week. #endmeeting01:00
ekcs#endmeeting01:00
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"01:00
openstackMeeting ended Thu Oct 12 01:00:09 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)01:00
openstackMinutes:        http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-10-12-00.01.html01:00
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-10-12-00.01.txt01:00
openstackLog:            http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-10-12-00.01.log.html01:00
*** epico has joined #openstack-meeting01:00
*** nmagnezi has quit IRC01:00
*** thinrichs has quit IRC01:00
*** Manuel_112 has quit IRC01:01
*** aeng has quit IRC01:02
*** priteau has quit IRC01:04
*** liusheng has joined #openstack-meeting01:05
*** kiennt26 has joined #openstack-meeting01:06
*** caowei has joined #openstack-meeting01:07
*** nmagnezi has joined #openstack-meeting01:08
*** hemna_ has quit IRC01:10
*** yamahata has quit IRC01:10
*** Manuel_112 has joined #openstack-meeting01:12
*** litao__ has joined #openstack-meeting01:12
*** liusheng has quit IRC01:13
*** liusheng has joined #openstack-meeting01:15
*** yangyapeng has joined #openstack-meeting01:16
*** Manuel_112 has quit IRC01:16
*** baoli has joined #openstack-meeting01:18
*** mrunge has quit IRC01:24
*** yamamoto has quit IRC01:26
*** baoli has quit IRC01:27
*** kiennt26 has quit IRC01:29
*** dmacpher has joined #openstack-meeting01:38
*** baoli has joined #openstack-meeting01:38
*** ijw has quit IRC01:41
*** ijw has joined #openstack-meeting01:41
*** larainema has joined #openstack-meeting01:43
*** baoli has quit IRC01:43
*** ijw has quit IRC01:44
*** sdague has quit IRC01:44
*** kaisers has quit IRC01:48
*** kaisers has joined #openstack-meeting01:49
*** psachin has joined #openstack-meeting01:49
*** edmondsw has joined #openstack-meeting01:51
*** Manuel_112 has joined #openstack-meeting01:51
*** ekhugen has joined #openstack-meeting01:51
*** nikhil has quit IRC01:54
*** hongbin has joined #openstack-meeting01:55
*** Manuel_112 has quit IRC01:55
*** Manuel_112 has joined #openstack-meeting02:00
zhenguo#startmeeting mogan02:01
openstackMeeting started Thu Oct 12 02:01:58 2017 UTC and is due to finish in 60 minutes.  The chair is zhenguo. Information about MeetBot at http://wiki.debian.org/MeetBot.02:01
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.02:02
*** openstack changes topic to " (Meeting topic: mogan)"02:02
openstackThe meeting name has been set to 'mogan'02:02
*** thorst has joined #openstack-meeting02:02
wanghaohi02:02
zhenguoliusheng, shaohe_feng, wanghao, litao__, Xinran, zhangyang: o/02:02
wanghaohah02:03
liushengo/02:03
*** rbudden has quit IRC02:04
*** Manuel_112 has quit IRC02:04
wanghaoo/02:05
zhenguoas always, the agenda:02:05
zhenguo#link https://wiki.openstack.org/wiki/Meetings/Mogan#Agenda_for_next_meeting02:05
zhenguolet's jump in02:05
zhenguo#topic announcements and reminders02:05
*** openstack changes topic to "announcements and reminders (Meeting topic: mogan)"02:05
zhenguoI created a library https://launchpad.net/os-cpu02:06
Xinrano/02:06
zhenguoXinran: o/02:06
*** thorst has quit IRC02:07
zhenguowill move the shared codes there02:07
zhenguoto avoid duplication and drift with nova02:07
*** baoli has joined #openstack-meeting02:07
zhenguocurrently it placed here https://github.com/niuzhenguo/os-cpu02:07
zhenguostill empty :D02:07
wanghaowhy named os-cpu?02:08
zhenguoos-> openstack cpu-> compute02:08
wanghaookay02:08
zhenguolike os-brick and os-vif02:08
wanghaoso Nova and Mogan will move shared codes to here?02:08
zhenguoonly Mogan use and maintain it02:08
zhenguoif it's ok, hope nova can use it later02:09
wanghaoyeah, hope that02:09
zhenguoanyway, we should do that02:09
wanghaothat's a right way02:09
wanghaookay02:09
liushengzhenguo: should we mention that in mailing list ?02:09
wanghaoliusheng: I think so02:10
zhenguoliusheng: sure, later I will02:10
wanghaoat least let nova guys know that02:10
liushengok02:10
zhenguoafter we created a repo under openstack02:10
*** hichihara has joined #openstack-meeting02:10
zhenguoI will move configdrive/metadata stuff there first02:10
zhenguoto make it a library02:10
liushengzhenguo: hah, not sure if the repo should belong to mogan group or others02:11
zhenguonot sure02:11
zhenguobut I prefer not, hah02:11
*** baoli has quit IRC02:12
*** ekcs has quit IRC02:12
zhenguowe can maintain it, but not as a sub project for us02:12
liushengzhenguo: ok, let's take a look of os-brick and os-vif later02:12
wanghaoen, hope nova guys can move codes to here too.02:12
liushengzhenguo: yes02:12
zhenguowanghao: Sean said, nova use os-brick after cycles02:13
wanghaozhenguo: yes02:13
zhenguoso we should do it first, and well define the library02:13
shaohe_fengzhenguo: morningb02:13
zhenguoshaohe_feng: o/02:14
zhenguook, another thing is our official application https://review.openstack.org/#/c/508400/02:15
zhenguoplease keep an eye on that02:15
wanghao02:15
wanghaoen02:15
zhenguohttps://github.com/openstack/mogan02:17
shaohe_fengtwo +102:17
zhenguowe are back on our own feet now :D02:17
*** thorst has joined #openstack-meeting02:17
zhenguobut seems something wrong with the gate now02:18
liushengyes, seems other projects also broken02:18
zhenguoyes, seems related to the zuul v3 migration02:19
zhenguowe can do other tings until the gate back to normal02:19
*** thorst has quit IRC02:19
zhenguonot much of announcement, anyone else got a thing here02:20
zhenguoif not, let's move on02:21
zhenguo#topic task tracking02:21
*** openstack changes topic to "task tracking (Meeting topic: mogan)"02:21
zhenguo#links https://etherpad.openstack.org/p/MoganWhiteBoard02:21
*** Manuel_112 has joined #openstack-meeting02:21
zhenguooh, seems we forget to sync with ptg discussion on the white board02:22
liushengindeed02:22
zhenguoplease add your task there, hah02:23
liushengzhenguo: ok, sure02:23
zhenguobased on this https://etherpad.openstack.org/p/mogan-queens-ptg02:23
wanghaoshould we remove the done job?02:23
zhenguowanghao: yes02:24
wanghaoseems too much things here02:24
wanghaookay02:24
wanghaolet's refresh it.02:24
*** baoli has joined #openstack-meeting02:25
*** Manuel_112 has quit IRC02:26
zhenguook, anyone wants to give some updates of your task here?02:27
shaohe_fengzhenguo: I'm looking into rsd-lib02:28
zhenguoshaohe_feng: how 's taht02:29
shaohe_fengzhenguo: will update the spec.02:29
shaohe_fengzhenguo: send a email to yanlin for some questions, cc you.02:29
shaohe_fengzhenguo: you can check it.02:29
zhenguoshaohe_feng: you can add a new spec, then I will get rid of the valence one02:29
shaohe_fengzhenguo: agree.02:29
zhenguoshaohe_feng: ok02:29
zhenguoshaohe_feng: please have a look at this https://review.openstack.org/#/c/510724/02:31
zhenguonot sure if client gate broken as well02:31
*** gouthamr has quit IRC02:31
shaohe_fengzhenguo: OK02:31
zhenguoliusheng: so, how's the quota work02:31
*** ricolin has joined #openstack-meeting02:32
liushengzhenguo: didn't start yet..02:32
*** ekhugen has quit IRC02:32
zhenguoliusheng: ok02:32
liushengzhenguo: but I am trying to see how other project's implementaiton02:32
zhenguoliusheng: good02:33
*** coolsvap has joined #openstack-meeting02:33
zhenguoXinran: I find you patch about admin password support, thanks!02:33
Xinranzhenguo,  np02:34
liushengzhenguo: seems Keytone has plance to unify all the resource quota02:34
liushengzhenguo: * plan02:34
zhenguoliusheng: you mean move quota to keystone?02:34
Xinranzhenguo, I am trying to return the password within the reponse of server create02:35
wxy_FYI, this one: http://specs.openstack.org/openstack/keystone-specs/specs/keystone/ongoing/unified-limits.html02:35
liushengzhenguo: yes, currently, all the Cinder, Nova, Neutron have their own quota implementation02:35
zhenguowxy_: thanks :D02:35
zhenguoliusheng: we can look into the specs02:36
zhenguoXinran: cool02:36
liushengzhenguo: the implementations are not very suitable and have some drawbacks02:36
liushengzhenguo: ok02:36
zhenguolitao__: are you around?02:38
wxy_yeah. It's block now. The first thing is to approve this two specs: https://review.openstack.org/#/c/441203  https://review.openstack.org/#/c/45570902:38
*** markvoelker has quit IRC02:39
zhenguowxy_, liusheng: should we wait for that happen ?02:39
wxy_I'm try to take over them now. So If the quota in mogan is not urgent. I suggest you guys can follow Keystone.02:39
*** mrunge has joined #openstack-meeting02:39
zhenguowxy_: ok, thanks02:39
liushengwxy_: thanks for xiyuan mentioning that02:39
wxy_Maybe it can be done in R release.02:39
liushengok02:40
*** andreas_s has joined #openstack-meeting02:40
zhenguowxy_: so we can leverage that in S :(02:40
wxy_R is OK if everything goes well.02:40
wxy_I'm not sure any way. :)02:40
zhenguowxy_: ok, hah02:41
zhenguoliusheng: please keep an eye on that02:41
liushengzhenguo: ok, sure02:42
zhenguook, the unmange servers specs need more reviews02:42
shaohe_fengwxy_: http://specs.openstack.org/openstack/keystone-specs/specs/keystone/ongoing/unified-limits.html02:42
shaohe_fengI can not open it02:43
zhenguowanghao: is that only for unmanaging or including transfer?02:43
zhenguoshaohe_feng: you can't?02:43
liushengshaohe_feng: we can open it02:43
zhenguoshaohe_feng: I can't believe there's a block in your office, hah02:43
*** gcb has joined #openstack-meeting02:43
*** dfflanders has joined #openstack-meeting02:44
Xinranshaohe_feng,  I can open it02:45
zhenguook, so anything else here?02:46
shaohe_fengzhenguo: liusheng: then some thing wrong with my browser02:47
zhenguoshaohe_feng: seems yes02:47
*** tongl has quit IRC02:47
zhenguolet's move on02:48
zhenguo#topic open discussion02:49
*** openstack changes topic to "open discussion (Meeting topic: mogan)"02:49
zhenguowho's got a thing here?02:49
*** N1GhTh4wK has joined #openstack-meeting02:49
*** andreas_s has quit IRC02:49
*** dfflanders has quit IRC02:49
*** N1GhTh4wK has left #openstack-meeting02:49
zhenguodo you think the resource classs only scheduling is rigid?02:50
liushengzhenguo: yes, a bit, hah02:50
zhenguohow about move to inventory based scheduling02:50
zhenguoI don't mean to move back to nova's vcpu, mem, disk02:51
*** yamahata has joined #openstack-meeting02:51
zhenguobut also move flexible02:51
zhenguo*more02:51
liushengzhenguo: what inventories will be reported ?02:51
zhenguofrom ironic node properties02:52
zhenguonot sure yet02:52
zhenguoand get rid of the flavor?02:52
*** junbo has quit IRC02:52
zhenguohttp://lists.openstack.org/pipermail/openstack-dev/2017-September/122594.html02:53
zhenguosee more information above from the ironic guys02:53
*** edmondsw has quit IRC02:53
liushengzhenguo: ok, will read it02:53
liushengzhenguo: not sure if we will need to care about some resources' quantity02:54
zhenguoliusheng: seems yes, with placement traits02:55
liushengzhenguo: maybe mogan-engine directly call placement api and get rid of scheduler, hah02:55
zhenguoliusheng: hah02:56
zhenguoliusheng: we currently lock the whole scheduleing process02:56
*** Manuel_112 has joined #openstack-meeting02:56
liushengzhenguo: yes02:56
zhenguoliusheng: really frustrating02:57
*** VW has joined #openstack-meeting02:57
zhenguoliusheng: we can look into it to see whether we really need a scheduler service02:58
liushengzhenguo: ok, need a deep dive02:58
zhenguoyes02:58
zhenguook, it's almost time02:59
*** andreas_s has joined #openstack-meeting02:59
zhenguoif not other things want to discuss we can end here02:59
zhenguothanks y'all!02:59
zhenguo#endmeeting02:59
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"02:59
openstackMeeting ended Thu Oct 12 02:59:36 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)02:59
openstackMinutes:        http://eavesdrop.openstack.org/meetings/mogan/2017/mogan.2017-10-12-02.01.html02:59
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/mogan/2017/mogan.2017-10-12-02.01.txt02:59
openstackLog:            http://eavesdrop.openstack.org/meetings/mogan/2017/mogan.2017-10-12-02.01.log.html02:59
*** priteau has joined #openstack-meeting03:00
*** Manuel_112 has quit IRC03:01
*** mtreinish has quit IRC03:02
*** Manuel_112 has joined #openstack-meeting03:03
*** hichihara has quit IRC03:03
*** priteau has quit IRC03:05
*** mtreinish has joined #openstack-meeting03:07
*** Manuel_112 has quit IRC03:07
*** noslzzp has joined #openstack-meeting03:11
*** gouthamr has joined #openstack-meeting03:12
*** andreas_s has quit IRC03:12
*** thorst has joined #openstack-meeting03:12
*** thorst has quit IRC03:12
*** baoli has quit IRC03:17
*** links has joined #openstack-meeting03:25
*** Manuel_112 has joined #openstack-meeting03:34
*** Manuel_112 has quit IRC03:38
*** yamamoto has joined #openstack-meeting03:39
*** VW has quit IRC03:39
*** yamamoto_ has joined #openstack-meeting03:44
*** yamamoto has quit IRC03:47
*** yamamoto_ has quit IRC04:03
*** hongbin has quit IRC04:04
*** Manuel_112 has joined #openstack-meeting04:06
*** armax has quit IRC04:08
*** armax has joined #openstack-meeting04:08
*** armax has quit IRC04:08
*** armax has joined #openstack-meeting04:09
*** armax has quit IRC04:09
*** armax has joined #openstack-meeting04:10
*** armax has quit IRC04:10
*** Manuel_112 has quit IRC04:10
*** zhhuabj has quit IRC04:12
*** claudiub|2 has joined #openstack-meeting04:15
*** yamamoto has joined #openstack-meeting04:21
*** zhhuabj has joined #openstack-meeting04:24
*** markvoelker has joined #openstack-meeting04:39
*** edmondsw has joined #openstack-meeting04:39
*** Manuel_112 has joined #openstack-meeting04:40
*** tongl has joined #openstack-meeting04:42
*** brault_ has joined #openstack-meeting04:42
*** edmondsw has quit IRC04:44
*** brault has quit IRC04:44
*** Manuel_112 has quit IRC04:45
*** lpetrut_ has joined #openstack-meeting04:54
*** kevzha01_ is now known as kevinz04:54
*** marios has joined #openstack-meeting04:54
*** gouthamr has quit IRC04:56
*** thorst has joined #openstack-meeting04:56
*** palexster has quit IRC04:57
*** thorst has quit IRC05:00
*** priteau has joined #openstack-meeting05:00
*** palexster has joined #openstack-meeting05:02
*** priteau has quit IRC05:05
*** Manuel_112 has joined #openstack-meeting05:08
*** Manuel_112 has quit IRC05:12
*** zhhuabj has quit IRC05:12
*** markvoelker has quit IRC05:14
*** Manuel_112 has joined #openstack-meeting05:15
*** unicell has joined #openstack-meeting05:19
*** Manuel_112 has quit IRC05:20
*** lpetrut_ has quit IRC05:26
*** Manuel_112 has joined #openstack-meeting05:33
*** MinWookKim has joined #openstack-meeting05:42
MinWookKim#JOIN tacker05:42
*** mrunge has quit IRC05:44
*** tongl has quit IRC05:45
*** janki has joined #openstack-meeting05:47
*** lbrune has joined #openstack-meeting05:53
*** e0ne has joined #openstack-meeting05:55
*** egallen has quit IRC05:57
*** longkb has quit IRC05:58
*** e0ne has quit IRC05:59
*** kota_ has left #openstack-meeting06:02
*** zhhuabj has joined #openstack-meeting06:03
*** martinkopec has joined #openstack-meeting06:03
*** kota_ has joined #openstack-meeting06:04
*** mrunge has joined #openstack-meeting06:06
*** martinkopec has quit IRC06:08
*** martinkopec has joined #openstack-meeting06:09
*** markvoelker has joined #openstack-meeting06:11
*** zhhuabj has quit IRC06:12
*** yamahata has quit IRC06:20
*** zhhuabj has joined #openstack-meeting06:22
*** mohankumar has joined #openstack-meeting06:28
*** edmondsw has joined #openstack-meeting06:28
*** zhhuabj has quit IRC06:29
*** noslzzp has quit IRC06:29
*** Swami has joined #openstack-meeting06:31
*** edmondsw has quit IRC06:32
*** Swami has quit IRC06:33
*** yamahata has joined #openstack-meeting06:34
*** rcernin has joined #openstack-meeting06:35
*** ttrifonov has quit IRC06:39
*** lbrune has quit IRC06:39
*** ttrifonov has joined #openstack-meeting06:40
*** zhhuabj has joined #openstack-meeting06:42
*** markvoelker has quit IRC06:44
*** priteau has joined #openstack-meeting06:52
*** rsimai has joined #openstack-meeting06:54
*** priteau has quit IRC06:55
*** priteau has joined #openstack-meeting06:55
*** thorst has joined #openstack-meeting06:57
*** lbrune has joined #openstack-meeting06:59
*** priteau has quit IRC06:59
*** egallen has joined #openstack-meeting07:00
*** thorst_ has joined #openstack-meeting07:00
*** tobiajo has joined #openstack-meeting07:01
*** Dinesh_Bhor has quit IRC07:01
*** slaweq has joined #openstack-meeting07:01
*** thorst has quit IRC07:01
*** thorst_ has quit IRC07:05
*** lbrune1 has joined #openstack-meeting07:06
*** brault_ has quit IRC07:06
*** Dinesh_Bhor has joined #openstack-meeting07:07
*** lbrune has quit IRC07:08
*** simon-AS559 has joined #openstack-meeting07:09
*** sc has left #openstack-meeting07:09
*** zhhuabj has quit IRC07:09
*** simon-AS559 has quit IRC07:14
*** simon-AS559 has joined #openstack-meeting07:14
*** zhhuabj has joined #openstack-meeting07:14
*** yamahata has quit IRC07:15
*** pcaruana has joined #openstack-meeting07:17
*** lpetrut_ has joined #openstack-meeting07:18
*** yangyapeng has quit IRC07:19
*** yangyapeng has joined #openstack-meeting07:19
*** egallen has quit IRC07:25
*** flanders_ has joined #openstack-meeting07:26
*** egallen has joined #openstack-meeting07:28
*** egallen has quit IRC07:31
*** tesseract has joined #openstack-meeting07:32
*** simon-AS5591 has joined #openstack-meeting07:33
*** rwsu has joined #openstack-meeting07:33
*** simon-AS559 has quit IRC07:34
*** egallen has joined #openstack-meeting07:34
*** andreas_s has joined #openstack-meeting07:35
*** Alex_Staf_ has quit IRC07:40
*** egallen has quit IRC07:41
*** markvoelker has joined #openstack-meeting07:41
*** egallen has joined #openstack-meeting07:41
*** egallen has quit IRC07:42
*** jgu has quit IRC07:51
*** jgu has joined #openstack-meeting07:51
*** Fouad_Benamrane has quit IRC07:54
*** d0ugal has joined #openstack-meeting07:59
*** dbecker has joined #openstack-meeting08:05
*** yamamoto has quit IRC08:05
*** sridharg has joined #openstack-meeting08:06
*** yamamoto has joined #openstack-meeting08:08
*** zhufl has joined #openstack-meeting08:08
*** Fouad_Benamrane has joined #openstack-meeting08:08
*** zhufl has quit IRC08:09
*** zhufl has joined #openstack-meeting08:10
*** zhufl has quit IRC08:11
*** zhufl has joined #openstack-meeting08:12
*** wanghao_ has joined #openstack-meeting08:14
*** wanghao has quit IRC08:14
*** markvoelker has quit IRC08:14
*** edmondsw has joined #openstack-meeting08:15
*** zhhuabj has quit IRC08:16
*** priteau has joined #openstack-meeting08:18
*** wanghao has joined #openstack-meeting08:19
*** edmondsw has quit IRC08:20
*** simon-AS5591 has quit IRC08:22
*** simon-AS559 has joined #openstack-meeting08:22
*** wanghao_ has quit IRC08:23
*** zhufl has left #openstack-meeting08:23
*** phil_ has joined #openstack-meeting08:23
*** phil_ is now known as Guest3137408:24
*** jgu has quit IRC08:27
*** jgu has joined #openstack-meeting08:27
*** zhhuabj has joined #openstack-meeting08:29
*** jgu has quit IRC08:31
*** jgu has joined #openstack-meeting08:31
*** ralonsoh has joined #openstack-meeting08:33
*** jgu has quit IRC08:35
*** jgu has joined #openstack-meeting08:35
*** jgu has quit IRC08:39
*** jgu has joined #openstack-meeting08:40
*** brault has joined #openstack-meeting08:40
*** mfranc213 has quit IRC08:43
*** jgu has quit IRC08:43
*** jgu has joined #openstack-meeting08:44
*** mfranc213 has joined #openstack-meeting08:45
*** jgu has quit IRC08:47
*** jgu has joined #openstack-meeting08:48
*** spectr has quit IRC08:49
*** jgu has quit IRC08:52
*** jgu has joined #openstack-meeting08:52
*** yamamoto has quit IRC08:55
*** jgu has quit IRC08:56
*** jgu has joined #openstack-meeting08:56
*** toscalix has joined #openstack-meeting08:59
*** jgu has quit IRC09:00
*** jgu has joined #openstack-meeting09:00
*** thorst has joined #openstack-meeting09:02
*** jgu has quit IRC09:04
*** jgu has joined #openstack-meeting09:04
*** e0ne has joined #openstack-meeting09:04
*** thorst has quit IRC09:05
*** jgu has quit IRC09:08
*** jgu has joined #openstack-meeting09:08
*** _pewp_ has quit IRC09:11
*** jgu has quit IRC09:12
*** brault has quit IRC09:12
*** jgu has joined #openstack-meeting09:12
*** yamamoto has joined #openstack-meeting09:15
*** yamamoto has quit IRC09:15
*** _pewp_ has joined #openstack-meeting09:15
*** jgu has quit IRC09:16
*** jgu has joined #openstack-meeting09:16
*** spectr has joined #openstack-meeting09:19
*** jgu has quit IRC09:20
*** zhhuabj has quit IRC09:20
*** jgu has joined #openstack-meeting09:20
*** zhhuabj has joined #openstack-meeting09:23
*** ociuhandu has quit IRC09:23
*** jgu has quit IRC09:24
*** jgu has joined #openstack-meeting09:24
*** brault has joined #openstack-meeting09:27
*** wanghao has quit IRC09:28
*** jgu has quit IRC09:28
*** jgu has joined #openstack-meeting09:28
*** wanghao has joined #openstack-meeting09:29
*** wanghao has quit IRC09:30
*** wanghao has joined #openstack-meeting09:30
*** wanghao has quit IRC09:31
*** wanghao has joined #openstack-meeting09:31
*** wanghao has quit IRC09:32
*** wanghao has joined #openstack-meeting09:32
*** brault has quit IRC09:32
*** jgu has quit IRC09:32
*** jgu has joined #openstack-meeting09:32
*** wanghao has quit IRC09:32
*** wanghao has joined #openstack-meeting09:33
*** wanghao has quit IRC09:33
*** wanghao has joined #openstack-meeting09:34
*** wanghao has quit IRC09:34
*** wanghao has joined #openstack-meeting09:34
*** wanghao has quit IRC09:35
*** wanghao has joined #openstack-meeting09:35
*** wanghao has quit IRC09:36
*** jgu has quit IRC09:36
*** wanghao has joined #openstack-meeting09:36
*** jgu has joined #openstack-meeting09:36
*** jgu has quit IRC09:40
*** jgu has joined #openstack-meeting09:40
*** jgu has quit IRC09:44
*** yamamoto has joined #openstack-meeting09:44
*** jgu has joined #openstack-meeting09:45
*** Fouad_Benamrane has quit IRC09:45
*** anilvenkata has quit IRC09:45
*** anilvenkata has joined #openstack-meeting09:47
*** jgu has quit IRC09:48
*** jgu has joined #openstack-meeting09:49
*** Manuel_112 has quit IRC09:51
*** jgu has quit IRC09:52
*** jgu has joined #openstack-meeting09:53
*** epico has quit IRC09:53
*** priteau has quit IRC09:53
*** Alex_Staf_ has joined #openstack-meeting09:55
*** jgu has quit IRC09:56
*** jgu has joined #openstack-meeting09:57
*** electrofelix has joined #openstack-meeting10:00
*** tovin07_ has quit IRC10:00
*** jgu has quit IRC10:00
*** jgu has joined #openstack-meeting10:01
*** zhhuabj has quit IRC10:01
*** thorst has joined #openstack-meeting10:02
*** edmondsw has joined #openstack-meeting10:04
*** jgu has quit IRC10:04
*** jgu has joined #openstack-meeting10:05
*** andreas_s has quit IRC10:06
*** andreas_s has joined #openstack-meeting10:06
*** edmondsw has quit IRC10:08
*** jgu has quit IRC10:08
*** thorst has quit IRC10:08
*** jgu has joined #openstack-meeting10:09
*** Manuel_112 has joined #openstack-meeting10:10
*** andreas_s has quit IRC10:11
*** spectr has quit IRC10:12
*** markvoelker has joined #openstack-meeting10:12
*** jgu has quit IRC10:13
*** jgu has joined #openstack-meeting10:13
*** caowei has quit IRC10:13
*** jgu has quit IRC10:18
*** jgu has joined #openstack-meeting10:18
*** zhhuabj has joined #openstack-meeting10:20
*** andreas_s has joined #openstack-meeting10:20
*** brault has joined #openstack-meeting10:20
*** jgu has quit IRC10:22
*** jgu has joined #openstack-meeting10:22
*** yangyape_ has joined #openstack-meeting10:23
*** spectr has joined #openstack-meeting10:25
*** flanders_ has quit IRC10:25
*** jgu has quit IRC10:26
*** jgu has joined #openstack-meeting10:26
*** brault has quit IRC10:26
*** yangyapeng has quit IRC10:27
*** mikal has quit IRC10:28
*** thingee has quit IRC10:28
*** yangyape_ has quit IRC10:28
*** rbartal_ has joined #openstack-meeting10:28
*** mikal has joined #openstack-meeting10:30
*** gcb has quit IRC10:30
*** thingee has joined #openstack-meeting10:31
*** jgu has quit IRC10:31
*** jgu has joined #openstack-meeting10:31
*** andreas_s has quit IRC10:33
*** boden has joined #openstack-meeting10:34
*** jgu has quit IRC10:35
*** jgu has joined #openstack-meeting10:35
*** rbartal_ has quit IRC10:36
*** brault has joined #openstack-meeting10:38
*** jgu has quit IRC10:39
*** andreas_s has joined #openstack-meeting10:39
*** jgu has joined #openstack-meeting10:39
*** priteau has joined #openstack-meeting10:42
*** jgu has quit IRC10:43
*** jgu has joined #openstack-meeting10:43
*** markvoelker has quit IRC10:45
*** jgu has quit IRC10:47
*** jgu has joined #openstack-meeting10:47
*** clayton has quit IRC10:49
*** jgu has quit IRC10:51
*** jgu has joined #openstack-meeting10:51
*** clayton has joined #openstack-meeting10:51
*** andreas_s has quit IRC10:53
*** edmondsw has joined #openstack-meeting10:53
*** andreas_s has joined #openstack-meeting10:54
*** jgu has quit IRC10:55
*** jgu has joined #openstack-meeting10:55
*** andreas_s has quit IRC10:56
*** andreas_s has joined #openstack-meeting10:56
*** edmondsw has quit IRC10:56
*** jgu has quit IRC10:59
*** jgu has joined #openstack-meeting11:00
*** sambetts|afk is now known as sambetts11:01
*** priteau has quit IRC11:02
*** jgu has quit IRC11:03
*** priteau has joined #openstack-meeting11:03
*** jgu has joined #openstack-meeting11:03
*** andreas_s has quit IRC11:07
*** jgu has quit IRC11:07
*** jgu has joined #openstack-meeting11:08
*** priteau has quit IRC11:08
*** priteau has joined #openstack-meeting11:10
*** sdague has joined #openstack-meeting11:11
*** jgu has quit IRC11:11
*** jgu has joined #openstack-meeting11:12
*** jgu has quit IRC11:15
*** priteau has quit IRC11:16
*** jgu has joined #openstack-meeting11:16
*** zhhuabj has quit IRC11:16
*** gmann is now known as gmann_afk11:17
*** jgu has quit IRC11:19
*** jgu has joined #openstack-meeting11:20
*** jkilpatr has joined #openstack-meeting11:22
*** jgu has quit IRC11:23
*** jgu has joined #openstack-meeting11:24
*** yamamoto has quit IRC11:27
*** jgu has quit IRC11:27
*** jgu has joined #openstack-meeting11:28
*** brault has quit IRC11:29
*** martinkopec has quit IRC11:29
*** zhhuabj has joined #openstack-meeting11:29
*** jgu has quit IRC11:31
*** jgu has joined #openstack-meeting11:32
*** priteau has joined #openstack-meeting11:35
*** andreas_s has joined #openstack-meeting11:35
*** jgu has quit IRC11:36
*** jgu has joined #openstack-meeting11:36
*** yangyapeng has joined #openstack-meeting11:39
*** andreas_s has quit IRC11:39
*** yangyapeng has quit IRC11:39
*** jgu has quit IRC11:40
*** yangyapeng has joined #openstack-meeting11:40
*** andreas_s has joined #openstack-meeting11:40
*** jgu has joined #openstack-meeting11:40
*** ansmith has quit IRC11:40
*** markvoelker has joined #openstack-meeting11:43
*** jgu has quit IRC11:44
*** jgu has joined #openstack-meeting11:44
*** jprovazn has joined #openstack-meeting11:47
*** jgu has quit IRC11:48
*** jgu has joined #openstack-meeting11:48
*** litao__ has quit IRC11:49
*** andreas_s has quit IRC11:49
*** yamamoto has joined #openstack-meeting11:50
*** zhhuabj has quit IRC11:51
*** jgu has quit IRC11:52
*** jgu has joined #openstack-meeting11:52
*** coolsvap has quit IRC11:55
*** jgu has quit IRC11:56
*** jgu has joined #openstack-meeting11:56
*** andreas_s has joined #openstack-meeting11:59
*** jgu has quit IRC12:00
*** dprince has joined #openstack-meeting12:00
*** jgu has joined #openstack-meeting12:00
*** brault has joined #openstack-meeting12:01
*** andreas_s has quit IRC12:03
*** andreas_s has joined #openstack-meeting12:04
*** jgu has quit IRC12:04
*** jgu has joined #openstack-meeting12:04
*** thorst has joined #openstack-meeting12:06
*** andreas_s has quit IRC12:08
*** andreas_s has joined #openstack-meeting12:08
*** jgu has quit IRC12:08
*** jgu has joined #openstack-meeting12:08
*** edmondsw has joined #openstack-meeting12:10
*** zhhuabj has joined #openstack-meeting12:10
*** Alex_Staf_ has quit IRC12:10
*** edmondsw_ has joined #openstack-meeting12:10
*** gcb has joined #openstack-meeting12:12
*** jgu has quit IRC12:12
*** jgu has joined #openstack-meeting12:13
*** edmondsw has quit IRC12:14
*** markvoelker has quit IRC12:16
*** jgu has quit IRC12:17
*** jgu has joined #openstack-meeting12:17
*** jgu has quit IRC12:22
*** jgu has joined #openstack-meeting12:23
*** lifeless has quit IRC12:24
*** gmann_afk is now known as gmann12:26
*** jgu has quit IRC12:26
*** hrybacki|trainin is now known as hrybacki12:26
*** jgu has joined #openstack-meeting12:26
*** eharney has joined #openstack-meeting12:28
*** jgu has quit IRC12:30
*** jgu has joined #openstack-meeting12:31
*** lifeless has joined #openstack-meeting12:31
*** markvoelker has joined #openstack-meeting12:33
*** jgu has quit IRC12:34
*** jgu has joined #openstack-meeting12:35
*** jpich has joined #openstack-meeting12:37
*** jgu has quit IRC12:38
*** jgu has joined #openstack-meeting12:39
*** ansmith has joined #openstack-meeting12:39
*** ekhugen has joined #openstack-meeting12:40
*** ociuhandu has joined #openstack-meeting12:40
*** links has quit IRC12:41
*** jgu has quit IRC12:42
*** andreas_s has quit IRC12:43
*** jgu has joined #openstack-meeting12:43
*** andreas_s has joined #openstack-meeting12:43
*** kylek3h has joined #openstack-meeting12:44
*** kylek3h has quit IRC12:44
*** liusheng has quit IRC12:45
*** mohankumar has quit IRC12:45
*** liusheng has joined #openstack-meeting12:45
*** jgu has quit IRC12:46
*** bobh has joined #openstack-meeting12:47
*** kylek3h has joined #openstack-meeting12:47
*** jgu has joined #openstack-meeting12:47
*** mriedem has joined #openstack-meeting12:47
*** eumel8 has joined #openstack-meeting12:49
*** jgu has quit IRC12:51
*** jgu has joined #openstack-meeting12:51
*** dustins has joined #openstack-meeting12:52
*** pchavva has joined #openstack-meeting12:54
*** jgu has quit IRC12:55
*** VW has joined #openstack-meeting12:55
*** jgu has joined #openstack-meeting12:55
*** andreas_s has quit IRC12:57
*** jgu has quit IRC12:59
*** jgu has joined #openstack-meeting12:59
*** jftalta has joined #openstack-meeting12:59
eumel8#startmeeting OpenStack I18n Meeting13:00
openstackMeeting started Thu Oct 12 13:00:20 2017 UTC and is due to finish in 60 minutes.  The chair is eumel8. Information about MeetBot at http://wiki.debian.org/MeetBot.13:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.13:00
*** openstack changes topic to " (Meeting topic: OpenStack I18n Meeting)"13:00
openstackThe meeting name has been set to 'openstack_i18n_meeting'13:00
eumel8Hello world!13:00
eumel8who's there for the I18n meeting?13:00
jftaltaHI !13:00
eumel8hi jftalta!13:00
jpichhey13:00
eumel8hi jpich13:01
*** ianychoi_phone has joined #openstack-meeting13:01
*** andreas_s has joined #openstack-meeting13:01
ianychoi_phoneHi13:02
eumel8how are you? how is the weather in France/Ireland?13:02
eumel8Hi Ianychoi!13:02
ianychoi_phoneI am in a business travel in Korea so my response might be slow.. sorry13:02
ianychoi_phonejftalta: hi :)13:02
jftaltasky is so-so, temp is cool13:02
*** rbudden has joined #openstack-meeting13:02
eumel8nice13:02
*** jgu has quit IRC13:03
jftaltaand in Germany ?13:03
eumel8We had some storm last week with some damages in Berlin area.13:03
*** jgu has joined #openstack-meeting13:03
*** esberglu has quit IRC13:03
eumel87 dead, not nice, but we're save and house and family are also ok.13:04
ianychoi_phoneeumel8: that's too pity.13:04
jftaltatoo bad :(13:05
eumel8most of the infrastructure for trains and streets were broken13:05
jftaltastorms strike anywhere...13:05
eumel8and still after a week some lanes are still out of order13:06
eumel8ok, good theme for our first topic13:06
eumel8#topic Zuul v3 migration - status13:06
*** openstack changes topic to "Zuul v3 migration - status (Meeting topic: OpenStack I18n Meeting)"13:06
*** jgu has quit IRC13:07
*** jgu has joined #openstack-meeting13:07
eumel8the second try for the zuul v3 migration was also not sucessfull. the infra team hits some serious issues before the can start.13:07
eumel8#link http://lists.openstack.org/pipermail/openstack-dev/2017-October/123489.html13:07
eumel8so, translation sync jobs still affected13:08
eumel8I think the work continues this afternoon and all what we can do is wait13:09
eumel8questions? details?13:09
eumel8next13:09
eumel8#topic I18n bug triage13:10
*** openstack changes topic to "I18n bug triage (Meeting topic: OpenStack I18n Meeting)"13:10
eumel8our main topic for today is bug triage13:10
eumel8there are several bugs on our list:13:10
eumel8#link https://bugs.launchpad.net/openstack-i18n13:11
*** jgu has quit IRC13:11
*** jgu has joined #openstack-meeting13:11
eumel8maybe we can go through the list and look what we can do13:11
eumel8sure, most of them are language bugs :)13:12
jftaltaindeed13:12
ianychoi_phoneI will see https://bugs.launchpad.net/openstack-i18n/+bug/1710786 - Korean bug13:12
openstackLaunchpad bug 1710786 in openstack i18n "No translated I18n guide is linked in Korean landing page" [Undecided,New] - Assigned to jeonghyeon woo (wjh1001)13:12
ianychoi_phoneI think it is fixed13:12
*** boden has left #openstack-meeting13:12
*** baoli has joined #openstack-meeting13:13
jftaltamany bugs have "undecided" priority/severity13:14
eumel8ianychoi: I've never worked with Launchpad Bugs before. Can we close this bug that you are mentioned?13:14
ianychoi_phoneeumel8: okay.13:15
*** jgu has quit IRC13:15
eumel8https://docs.openstack.org/ko_KR/ < seems at fixed13:15
*** jgu has joined #openstack-meeting13:15
*** artom_ is now known as artom13:15
ianychoi_phoneOne note is that I want to nominate more launchpad cores for i18n but only Daisy can do it13:15
*** bobmel has quit IRC13:16
eumel8ianychoi: I remember me, but we haven't contact to her?13:17
ianychoi_phoneI already sent emails but no response13:17
eumel8too sad13:18
*** esberglu has joined #openstack-meeting13:18
eumel8ianychoi: something else who could help?13:18
ianychoi_phoneI am not sure...13:19
ianychoi_phoneAt least eumel8 and jftalta should be launchpad i18n core members13:19
*** jgu has quit IRC13:19
*** edmondsw_ is now known as edmondsw13:19
*** jgu has joined #openstack-meeting13:19
eumel8#action eumel8 clarify core status https://bugs.launchpad.net/openstack-i18n13:20
jftaltaianychoi:  agree13:20
jpichMaybe infra can add cores to any group?13:20
* jpich (in another meeting in parallel, sorry)13:21
*** esberglu has quit IRC13:21
ianychoi_phonejpich: thanks - I will ask for it to infra team13:22
ianychoi_phonejpich: fine :)13:22
jpich:)13:22
*** esberglu has joined #openstack-meeting13:23
*** jgu has quit IRC13:23
*** jgu has joined #openstack-meeting13:23
eumel8alright13:24
eumel8there is only the posibily to send a request to join the core team13:24
eumel8seems also this is fixed: https://bugs.launchpad.net/openstack-i18n/+bug/155677213:25
openstackLaunchpad bug 1556772 in openstack i18n "Wrong plural formula for russian" [High,Fix committed] - Assigned to Ying Chun Guo (daisy-ycguo)13:25
eumel8mhm, there is no option for status closed13:26
*** jgu has quit IRC13:27
*** dbecker has quit IRC13:27
*** jgu has joined #openstack-meeting13:27
eumel8next one is for amotoki: https://bugs.launchpad.net/openstack-i18n/+bug/166976813:27
openstackLaunchpad bug 1669768 in openstack i18n "stackalytics: "language" filter does not work" [Medium,Triaged]13:27
*** dbecker has joined #openstack-meeting13:27
eumel8but "language" is no parameter in the web frontend13:29
ianychoi_phoneHmm not too easy13:31
eumel8and there are many many many other bugs for Stackalytics. Is there no maintenance team anymore?13:31
ianychoi_phoneSomeone needs to investigate in Stackalytics sources13:31
*** jgu has quit IRC13:31
*** jgu has joined #openstack-meeting13:31
*** gmann is now known as gmann_afk13:31
ianychoi_phoneeumel8: i met a Stackalytics core at Barcelona Summit and he agreed that he would support it if i18n team volunteer13:32
eumel8ianychoi: what's the name of the guy?13:32
ianychoi_phoneIlya Shaktat13:33
jftaltaI can ask the french team...13:33
ianychoi_phone(Sorry the last name might have typo)13:33
jftaltaianychoi: sounds good13:33
ianychoi_phonejftalta: it would be great. I have seen that one French contributed a lot on Stackalytics13:34
eumel8ianychoI: right - https://bugs.launchpad.net/stackalytics (Bug Supervisor)13:34
ianychoi_phoneOn Gerrit13:34
jftaltado you remember his pseudo ?13:34
*** ianychoi_phone_ has joined #openstack-meeting13:35
ianychoi_phone_Nope.. sorry now13:35
eumel8mhm, in Gerrit are only name and company name changes13:35
*** jgu has quit IRC13:35
eumel8and it seems he is alone13:35
*** jgu has joined #openstack-meeting13:35
jftaltadon't worry, I'll seek13:35
*** b1airo has joined #openstack-meeting13:36
eumel8https://review.openstack.org/#/admin/groups/183,members13:36
eumel8ok, maybe a chance to occupied the next project ;)13:37
ianychoi_phone_Thanks a lot13:37
*** ianychoi_phone has quit IRC13:38
*** ianychoi_phone_ is now known as ianychoi_phone13:38
eumel8the other 3 open bugs are bugs in Chinese language13:39
eumel8https://bugs.launchpad.net/openstack-i18n/+bug/171348013:39
openstackLaunchpad bug 1713480 in openstack i18n "安装和配置 in Installation Guide" [Undecided,New] - Assigned to tl chen (vuuv)13:39
ianychoi_phoneHmm13:39
*** jgu has quit IRC13:39
*** jgu has joined #openstack-meeting13:40
*** bobmel has joined #openstack-meeting13:40
eumel8not sure, if it's wrong translated or the install guide is wrong13:40
eumel8the other 2 are also marked by amotoki as simplified-chinese13:42
eumel8https://bugs.launchpad.net/openstack-i18n/+bug/172218713:43
openstackLaunchpad bug 1722187 in openstack i18n "安装和配置 in Installation Guide" [Undecided,New]13:43
eumel8https://bugs.launchpad.net/openstack-i18n/+bug/172219013:43
openstackLaunchpad bug 1722190 in openstack i18n "创建服务实体和API端点 in Installation Guide" [Undecided,New]13:43
*** jgu has quit IRC13:43
eumel8the problem is also not understandable for us13:43
*** jgu has joined #openstack-meeting13:44
*** ekhugen has quit IRC13:44
*** bobmel has quit IRC13:44
*** ekhugen has joined #openstack-meeting13:44
eumel8ianychoi: something to add here? https://bugs.launchpad.net/openstack-i18n/+bug/170350213:45
openstackLaunchpad bug 1703502 in openstack i18n "Memcached in Installation Guide" [Undecided,Confirmed]13:45
eumel8ianychoi: and this is outdated. Mitaka is out of support: https://bugs.launchpad.net/openstack-i18n/+bug/166240313:47
openstackLaunchpad bug 1662403 in openstack i18n "网络选项2:私有网络 in Installation Guide" [Undecided,Confirmed] - Assigned to tl chen (vuuv)13:47
*** b1airo has quit IRC13:47
*** jgu has quit IRC13:47
*** jgu has joined #openstack-meeting13:48
*** VW has quit IRC13:48
eumel8the last one is from amotoki himself: https://bugs.launchpad.net/openstack-i18n/+bug/171151313:48
openstackLaunchpad bug 1711513 in openstack i18n "run_tests.sh in horizon-reload.sh no longer exists in horizon master" [Medium,New] - Assigned to Akihiro Motoki (amotoki)13:48
*** gouthamr has joined #openstack-meeting13:49
*** kiennt26 has joined #openstack-meeting13:50
eumel8that's all for the bug triage13:50
eumel8ianychoi: can you trigger the Chinese language coordinator to review all Chinese bugs?13:50
eumel8and I will look at the Stackalytics and how we can help there13:51
ianychoi_phoneeumel8: i will send an email to zzxwill copying to eumel813:51
eumel8THX!13:51
*** jgu has quit IRC13:51
eumel8#topic Open Discussion13:52
*** openstack changes topic to "Open Discussion (Meeting topic: OpenStack I18n Meeting)"13:52
ianychoi_phoneeumel8: u r welcome13:52
*** jgu has joined #openstack-meeting13:52
*** annp has joined #openstack-meeting13:52
*** kiennt26 has quit IRC13:52
*** nikhil_ has joined #openstack-meeting13:52
*** nikhil_ is now known as Guest4851613:52
*** kiennt26 has joined #openstack-meeting13:53
*** Guest48516 is now known as nikhil_k13:53
eumel8I don't know if I'm doing right with the bug triage, but are aware and it's on our notify list.13:53
ianychoi_phoneThanks a lot today eumel8 and jftalta13:54
eumel8the Doc team has a bug manager on duty but I think that's not necessary for us.13:54
*** andreas_s has quit IRC13:54
*** bobmel has joined #openstack-meeting13:54
jftaltaianychoi: u r welcome13:54
*** andreas_s has joined #openstack-meeting13:55
eumel8and if there are no more topics to discuss I would close the meeting for today13:55
*** kiennt26 has quit IRC13:55
*** kiennt26 has joined #openstack-meeting13:55
eumel8thx, ianychoi, jftalta, jpich - and have a nice evening/night :)13:55
ianychoi_phone+113:55
*** jgu has quit IRC13:55
ianychoi_phoneI will also busy on the next werk13:56
ianychoi_phoneweek13:56
*** noslzzp has joined #openstack-meeting13:56
*** jgu has joined #openstack-meeting13:56
ianychoi_phoneBut i will try to follow up more :)13:56
jpichYou too! Y'all too13:56
eumel8don't worry :)13:56
ianychoi_phone:)13:56
eumel8#endmeeting13:56
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"13:56
openstackMeeting ended Thu Oct 12 13:56:36 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)13:56
openstackMinutes:        http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2017/openstack_i18n_meeting.2017-10-12-13.00.html13:56
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2017/openstack_i18n_meeting.2017-10-12-13.00.txt13:56
openstackLog:            http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2017/openstack_i18n_meeting.2017-10-12-13.00.log.html13:56
*** ianychoi_phone has quit IRC13:56
*** andreas_s has quit IRC13:57
*** andreas_s has joined #openstack-meeting13:57
*** jftalta has quit IRC13:58
*** ekhugen has quit IRC13:59
*** jgu has quit IRC14:00
*** jgu has joined #openstack-meeting14:00
*** ekhugen has joined #openstack-meeting14:00
*** shintaro has joined #openstack-meeting14:00
*** marios has quit IRC14:01
*** marios has joined #openstack-meeting14:02
*** jayahn has joined #openstack-meeting14:03
*** jgu has quit IRC14:04
*** jgu has joined #openstack-meeting14:04
jayahno/14:04
*** VW has joined #openstack-meeting14:05
jayahnis there anyone for lcoo meeting?14:05
shintaroo/14:05
AndyUHi Jay, I am.  o/14:05
*** janki has quit IRC14:06
*** janki has joined #openstack-meeting14:07
*** jgu has quit IRC14:08
*** jgu has joined #openstack-meeting14:08
*** janki has quit IRC14:08
jayahnAndyU: hi14:09
*** jgu has quit IRC14:12
*** jgu has joined #openstack-meeting14:12
*** hongbin has joined #openstack-meeting14:13
*** cdub has joined #openstack-meeting14:14
*** eumel8 has quit IRC14:14
jayahnFYI, PS for OpenStack-Helm proposing to be official-project. https://review.openstack.org/#/c/511320/14:14
*** marios has quit IRC14:15
*** marios has joined #openstack-meeting14:15
AndyU#link https://review.openstack.org/#/c/511320/14:15
*** jgu has quit IRC14:17
*** jgu has joined #openstack-meeting14:17
*** tobiajo has quit IRC14:19
*** noslzzp has quit IRC14:20
*** awaugama has joined #openstack-meeting14:20
*** noslzzp has joined #openstack-meeting14:21
*** jgu has quit IRC14:21
*** jgu has joined #openstack-meeting14:21
jayahnhttps://openstack-lcoo.atlassian.net/wiki/spaces/LCOO/pages/18153555/LCOO+Development+Proposals14:22
AndyU#link https://openstack-lcoo.atlassian.net/wiki/spaces/LCOO/pages/18153555/LCOO+Development+Proposals14:22
*** bobmel has quit IRC14:22
*** hemna_ has joined #openstack-meeting14:23
*** bobmel has joined #openstack-meeting14:23
*** bobmel has quit IRC14:23
*** yamamoto has quit IRC14:23
*** bobmel has joined #openstack-meeting14:23
*** aagate has joined #openstack-meeting14:23
*** aagate has left #openstack-meeting14:24
*** egallen has joined #openstack-meeting14:25
shintaroI think you need to startmeeting AndyU14:25
*** jgu has quit IRC14:25
*** jgu has joined #openstack-meeting14:25
*** psachin has quit IRC14:28
*** bobmel has quit IRC14:28
*** armax has joined #openstack-meeting14:30
*** bobmel has joined #openstack-meeting14:30
*** jgu has quit IRC14:30
*** jgu has joined #openstack-meeting14:30
AndyUoops.... thanks, shintaro. I'll do that.14:33
*** tobiajo has joined #openstack-meeting14:34
*** andreas_s has quit IRC14:34
*** jgu has quit IRC14:34
*** jgu has joined #openstack-meeting14:34
*** andreas_s has joined #openstack-meeting14:35
*** jpich has left #openstack-meeting14:35
*** galstrom_zzz is now known as galstrom14:37
*** jgu has quit IRC14:38
*** jgu has joined #openstack-meeting14:39
*** links has joined #openstack-meeting14:39
*** reedip_ has joined #openstack-meeting14:40
*** jgu has quit IRC14:42
*** jgu has joined #openstack-meeting14:43
*** supertakumi86 has joined #openstack-meeting14:44
*** tongl has joined #openstack-meeting14:44
*** ekhugen has quit IRC14:44
*** supertakumi86 has quit IRC14:45
*** jkilpatr has quit IRC14:46
*** jgu has quit IRC14:46
*** ekhugen has joined #openstack-meeting14:46
*** iyamahat has joined #openstack-meeting14:46
*** jgu has joined #openstack-meeting14:47
*** tongl has quit IRC14:49
*** iyamahat_ has joined #openstack-meeting14:49
*** jgu has quit IRC14:50
*** jgu has joined #openstack-meeting14:51
*** iyamahat__ has joined #openstack-meeting14:51
*** Swami has joined #openstack-meeting14:51
*** iyamahat has quit IRC14:52
*** jkilpatr has joined #openstack-meeting14:53
*** bobmel has quit IRC14:53
*** andreas_s has quit IRC14:53
*** iyamahat__ has quit IRC14:53
*** egallen has quit IRC14:53
*** yamahata has joined #openstack-meeting14:53
*** iyamahat__ has joined #openstack-meeting14:53
*** jgu has quit IRC14:54
*** jgu has joined #openstack-meeting14:54
*** rcernin has quit IRC14:55
*** iyamahat_ has quit IRC14:55
*** Guest31374 has quit IRC14:56
*** sridharg has quit IRC14:57
*** lpetrut_ has quit IRC14:57
*** iyamahat__ has quit IRC14:58
*** iyamahat has joined #openstack-meeting14:58
*** jgu has quit IRC14:58
*** jgu has joined #openstack-meeting14:58
*** eharney has quit IRC15:02
*** andreas_s has joined #openstack-meeting15:02
*** jgu has quit IRC15:02
*** noslzzp has quit IRC15:02
*** jgu has joined #openstack-meeting15:02
*** noslzzp has joined #openstack-meeting15:03
*** bobmel has joined #openstack-meeting15:03
*** shintaro has quit IRC15:05
*** jgu has quit IRC15:06
*** jgu has joined #openstack-meeting15:06
*** jgu has quit IRC15:10
*** jgu has joined #openstack-meeting15:10
*** bobmel has quit IRC15:10
*** donghao has joined #openstack-meeting15:13
*** iyamahat has quit IRC15:14
*** yamahata has quit IRC15:14
*** andreas_s has quit IRC15:15
*** eharney has joined #openstack-meeting15:15
jamemcc_FYI - It is my job as chair to host the LCOO meetings - I was slow to get logged into my normal workstation and didnt' get here to start meeting.15:15
jamemcc_I'll do a quick Start meetign just for the record and to link to the meeting notes15:16
jamemcc_#startmeeting LCOO15:17
openstackMeeting started Thu Oct 12 15:17:39 2017 UTC and is due to finish in 60 minutes.  The chair is jamemcc_. Information about MeetBot at http://wiki.debian.org/MeetBot.15:17
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.15:17
*** openstack changes topic to " (Meeting topic: LCOO)"15:17
openstackThe meeting name has been set to 'lcoo'15:17
*** reedip_ has quit IRC15:17
jamemcc_Agenda and today's meeting results can be found at:15:18
jamemcc_#link https://openstack-lcoo.atlassian.net/wiki/spaces/LCOO/pages/18087937/2017.10.12+LCOO+General15:19
*** marios has left #openstack-meeting15:19
jamemcc_This meeting is held in both Skype for Business for Audio and in IRC to allow another written channel during the meeting and allow others to participate who can't join in audio.15:20
jamemcc_#action Jamemcc to schedule next session for 2 weeks from today, same time 1400 UTC15:21
jamemcc_#action all interested update proposed topics for next Topical sharing session at: https://openstack-lcoo.atlassian.net/wiki/spaces/LCOO/pages/18153555/LCOO+Topical+Session+Proposals15:22
jamemcc_#endmeeting15:23
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"15:23
openstackMeeting ended Thu Oct 12 15:23:18 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)15:23
openstackMinutes:        http://eavesdrop.openstack.org/meetings/lcoo/2017/lcoo.2017-10-12-15.17.html15:23
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/lcoo/2017/lcoo.2017-10-12-15.17.txt15:23
openstackLog:            http://eavesdrop.openstack.org/meetings/lcoo/2017/lcoo.2017-10-12-15.17.log.html15:23
*** yamamoto has joined #openstack-meeting15:24
*** reedip_ has joined #openstack-meeting15:26
*** electrofelix has quit IRC15:30
*** yamamoto has quit IRC15:31
*** andreas_s has joined #openstack-meeting15:34
*** Swami has left #openstack-meeting15:34
*** Swami has joined #openstack-meeting15:35
*** iyamahat has joined #openstack-meeting15:37
*** annp has quit IRC15:37
*** iyamahat has quit IRC15:38
*** iyamahat has joined #openstack-meeting15:38
*** Manuel_112 has quit IRC15:39
*** markstur has joined #openstack-meeting15:40
*** e0ne has quit IRC15:40
*** reedip_ has quit IRC15:40
*** reedip_ has joined #openstack-meeting15:43
*** andreas_s has quit IRC15:43
*** yamamoto has joined #openstack-meeting15:45
*** yamamoto has quit IRC15:45
*** links has quit IRC15:47
*** andreas_s has joined #openstack-meeting15:48
*** Alex_Staf_ has joined #openstack-meeting15:48
*** simon-AS559 has quit IRC15:49
*** kiennt26 has quit IRC15:52
*** lbrune1 has quit IRC15:53
*** unicell has quit IRC15:54
*** yamahata has joined #openstack-meeting15:55
*** priteau has quit IRC15:55
*** unicell has joined #openstack-meeting15:57
*** fnaval has joined #openstack-meeting16:00
*** links has joined #openstack-meeting16:00
*** andreas_s has quit IRC16:00
*** ralonsoh has quit IRC16:01
*** tongl has joined #openstack-meeting16:02
*** markstur has quit IRC16:03
*** edmondsw has quit IRC16:05
*** GeorgHennemann has joined #openstack-meeting16:06
*** erlon has quit IRC16:07
*** bobmel has joined #openstack-meeting16:07
*** mjturek has joined #openstack-meeting16:09
*** masber has quit IRC16:09
*** andreas_s has joined #openstack-meeting16:10
*** ekhugen has quit IRC16:10
*** Manuel_112 has joined #openstack-meeting16:10
*** edmondsw has joined #openstack-meeting16:12
*** galstrom is now known as galstrom_zzz16:13
*** andreas_s has quit IRC16:14
*** fnaval has quit IRC16:15
*** Manuel_112 has quit IRC16:16
*** noslzzp has quit IRC16:16
*** edmondsw has quit IRC16:16
*** Patifa has joined #openstack-meeting16:16
*** priteau has joined #openstack-meeting16:16
*** noslzzp has joined #openstack-meeting16:16
*** lbrune has joined #openstack-meeting16:17
*** Manuel_112 has joined #openstack-meeting16:19
*** andreas_s has joined #openstack-meeting16:24
*** reedip_ has quit IRC16:24
*** Manuel_112 has quit IRC16:24
*** Alex_Staf_ has quit IRC16:27
*** fnaval has joined #openstack-meeting16:27
*** bobmel has quit IRC16:30
*** jkilpatr_ has joined #openstack-meeting16:31
*** tobiajo has quit IRC16:32
*** jkilpatr has quit IRC16:32
*** rsimai is now known as rsimai_away16:33
*** andreas_s has quit IRC16:33
*** sambetts is now known as sambetts|afk16:34
*** Apoorva has joined #openstack-meeting16:35
*** chyka has joined #openstack-meeting16:39
*** Manuel_112 has joined #openstack-meeting16:41
*** gyee has joined #openstack-meeting16:41
*** tobiajo has joined #openstack-meeting16:43
*** gyee has quit IRC16:44
*** Manuel_112 has quit IRC16:45
*** yamamoto has joined #openstack-meeting16:45
*** andreas_s has joined #openstack-meeting16:46
*** Manuel_112 has joined #openstack-meeting16:47
*** Patifa has quit IRC16:47
*** Manuel_112 has quit IRC16:48
*** dimak has quit IRC16:48
*** Manuel_112 has joined #openstack-meeting16:49
*** toscalix has quit IRC16:49
*** oanson has quit IRC16:50
*** oanson has joined #openstack-meeting16:50
*** yamamoto has quit IRC16:52
*** Swami has quit IRC16:53
*** Manuel_112 has quit IRC16:53
*** dimak has joined #openstack-meeting16:54
*** andreas_s has quit IRC17:00
andreaf#startmeeting qa17:00
openstackMeeting started Thu Oct 12 17:00:22 2017 UTC and is due to finish in 60 minutes.  The chair is andreaf. Information about MeetBot at http://wiki.debian.org/MeetBot.17:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.17:00
*** openstack changes topic to " (Meeting topic: qa)"17:00
*** bobmel has joined #openstack-meeting17:00
openstackThe meeting name has been set to 'qa'17:00
andreafGood morning, good evening everyone17:00
andreafo/17:00
dustins\o17:00
andreafWho's here for the meeting today?17:00
andreafhello dustins17:01
dustinsandreaf: howdy17:01
*** baoli has quit IRC17:01
andreaf#link https://wiki.openstack.org/wiki/Meetings/QATeamMeeting#Agenda_for_October_12th_2017_.281700_UTC.29 Today's agenda17:01
andreafafazekas, oomichi, mtreinish around?17:02
mguineypo/17:02
mguiney* o/17:02
andreafmguiney o/17:03
mguineysorry, typo'd17:03
andreafsince it's only the few of us, I'll do a quick fly through the agenda for the record and then open the floor to open discussion if that's ok17:04
andreafstop me anytime :)17:04
andreaf#topic last meeting actions17:05
*** openstack changes topic to "last meeting actions (Meeting topic: qa)"17:05
andreafThere were two actions for me17:05
andreaf#link http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-10-05-08.01.html17:05
andreafSend an email about bug czar: done17:05
*** donghao has quit IRC17:05
andreafPrepare a patch for test.py -> tbd17:05
andreaf#action andreaf prepare a patch for test.py release notes and docs17:06
andreaf#topic Forum Topics for Sydney Summit17:06
*** priteau has quit IRC17:06
*** openstack changes topic to "Forum Topics for Sydney Summit (Meeting topic: qa)"17:06
andreafWe have three topics accepted for the forum17:06
mtreinishandreaf: I'm kinda around17:06
andreafmtreinish o/ ok17:07
*** baoli has joined #openstack-meeting17:07
andreaf#link https://etherpad.openstack.org/p/qa-sydney-forum-topics the three sessions are tracked here17:07
*** jbadiapa has quit IRC17:07
andreafIn short, openstack health, stestr and runners, users and operators adoption of qa tools17:08
andreafAlso we will have a QA onboarding session17:08
andreafI asked gmann_afk and masayukig to help prepare the session ^^^17:08
andreafmore volunteers to help prepare the session are always welcome17:09
andreaf#topic  Office Hours17:09
*** openstack changes topic to "Office Hours (Meeting topic: qa)"17:09
*** kylek3h has quit IRC17:09
andreafWe had earlier today our first office hours17:09
andreafI feel it went well17:09
*** kylek3h has joined #openstack-meeting17:09
*** baoli has quit IRC17:09
andreafWe did mostly bug triage, there was one question only about devstack17:09
andreafnext one is in two weeks17:10
*** baoli has joined #openstack-meeting17:10
*** iyamahat has quit IRC17:10
*** iyamahat has joined #openstack-meeting17:10
*** egallen has joined #openstack-meeting17:10
andreaf#link http://lists.openstack.org/pipermail/openstack-dev/2017-October/123520.html Report of office hours17:11
andreaf#topic Tempest17:11
*** openstack changes topic to "Tempest (Meeting topic: qa)"17:11
andreafWe're still trying to get test.py stable, there are three patches left for the object storage client17:11
*** baoli has quit IRC17:11
*** tesseract has quit IRC17:11
andreaf#link https://review.openstack.org/#/c/51115617:11
*** baoli has joined #openstack-meeting17:11
andreaf#link https://review.openstack.org/#/c/51117317:12
andreaf#link https://review.openstack.org/#/c/51084117:12
andreaf#info patches for object storage client to be reviewed ^^^ for test.py stable17:12
andreafAlso on Tempest you may have seen ansible patches17:12
andreaf#link https://review.openstack.org/#/q/status:open+project:openstack/tempest+branch:master+topic:zuulv3-tempest zuulv3 native jobs17:12
andreafI'm working with infra on setting up base tempest job in zuul v3 native format17:13
mtreinishandreaf: there was a 100% breakage introduced by the object client cleanup17:13
andreafthat will be the basis for most devstack + tempest jobs in the zuulv3 world17:13
andreafmtreinish: what do you mean by 100% breakage?17:14
mtreinishandreaf: https://bugs.launchpad.net/tempest/+bug/172216417:14
openstackLaunchpad bug 1722164 in tempest "Senario test: test_swift_acl_anonymous_download is always failed" [High,In progress] - Assigned to Jeremy Zhang (jeremy.zhang)17:14
mtreinishandreaf: as in we broke a test so it never works after some of the cleanups17:14
*** ociuhandu has quit IRC17:14
mtreinishit's not the latest round, but some of the earlier patches17:14
andreafmtreinish: yeah I may be a bit too keen on getting those merged :(17:15
*** ekhugen has joined #openstack-meeting17:15
*** simon-AS559 has joined #openstack-meeting17:16
andreafmtreinish: do we run that test anywhere?17:16
*** Manuel_112 has joined #openstack-meeting17:16
mtreinishandreaf: in the scenario jobs17:17
mtreinishwhich are nv17:17
andreafmtreinish: uhm ok we need to be more careful with -nv jobs17:17
mtreinishit's been broken since https://review.openstack.org/#/c/504439/ (which showed the failure)17:17
andreaf#info object storage refactor broke test_swift_acl_anonymous_download running on non-voting17:17
*** simon-AS5591 has joined #openstack-meeting17:17
andreaf#info object storage refactor broke ceilometer plugin as well, which runs on non-voting puppet job17:18
andreaf#info we need to take care of non-voting jobs17:18
andreafmtreinish: thanks for bringing it up17:19
andreafAnything else on Tempest?17:19
andreaf...17:20
andreaf..17:20
andreaf.17:20
mguineyjust another plea for reviews!17:20
*** simon-AS559 has quit IRC17:20
mtreinishmguiney: link?17:20
mguiney#link https://review.openstack.org/#/c/500470/17:20
andreafmguiney: sure. link?17:20
mguineysorry, took a sec17:20
andreafmguiney: I did review that, but it's not clear to me what the test is about17:21
andreafI left a comment on the patch17:21
mguineyah ok, thank you17:21
mguineywill take a look!17:21
*** Manuel_112 has quit IRC17:22
*** Manuel_112 has joined #openstack-meeting17:22
*** slaweq_ has joined #openstack-meeting17:23
andreafok ping me if you want to chat about it - I may online a bit later after dinner17:23
andreaf#topic critical reviews17:23
*** openstack changes topic to "critical reviews (Meeting topic: qa)"17:23
andreafany other patch that needs urgent review?17:23
*** slaweq_ has quit IRC17:24
andreaf#topic open discussion17:24
*** openstack changes topic to "open discussion (Meeting topic: qa)"17:25
andreafok anything else anyone?17:25
andreafI have one question to the attendees, mguiney dustins mtreinish - do you find this meeting useful?17:26
*** felipemonteiro has joined #openstack-meeting17:26
mguineywell17:26
andreafI'm considering keeping only the APAC TZ meeting since there's more activity there but I don't want to take away a place for people to report issues or so17:26
*** Manuel_112 has quit IRC17:26
mguineyas someone trying to get more involved, it is helpful to be able to ask and listen to people directly17:27
dustinsandreaf: I do find it useful, even if I don't have much to say17:27
mguineyi may be able to pop up then instead, what is the time?17:27
*** links has quit IRC17:27
andreaf8:00 UTC17:27
dustinsAnd it's this or wake up for a 03:00 meeting :)17:28
andreafso now we have 8:00 UTC meeting alternating with 9:00 UTC office hours17:28
*** simon-AS5591 has quit IRC17:28
andreafuhm that's way too early17:28
dustinsAlso explains why I haven't heard of the office hours, that's at 04:0017:28
* dustins is not a morning person 17:29
andreaf:D17:29
dustinsOh man, and with Daylight Savings it moves back another hour, oof17:29
mtreinishandreaf: it's not super useful to me. But, it's also around my lunch time so I'm not super active17:29
andreafI could perhaps cancel this meeting and setup a second office hours around 2pm UTC or so17:30
dustins11:00 EST, yeah?17:31
dustinsThat would be during the Manila upstream meeting for me, at least17:31
andreafok17:31
andreafI'll send a proposal in the ML to get a bit more input then, I can propose a few slot and ask for people to vote17:32
dustinsandreaf: sounds good to me, thanks, andreaf!17:32
andreafok17:32
andreaf#action andreaf send email about office hours in ~ UTC afternoon to replace this meeting17:33
andreafshall we wrap up?17:33
andreafanything else17:33
andreaf?17:33
andreafthanks for attending!17:33
* andreaf waves goodbye17:33
andreaf#endmeeting17:33
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"17:34
* mguiney waves17:34
openstackMeeting ended Thu Oct 12 17:33:59 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)17:34
openstackMinutes:        http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-10-12-17.00.html17:34
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-10-12-17.00.txt17:34
dustins\o17:34
openstackLog:            http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-10-12-17.00.log.html17:34
*** ociuhandu has joined #openstack-meeting17:36
*** felipemonteiro has quit IRC17:39
*** sshank has joined #openstack-meeting17:40
*** wanghao_ has joined #openstack-meeting17:42
*** wanghao has quit IRC17:42
*** SumitNaiksatam has joined #openstack-meeting17:43
*** noslzzp has quit IRC17:43
*** ricolin has quit IRC17:43
*** noslzzp has joined #openstack-meeting17:44
*** noslzzp has quit IRC17:44
*** apetrich has quit IRC17:45
*** edmondsw has joined #openstack-meeting17:46
*** apetrich has joined #openstack-meeting17:48
*** Swami has joined #openstack-meeting17:49
*** egallen has quit IRC17:49
*** rwsu has quit IRC17:51
*** tobiajo has quit IRC17:51
*** noslzzp has joined #openstack-meeting17:52
*** fzdarsky has joined #openstack-meeting17:54
*** fzdarsky_ has joined #openstack-meeting17:54
*** slaweq_ has joined #openstack-meeting17:55
*** fzdarsky_ has quit IRC17:55
*** fzdarsky has quit IRC17:55
*** Manuel_112 has joined #openstack-meeting17:56
*** fzdarsky_ has joined #openstack-meeting17:56
*** baoli has quit IRC17:56
*** baoli has joined #openstack-meeting17:57
*** fzdarsky_ has quit IRC17:57
*** Manuel_112 has quit IRC18:00
*** eharney has quit IRC18:03
*** Patifa has joined #openstack-meeting18:04
*** dprince has quit IRC18:05
*** ekcs has joined #openstack-meeting18:08
*** ijw has joined #openstack-meeting18:08
*** brault has quit IRC18:10
*** unicell has quit IRC18:15
*** ekhugen has quit IRC18:17
*** Alex_Staf_ has joined #openstack-meeting18:20
*** Manuel_112 has joined #openstack-meeting18:25
*** Manuel_112 has quit IRC18:29
*** fzdarsky has joined #openstack-meeting18:29
*** tongl has quit IRC18:30
*** tongl has joined #openstack-meeting18:30
*** baoli_ has joined #openstack-meeting18:31
*** Patifa has quit IRC18:32
*** baoli has quit IRC18:33
*** galstrom_zzz is now known as galstrom18:33
*** jprovazn has quit IRC18:40
*** Manuel_112 has joined #openstack-meeting18:57
*** slaweq_ has quit IRC18:59
*** Manuel_112 has quit IRC19:01
*** ihrachys_ has joined #openstack-meeting19:03
*** harlowja has quit IRC19:03
*** slaweq_ has joined #openstack-meeting19:03
*** ihrachys has quit IRC19:03
*** masber has joined #openstack-meeting19:05
*** slaweq_ has quit IRC19:06
*** baoli_ has quit IRC19:06
*** slaweq_ has joined #openstack-meeting19:06
*** sshank has quit IRC19:06
*** SumitNaiksatam has quit IRC19:08
*** masber has quit IRC19:10
*** baoli has joined #openstack-meeting19:11
*** gouthamr has quit IRC19:15
*** Patifa has joined #openstack-meeting19:18
*** Manuel_112 has joined #openstack-meeting19:27
*** eharney has joined #openstack-meeting19:29
*** baoli has quit IRC19:29
*** baoli has joined #openstack-meeting19:30
*** Manuel_112 has quit IRC19:32
*** andreas_s has joined #openstack-meeting19:35
*** awaugama has quit IRC19:40
*** andreas_s has quit IRC19:40
*** lpetrut_ has joined #openstack-meeting19:46
*** Alex_Staf_ has quit IRC19:47
*** baoli has quit IRC19:55
*** harlowja has joined #openstack-meeting19:57
*** pcaruana has quit IRC19:58
*** baoli has joined #openstack-meeting19:59
*** baoli has quit IRC19:59
*** Manuel_112 has joined #openstack-meeting20:06
*** Manuel_112 has quit IRC20:11
*** gouthamr has joined #openstack-meeting20:16
*** esberglu has quit IRC20:19
*** esberglu has joined #openstack-meeting20:22
*** ijw has quit IRC20:25
*** rbowen has quit IRC20:25
*** ijw has joined #openstack-meeting20:25
*** ansmith has quit IRC20:28
*** Manuel_112 has joined #openstack-meeting20:30
*** jkilpatr_ has quit IRC20:30
*** Manuel_112 has quit IRC20:31
*** Manuel_112 has joined #openstack-meeting20:31
*** e0ne has joined #openstack-meeting20:32
*** Manuel_112 has quit IRC20:33
*** Manuel_112 has joined #openstack-meeting20:33
*** sshank has joined #openstack-meeting20:36
*** Manuel_112 has quit IRC20:37
*** Manuel_112 has joined #openstack-meeting20:38
*** Apoorva_ has joined #openstack-meeting20:41
*** e0ne has quit IRC20:41
*** noslzzp has quit IRC20:41
*** Manuel_112 has quit IRC20:42
*** eharney has quit IRC20:42
*** eharney has joined #openstack-meeting20:43
*** Apoorva has quit IRC20:43
*** lpetrut_ has quit IRC20:49
*** Manuel_112 has joined #openstack-meeting20:49
*** Manuel_112 has quit IRC20:54
*** takashin has joined #openstack-meeting20:55
*** pchavva has quit IRC20:55
*** tssurya_ has joined #openstack-meeting20:55
*** Patifa has quit IRC20:57
mriedem#startmeeting nova21:00
openstackMeeting started Thu Oct 12 21:00:06 2017 UTC and is due to finish in 60 minutes.  The chair is mriedem. Information about MeetBot at http://wiki.debian.org/MeetBot.21:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.21:00
*** openstack changes topic to " (Meeting topic: nova)"21:00
openstackThe meeting name has been set to 'nova'21:00
*** iyamahat has quit IRC21:00
mriedemwho's around?21:00
melwitt0/21:00
dansmithI'm pretty round21:00
takashino/21:00
tssurya_o/21:00
melwitthah21:00
edleafe\o21:00
mriedemso today melwitt has the tall head and tssurya has the normal sized head?21:00
tssurya_hehe21:01
melwittyeah, I liked the tall head idea21:01
efried\o21:01
*** Patifa has joined #openstack-meeting21:01
mriedem#link agenda https://wiki.openstack.org/wiki/Meetings/Nova#Agenda_for_next_meeting21:01
mriedem#topic release news21:01
*** openstack changes topic to "release news (Meeting topic: nova)"21:01
mriedem#link Queens release schedule: https://wiki.openstack.org/wiki/Nova/Queens_Release_Schedule21:01
mriedem#info Oct 19: q-1 milestone, nova spec freeze (1 week away)21:01
*** iyamahat has joined #openstack-meeting21:01
mriedemi went through a few specs today, there are a lot out there with -1s on them21:02
mriedem#info Blueprints: 53 targeted, 27 approved, 1 complete21:02
mriedem#link forum topics are being reviewed: http://forumtopics.openstack.org/21:02
mriedemthere is some actual movement on the forum sessions now21:02
mriedemany questions about the release?21:02
mriedem#topic bugs21:03
*** openstack changes topic to "bugs (Meeting topic: nova)"21:03
mriedemnothing marked as critical21:03
mriedem#info 11 new untriaged bugs (up 5 from last week)21:03
mriedemgate status is....21:03
mriedemwell patches are merging21:03
mriedemso that's good21:03
*** Patifa has quit IRC21:03
mriedem3rd party ci - zkvm ci was having some issues,21:03
melwittgate on stable branches seems faily21:03
edleafeshould we be pushing new patches? Or hold off for now?21:03
mriedemandreas is going to adjust the whitelist for the zkvm ci to see if that helps21:04
mriedemi think we can be pushing patches21:04
edleafeah, ok. I was holding on to mine21:04
mriedemmelwitt: i've seen some in stable/pike merge today21:04
mriedemgot one in the gate right now21:04
melwittguess it just hates my patches then21:04
*** edmondsw has quit IRC21:05
dansmithgate is pretty faily now across the board no?21:05
dansmithwith logs.o.o failures and such21:05
* efried has been mercilessly rechecking everything21:05
dansmithlots of POST_FAILUREs21:05
dansmiththe stuff holding up the v3 transition21:05
melwittI've seen lots of stuff merging on master. but yeah I've seen some POST_FAILURE too21:05
mriedemthere were 2 known things that were notified out earlier today21:05
mriedemthe post failures and another one with a package dependency21:05
dansmithmelwitt: yeah the tings I've seen on master have been running fewer tests, more likely to sail through21:06
dansmithbut yeah, some is merging for sure21:06
mriedem"Job log uploads are failing due to lack of inodes. Jobs also fail due to mismatches in gnutls packages. Workarounds for both in progress with proper fixes to follow."21:06
mriedemthat was 6 hours ago21:06
mriedemmoving on21:06
mriedem#topic reminders21:06
*** openstack changes topic to "reminders (Meeting topic: nova)"21:06
mriedemjust review and reply to feedback on specs21:07
mriedembut we're probably nearing our limit21:07
mriedem#topic stable branch status21:07
*** openstack changes topic to "stable branch status (Meeting topic: nova)"21:07
mriedem#link stable/pike: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/pike,n,z21:07
mriedem#link Etherpad for bugs tracked for Pike backports: https://etherpad.openstack.org/p/nova-pike-bug-fix-backports21:07
mriedemi've been harassing some stable cores to review some stuff for pike so we can do a release21:07
mriedemonce some of that flushes out i'll cut a release21:07
*** jkilpatr_ has joined #openstack-meeting21:07
mriedem#link stable/ocata: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/ocata,n,z21:08
mriedem#link stable/newton: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/newton,n,z21:08
mriedem#info Oct 18 : stable/newton branches get tagged EOL21:08
mriedemso less than a week to newton EOL21:08
*** thorst has quit IRC21:08
mriedemi'll get whiny about reviews there later in the week21:08
mriedem#topic subteam highlights21:08
*** openstack changes topic to "subteam highlights (Meeting topic: nova)"21:08
mriedemdansmith: cells?21:08
dansmithwe talked about open reviews,21:09
dansmithand the bug that the rally team hit, which is now resolved21:09
dansmithand the few that melwitt uncovered with her meddling21:09
dansmithI think that was it?21:09
dansmithoh21:09
melwitt:)21:09
dansmithand tssurya_'s patch21:09
dansmithwhich I have now +2d, btw21:09
dansmithnow I'm done21:10
tssurya_dansmith : thanks :)21:10
mriedemi think i might have also said something really inspiring and groundbreaking, but can't remember now21:10
dansmithI remember nothing like that21:10
melwittouch21:10
mriedem...21:10
* mriedem shifts eyes21:10
mriedemedleafe: scheduler?!21:10
edleafeAgreed to expose the root_provider_uuid in GET /resource_providers21:10
edleafeReviewed the progress on various patch series21:10
edleafeAlternate hosts series ready for review21:10
edleafeSpent the bulk of the meeting time discussing how un-cloudy we can get with nested RPs21:10
edleafethat's it21:11
mriedemalright21:11
mriedemapi meeting, there are some notes in here21:11
*** Manuel_112 has joined #openstack-meeting21:11
mriedemTalking about the spec "spec for API extensions policy removal" https://review.openstack.org/#/c/508101/, there are two questions21:11
mriedemWhether we need a deprecation cycle for the policy removal https://review.openstack.org/#/c/508101/3/specs/queens/approved/api-extensions-merge-queens.rst@6121:11
*** eharney has quit IRC21:12
mriedemif we can deprecate policy rules, it seems we should21:12
mriedemhandle them like config options21:12
mriedemwhich is why we have policy in code now21:12
mriedemissue the 2nd21:12
mriedem"The spec mixed the extension cleanup and policy removal, can we  separated them into two BPs? the extension cleanup can be a specless BP."21:12
mriedemyes extension cleanup can be a separate specless blueprint, it has already been done that way since i think ocata21:13
mriedemnotes to gmann_afk and alex_xu ^ when they are around21:13
*** gouthamr has quit IRC21:13
mriedemok notifications meeting updates,21:13
mriedemseveral things that gibi wanted to see merged are now merged, so he's happier21:13
mriedemsome of the versioned notification translation stuff has stalled because some of the people working on it are no longer around21:14
mriedemso gibi was going to start picking up more of those stalled changes21:14
*** eharney has joined #openstack-meeting21:14
mriedemand there was something else but i can't remember what now,21:14
mriedemprobably me saying something awe-inspiring21:14
* mriedem shifts eyes21:14
mriedemCINDER21:15
mriedem#help need another core reviewer on the new style volume attachment live migration change https://review.openstack.org/#/c/463987/21:15
mriedemotherwise nova changes are kind of held up waiting on cinder changes right now21:15
mriedemi need to go back and check the status of those things21:15
mriedem#topic stuck reviews21:15
*** openstack changes topic to "stuck reviews (Meeting topic: nova)"21:15
mriedemso efried added this21:15
mriedemhttps://review.openstack.org/#/c/499826/ -- Do we need a new microversion to add a missing "link" to GET /resource_providers?21:15
mriedemso apparently we added some links w/o a microversion in a response once,21:16
mriedemand now efried is trying to do the same and people are saying a microversion is required21:16
*** Manuel_112 has quit IRC21:16
mriedemso it's stuck21:16
edleafegenerally, if you change what someone gets from an identical request, it requires a microversion21:16
efriedYeah, there's no argument that the *letter* of the law says you need a new microversion here.21:17
efriedI'm contending that this is a perfect example of where that rule can be overlooked.21:17
efriedcan and should21:17
edleafeFor a single cloud, sure. For interop, that is breaking21:17
edleafeIt's the Monty Rule21:18
edleafe:)21:18
mriedemwell, although,21:18
mriedemplacement in this case is admin-only so also a bit special21:18
efriedSeems weird to me that adding a new key in a dict would be breaking, but I get that that decision was made for reasons.21:19
edleafefor key in body.keys(): process(key)21:19
smcginnisWould a client ever need to ensure that links is there? If that's the case, the only way they can have that assurance is to ask for a specific microversion.21:19
mriedemso https://review.openstack.org/#/c/468923/1/nova/api/openstack/placement/handlers/resource_provider.py was the thing that changed the response w/o a microversion21:19
edleafecdent did a naughty thing there :)21:21
efriedIf we decide we need a new microversion, it seems silly to have a whole one just for this; but on the other hand it would be against the usual policy to slide it into some other unrelated change (although that too was kinda done by ^)21:21
*** galstrom is now known as galstrom_zzz21:21
edleafeyeah, cause microversions are expensive!21:21
efriedSorry, not indoctrinated enough to ascertain whether that was sarcasm21:22
mriedemit's ed so yes21:22
edleafedefinitely sarcasm21:22
mriedemassume sarcasm21:22
mriedemidk, i don't have a super strong opinion on this either way21:22
*** lbrune has quit IRC21:23
mriedemmake sdague decide :)21:23
edleafeIt's a bit more work, sure, but we're trying to be more disciplined with out APIs than we have in the past21:23
*** lbrune has joined #openstack-meeting21:23
edleafe(that wasn't sarcasm)21:23
mriedemthe right thing to do is microversion the change, regardless of what wasn't done correctly before,21:24
mriedemwe bump the minimum required microversion that nova needs each release already,21:24
mriedemso eventually the minimum we're going to require is already going to contain this thing,21:24
mriedemso long-term it's not a big deal to do it in a new microversion,21:24
mriedemso let's just do that21:24
mriedemefried: ok?21:25
efriedOkay.21:25
efriedBumps that change set down on my priority list.21:26
efriedBut cool.21:26
efriedThanks for the discussion.21:26
mriedemok21:26
*** aeng has joined #openstack-meeting21:26
mriedem#topic open discussion21:27
*** openstack changes topic to "open discussion (Meeting topic: nova)"21:27
mriedem2 things21:27
*** dustins has quit IRC21:27
mriedem1. Is anyone interested in running a project on-boarding room at the summit? http://lists.openstack.org/pipermail/openstack-dev/2017-October/123206.html21:27
*** lbrune has quit IRC21:27
dansmithI'll volunteer to help21:27
dansmithif someone else will do it with me21:27
melwittI can help21:27
edleafeI'll help, if only to aggravate dansmith21:27
mriedemYES21:28
dansmithedleafe and I can do performance art arguing21:28
mriedem#action mriedem to ask for an onboarding room at the summit, piloted by dan, mel and ed21:28
edleafedansmith: https://www.youtube.com/watch?v=kQFKtI6gn9Y21:28
mriedemok final thing21:29
mriedemKevin_Zheng: specless blueprint for adding more instance actions: https://blueprints.launchpad.net/nova/+spec/fill-the-gap-for-instance-action-records21:29
mriedemwe talked about this at the ptg,21:29
mriedemand i had asked kevin to look into other server api actions that we were missing, so he found a few others to put in there21:29
mriedemi'm ok with it as a specless blueprint, but bringing it up here for publicity21:29
mriedemany objections?21:29
mriedemtaking that as a no21:30
mriedemdoes anyone else have anything for open discussion?21:30
mriedemok i guess that's it21:31
mriedemthanks everyone21:31
mriedem#endmeeting21:31
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"21:31
openstackMeeting ended Thu Oct 12 21:31:29 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)21:31
openstackMinutes:        http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-10-12-21.00.html21:31
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-10-12-21.00.txt21:31
openstackLog:            http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-10-12-21.00.log.html21:31
*** tssurya_ has left #openstack-meeting21:31
*** takashin has left #openstack-meeting21:32
*** Manuel_112 has joined #openstack-meeting21:32
*** thorst has joined #openstack-meeting21:33
*** eharney has quit IRC21:34
*** thorst has quit IRC21:36
*** lifeless has quit IRC21:37
*** Manuel_112 has quit IRC21:37
*** Manuel_112 has joined #openstack-meeting21:42
*** Manuel_112 has quit IRC21:47
*** b1airo has joined #openstack-meeting21:47
*** esberglu has quit IRC21:47
*** esberglu has joined #openstack-meeting21:48
*** iyamahat_ has joined #openstack-meeting21:48
*** iyamahat has quit IRC21:49
*** slaweq_ has quit IRC21:50
*** esberglu has quit IRC21:52
*** Apoorva_ has quit IRC21:55
*** gouthamr has joined #openstack-meeting21:55
*** jgriffith has quit IRC21:58
*** mlavalle has joined #openstack-meeting21:59
*** yamamoto has joined #openstack-meeting21:59
*** lifeless has joined #openstack-meeting22:00
mlavalle#startmeeting neutron_drivers22:00
openstackMeeting started Thu Oct 12 22:00:13 2017 UTC and is due to finish in 60 minutes.  The chair is mlavalle. Information about MeetBot at http://wiki.debian.org/MeetBot.22:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.22:00
*** openstack changes topic to " (Meeting topic: neutron_drivers)"22:00
openstackThe meeting name has been set to 'neutron_drivers'22:00
armaxyello22:00
mlavalleo/22:00
yamamotohi22:00
*** anilvenkata has quit IRC22:01
*** reedip has quit IRC22:01
armaxamotoki: around?22:01
mlavallehe said he was going to join22:02
*** esberglu has joined #openstack-meeting22:02
armaxok22:02
mlavallelet's give him a couple of minutes22:02
*** b1airo has quit IRC22:02
*** iyamahat_ has quit IRC22:03
*** anilvenkata has joined #openstack-meeting22:03
*** iyamahat__ has joined #openstack-meeting22:03
*** reedip has joined #openstack-meeting22:03
mlavalleok, let's start22:04
armaxlet's22:04
mlavalleyamamoto: I sent you an email with a doodle survey22:04
yamamotoi found it in my inbox22:05
mlavallewhen you have a chance, please respond with your availability for alternate time22:05
mlavalleno rush right now22:05
yamamotook22:05
mlavalleThis is the list of triaged RFEs that we want to process today:22:06
mlavalle#link https://bugs.launchpad.net/neutron/+bugs?field.status%3Alist=Triaged&field.tag=rfe22:06
*** esberglu has quit IRC22:06
*** jgriffith has joined #openstack-meeting22:06
mlavalleFirst one in the list is https://bugs.launchpad.net/neutron/+bug/169042522:06
openstackLaunchpad bug 1690425 in neutron "[RFE] neutron cells aware" [Wishlist,Triaged]22:06
armaxthis one came  from the boston forun22:07
armaxforum22:07
mlavalleit was only time before someone was to bring this up22:07
armaxin a nutshell, it’d be nice if we can make neutron able to deal with more than a single rabbit cluster22:07
armaxin a similar way nova cells does it22:08
armaxhowever, there’s more than one way to do that22:08
armaxwe could potentially fall back on using the cells hierarchy to find how to route the messages across the deployment22:08
armaxor use something like message routing (latest link) on the bug report22:09
armaxthis requirement keeps coming up but no-one steps up to do the work :)22:09
mlavalleyeah, I goit myself thorugh that presentation right before they start the demo22:09
mlavalleI think this something we won't be able to avoid indefinitily22:09
mlavalleif Nova Cells V2 starts to get adopted, the pressure will only gow on Neutron22:10
armaxmlavalle: that’s a good point22:10
mlavalleso I think it is better if we are proactive22:11
armaxcell v2 is already default in th gate22:11
armaxso there’s going to be an uptake for sure22:11
mlavallewhat about the DB?22:11
armaxwhat do you mean?22:11
armaxhow to shard the DB?22:12
armaxdon’t go there :)22:12
mlavallejust clarifying the prposal22:12
*** bobh has quit IRC22:12
mlavalledo we want to keep a centralized Neutron server22:12
mlavalleand the use a super fast messaging bus to talk to agents across cells?22:13
*** mriedem1 has joined #openstack-meeting22:14
*** fnaval has quit IRC22:14
*** Manuel_112 has joined #openstack-meeting22:15
armaxmlavalle: I’d say so22:15
armaxmlavalle: the neutron server can already be scaled out infinitely22:15
armaxagents can be deployed per AZ22:15
*** mriedem has quit IRC22:15
armaxthe chokepoint has always been the bus for us22:15
mlavallenow if I understood the presentation you posted in the RFE, we could adopt that messaging approach22:16
*** Manuel_112 has quit IRC22:16
armaxthat’s one way to tackle the messaging chokepoint22:17
yamamotohow about tricircle?22:17
*** Manuel_112 has joined #openstack-meeting22:17
mlavallewithout necessarily aligning completly with de cells on the Nova side, right?22:17
armaxwhile tricircle introduces a hierarchy of neutron systems22:18
armaxit’s like killing a fly with a cannon if the bottleneck is just the bus22:19
mlavallewould the next step be a PoC?22:20
mlavalleand maybe get feedback from large operators in Sydney22:20
armaxmlavalle: PoC about what exactly?22:21
mlavallesome code using this new messaging approach22:21
armaxoh22:21
armaxwell22:21
*** Manuel_112 has quit IRC22:21
mlavalleI am just trying to get to the next step22:21
armaxyeah, makes sense22:22
armaxI suppose we could recommend to look into the routing messaging approach to avoid the bottleneck22:22
mlavalleif we believe the premise that this is something that will catch up with us sooner or later22:22
armaxwe’d need the scale to validate that the approach is sound, no?22:22
mlavalleyeah22:22
mlavalleand if the premise above is true^^^^, let's start learning asap22:23
yamamotoarmax: if the cannon works well, i guess it's ok. do you have any particular downside in your mind?22:25
armaxyamamoto: complexity!22:25
yamamotook. i don't know how complex tricircle is.22:26
mlavallehas it been deployed at large scale succesfuly, you know?22:27
armaxanything that involves a hierarchical structure can’t be simple :)22:27
armaxit’s like linkedlist vs BSTs :)22:27
armaxor AVL trees22:27
armaxI let you decide which structure is easier to understand :P22:28
armaxmlavalle: you mean tricircle?22:28
mlavalleyeah22:28
armaxmlavalle: you’re best position to find the answer the question as it’s been a project spearheaded by huaweii22:28
armaxI think proposing tricircle has some merits too22:29
mlavalleI know, that is why I am asking22:29
*** b1airo has joined #openstack-meeting22:29
mlavallemaybe we can decide to next setps here for today22:29
armaxbut again, that comes with a lot more than just overcome the bus chokepoint22:29
armaxnext step is probably add a documentation section to our guide22:29
armaxto plot some of these stop-gap solutions22:29
mlavalle1) Dig deeper in the messaging approach22:30
*** kbyrne has quit IRC22:30
*** gouthamr has quit IRC22:30
armaxany other?22:31
mlavalle2) I could do some fact finding about tricircle22:31
armaxI send a 2)22:31
armaxsense22:31
armaxis there a 3)? :)22:31
mlavalleno22:31
armaxso 0) being the doc effort/22:32
mlavallenot from my anyway22:32
armax?22:32
mlavalleyeah22:32
armaxyamamoto, amotoki what’s your experience? heard complaint about the MQ bus?22:32
*** kbyrne has joined #openstack-meeting22:33
yamamotoi've heard comlaints about amqp. in many cases "we" propose midonet as a solution. :-)22:34
armaxlol22:34
armaxthere you go, problem solved!22:34
armax:)22:34
mlavallelol22:35
*** Manuel_112 has joined #openstack-meeting22:35
armaxOK, shall we move on? I think we have enough to take this a bit more farther22:35
mlavalleyeap22:35
armaxwho summarizes this on teh report?22:35
armaxmlavalle: you?22:36
armaxor you?22:36
mlavalleyeah22:36
armaxor maybe you?22:36
mlavalleI will22:36
armaxok, then if you volunteer22:36
armaxI am happy to bow22:36
*** rbudden has quit IRC22:36
*** lin_yang has joined #openstack-meeting22:36
mlavalleNext one is https://bugs.launchpad.net/neutron/+bug/169043822:37
openstackLaunchpad bug 1690438 in neutron "[RFE] make get-me-a-network work with any network topology" [Wishlist,Triaged]22:37
mlavalleI looked at this one earlier today and I liked it22:37
mlavalleincluding the spec22:37
mlavalleyamamoto has a comment I believe22:38
armaxmlavalle: I need to refresh it one more time based on a chat I had with kevinbenton22:38
armaxbut other than that I think the work is a great example of a starter bug22:39
mlavallethe spec?22:39
armaxya22:39
mlavalleI am good to approve the RFE22:39
armaxas it’s just orchestration on top of easy stuff22:39
*** Manuel_112 has quit IRC22:39
mlavalleyamamoto: what do you think?22:39
armaxOK, we need to advertisize that’s free for takers next team meeting22:39
mlavallewill do22:39
armaxmlavalle: actually I even had a PoC code lying around somewhere22:39
armaxbut I think I lost it22:39
armax:(22:39
yamamotoi think it's fine to approve the RFE and sort out details in spec review22:40
mlavalleI will actually add a section to the Neutron meeting to advertise this22:40
mlavallelike we have a section for docs, neutron-libe, bugs, etc22:40
mlavallestarting on Monday22:40
mlavalleok, approved22:41
armaxwoot22:41
mlavalleNext one is https://bugs.launchpad.net/neutron/+bug/169043922:42
openstackLaunchpad bug 1690439 in neutron "[RFE] Deal with NetworkAmbiguous error" [Wishlist,Triaged] - Assigned to hongbin (hongbin034)22:42
*** mriedem1 has quit IRC22:43
armaxthat’s another one that came out of the forum in bost22:43
armaxboston22:43
mlavallewow, we even got a volunteer for this RFE since I wrote a comment this morning22:43
armaxwe need to mark a network in neutron to be default22:43
mlavalleyeah22:43
armaxbut most orchestration is in nova22:43
armaxhonestly we even have the code in neutron22:43
armaxbecause today we can mark an external network as default22:44
armaxso it’s a bit of shuffling22:44
*** sgrasley1 has quit IRC22:44
mlavallewould it be a be a starter's RFE on our side?22:45
armaxI think so22:47
mlavallewell, we already have hongbin as volunteer22:47
mlavalleMy opinion is let's approve it22:47
mlavalleyamamoto: what do you think?22:48
yamamoto+1 to approve22:48
mlavalleapproved it is22:48
mlavalleNext up is https://bugs.launchpad.net/neutron/+bug/169212622:49
openstackLaunchpad bug 1692126 in neutron "[RFE] Detailed error responses for failed VPN connections" [Wishlist,Triaged]22:49
armaxlast comment from yamamoto makes sense, I mean about the description being a standard attribute22:49
armaxthough it’s be nice for those resources that have a status to have a status description that is done consistently22:50
*** Manuel_112 has joined #openstack-meeting22:51
yamamotocan we have another stdattr-like thing?  say HasStatusAndItsDescription22:51
armaxprobably no worth the hassle22:51
mlavalleso would we pursue this only for VPN?22:53
*** fzdarsky has quit IRC22:53
*** reedip has quit IRC22:54
*** iyamahat__ has quit IRC22:54
yamamotoi guess we can start from the given use case (vpn) but with future consistency for other resources in mind22:54
mlavalleI think that is a good approach22:55
*** noslzzp has joined #openstack-meeting22:56
*** dmacpher has quit IRC22:56
yamamotoany precedence of "status details" in neutron?22:56
*** Manuel_112 has quit IRC22:56
mlavallewhat do you mean? have we tried this before?22:57
armaxthere’s no such field/capability in neutron22:57
armaxI don’t recall22:58
yamamotoi meant, if there's a precedence, we should be consistent with it.22:58
*** iyamahat has joined #openstack-meeting22:58
yamamotoi don't recall anything either22:58
mlavalleme neither22:58
mlavalleso I say let's move ahead with this for VPN22:59
*** sshank has quit IRC22:59
mlavallearmax, yamamoto: what to do say?22:59
*** aeng has quit IRC23:01
armaxIt’s say it’s up to the vpnaas core team to decide23:01
armaxI think it’s a reasonable addition23:02
mlavalleok, I'll make a note in the RFE to this effect23:02
mlavalleTime is up23:02
mlavallethanks for attending23:03
yamamoto+1 to make vpnaas decide.23:03
yamamotothank you23:03
mlavalle#endmeeting23:03
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"23:03
openstackMeeting ended Thu Oct 12 23:03:21 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)23:03
openstackMinutes:        http://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-10-12-22.00.html23:03
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-10-12-22.00.txt23:03
openstackLog:            http://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-10-12-22.00.log.html23:03
mlavalleo/23:03
armaxOK23:04
armaxthanks23:04
*** reedip has joined #openstack-meeting23:06
*** ssathaye has quit IRC23:09
*** ssathaye has joined #openstack-meeting23:09
*** bobh has joined #openstack-meeting23:12
yamamotomlavalle: the doodle is showing Oct 16-21, which is "even" week. i thought we were going to change the slot for "odd" week. which is your intention?23:12
mlavalleyamamoto: I will just use the days of the week as reference23:13
mlavalledon't worry abouyt the specific week23:14
*** rwsu has joined #openstack-meeting23:14
mlavallein other words, use those days as if they are odd23:15
*** hongbin has quit IRC23:15
*** mjturek has quit IRC23:15
*** b1airo has quit IRC23:17
*** aeng has joined #openstack-meeting23:18
*** felipemonteiro has joined #openstack-meeting23:19
yamamotomlavalle: in that case, you're checking the slot conflicting with neutron meeting.23:19
mlavalleyou mean on Tuesday?23:19
yamamotoyes23:20
mlavalleyeah, that's a mistake on my part. I'll fix it23:20
yamamotook. i filled mine.23:22
mlavalledone, thanks for pointing it out23:22
*** Apoorva has joined #openstack-meeting23:23
*** Manuel_112 has joined #openstack-meeting23:26
*** Swami has quit IRC23:29
*** ekcs has quit IRC23:29
*** aeng has quit IRC23:30
*** tongl has quit IRC23:30
*** Manuel_112 has quit IRC23:31
*** bsilverman_ has left #openstack-meeting23:31
*** ttrifonov has quit IRC23:35
*** thorst has joined #openstack-meeting23:37
*** mlavalle has quit IRC23:37
*** ttrifonov has joined #openstack-meeting23:38
*** Manuel_112 has joined #openstack-meeting23:38
*** bobh has quit IRC23:39
*** thorst has quit IRC23:42
*** Manuel_112 has quit IRC23:42
*** aeng has joined #openstack-meeting23:43
*** markvoelker has quit IRC23:46
*** gouthamr has joined #openstack-meeting23:46
*** bobh has joined #openstack-meeting23:47
*** masber has joined #openstack-meeting23:47
*** Manuel_112 has joined #openstack-meeting23:57

Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!