Thursday, 2017-05-04

*** yangyape_ has quit IRC00:00
*** jamesdenton has quit IRC00:00
*** sshank has quit IRC00:00
*** ekcs has joined #openstack-meeting00:02
*** yamahata has joined #openstack-meeting00:02
ekcstime for congress meeting thinrichs ramineni masahito aimeeu00:02
ekcs#startmeeting congressteammeeting00:02
openstackMeeting started Thu May  4 00:02:52 2017 UTC and is due to finish in 60 minutes.  The chair is ekcs. Information about MeetBot at http://wiki.debian.org/MeetBot.00:02
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.00:02
*** openstack changes topic to " (Meeting topic: congressteammeeting)"00:02
openstackThe meeting name has been set to 'congressteammeeting'00:02
*** ramineni_ has joined #openstack-meeting00:03
*** csomerville has quit IRC00:03
ekcsHi all! welcome back for another week. topics are here as usual: #link: https://etherpad.openstack.org/p/congress-meeting-topics00:03
ramineni_hi00:03
*** eric_young has quit IRC00:04
ekcshi ramineni_ !00:04
*** armax has quit IRC00:05
*** mickeys has joined #openstack-meeting00:05
*** lamt has quit IRC00:06
*** eric_young has joined #openstack-meeting00:06
*** amotoki has quit IRC00:07
ekcspretty quiet today haha. well lets get started00:07
ekcs#topic gate failure00:07
*** openstack changes topic to "gate failure (Meeting topic: congressteammeeting)"00:07
ekcsseems like we have a new kind of gate failure.00:08
ekcsdevstack@congress-api.service: Service lacks both ExecStart= and ExecStop= setting. Refusing.00:08
ramineni_ekcs: yes, that issue is solved by this patch https://review.openstack.org/#/c/461623/00:08
patchbotpatch 461623 - congress - [Testing] Gate Issue00:08
ekcsah great!00:09
ekcsahd it seems to solve smoe of the auth problems too?00:09
ramineni_ekcs: yes, but the problem is with oly keytsonev200:09
ekcsi’ve tried to look for devstack and keystone changes merged around the right time to see where the auth problem came from, but haven’t found something exact.00:10
ekcsoh perfect!00:10
ekcsso maybe we just need to move all the drivers to keystone v3?00:10
ramineni_ekcs: as you mentioned it is because of the change in endpoint of keystone00:10
ramineni_ekcs: but the problem is we have keystone_driver.py which is v2 one, should we deprecate it? all the tests related to that driver is failing00:11
ekcshmmm. we shoudl probably figure out why v2 is failing, and whether it’s supposed to fail or not.00:12
ekcsdo you know if v2 is not supported any more?00:12
ramineni_ekcs: and also i need to check if they have totally deprecated v200:12
ramineni_ekcs: i knw its deprecated , but totally removed or not, i need to check00:12
*** imcsk8 has quit IRC00:13
ekcsI see. Great. if they have removed keystone v2, I’d think we also removed keystone v2 driver. or just document that it doesn’t work with latest openstack version, and remove the tempest tests for that driver.00:14
ekcsdoes that make sense?00:14
ramineni_ekcs: sounds good, ill look into that today00:15
*** aeng has quit IRC00:17
ekcsaccording to this (probably out of date) document, v2 shoud be around in pike. well i guess looking at keystone patches is the place.00:17
ekcsanyway great work figuring this out!00:17
*** jamesdenton has joined #openstack-meeting00:17
ekcsanything to discuss right now on gate issue?00:17
ramineni_ekcs: no00:18
ekcsok next topic then.00:18
ekcs#topic policy library00:19
*** openstack changes topic to "policy library (Meeting topic: congressteammeeting)"00:19
ekcsspec under discussion: https://review.openstack.org/#/c/457880/00:19
patchbotpatch 457880 - congress-specs - policy library spec00:19
ekcsthere are a few TODO sections but those are very minor. the spec is ready for review.00:20
ekcsalso have a patch up for review that implements one of the key functions needed by the spec: #link https://review.openstack.org/#/c/460348/00:20
patchbotpatch 460348 - congress - support transactional insert of multiple rules00:20
*** guyr-infinidat has joined #openstack-meeting00:20
*** xgerman has joined #openstack-meeting00:20
ekcsanything to discuss here?00:21
ramineni_ekcs: ok, ill get to the spec this week00:22
ekcsI’ll point out one interesting thing. also noted on gerrit. it’s always been the case that if insert rule into policy engine succeeds, then later write to db fails, the rule may have already have effects (triggers, query answers), before the insert is undone.00:23
ekcsitd be pretty hard to change that behavior. but we shoudl still think about whether that’s acceptable or not.00:23
ekcscool thanks!00:24
ekcslet’s move on then.00:24
ekcs#topic patches00:24
*** openstack changes topic to "patches (Meeting topic: congressteammeeting)"00:24
ramineni_ekcs: so, if inmem one suceeds and db one doesnt , then the problme is seen you are saying right?00:24
ekcsany patches to discuss?00:24
ekcsramineni_: right.00:24
ramineni_ekcs: cant we reverse the insertion00:25
ramineni_?00:25
ramineni_ekcs: insert only if DB one suceeds00:25
ekcsthat’s how policy creation is done. that would make more sense, but for rules, there are checks that need to be done that can’t be done in db00:26
ekcsso whoever did the DB code initially decided to insert into engine first.00:26
ekcsand in order to reverse that, we’d need to impelement kind of a separate policy engine that checks the rules are ok to insert, then insert into DB, then insert into actual policy engine.00:27
ramineni_ekcs: i thought policy synchronizer takes care of inmem for policy insertion00:28
ekcsthe main problem is that policy rule checks are complex (recursion and stuff), unlike policy which just need to not have the same name as existing00:28
ramineni_ekcs: ya, rules one looks difficult00:28
ramineni_ekcs: ok, got it00:28
ekcshmmmm actually.00:28
*** jamesdenton has quit IRC00:28
*** VW has joined #openstack-meeting00:28
ekcsif we insert into DB first, that may work.00:28
ekcsother strange things happen, but maybe ok.00:29
ramineni_ekcs: ya, but not usre if it is possible00:29
*** gyee has quit IRC00:29
ekcsinsert into DB, then synchronizer needs to tolerate failing to insert into policy engine.00:29
ekcswhich is not hard.00:30
*** xingchao has joined #openstack-meeting00:30
ekcsbut if someone in the mean time lists rules, the disallowed rule would be listed because it’s according to DB.00:30
ekcsbut maybe that’s ok.00:30
ekcsinsert into DB, insert into PE, then undo from DB if PE fails.00:30
ramineni_ekcs: right, if we have rule enable/disable option that might solve the problme you are saying00:31
ramineni_ekcs: we can mark it disabled first and enable once all checks pass00:31
ramineni_ekcs: but i think that is the second stage00:31
*** zhurong has joined #openstack-meeting00:32
ekcshmm. something like that. marking the rule as provisional / disabled.00:32
ramineni_ekcs: ya, enable/disable also good thing to add , i think bryan also suggested the same during PTG00:33
ekcsmay be good thing to add. but I think we can use the disbaled concept for this problem, witout exposing that to user.00:33
ramineni_ekcs: yes, right00:34
*** aeng has joined #openstack-meeting00:34
ekcsok well. good discussion.00:34
ekcsanything more?00:34
*** ijw has quit IRC00:34
ekcspolicy library or other patches? or anything else.00:34
*** xingchao has quit IRC00:35
ramineni_ekcs: no00:35
ekcshaha ok then. should we end meeting ?00:35
*** dhellmann has quit IRC00:35
ramineni_ekcs: next meeting would be cancelled rigt?00:36
ramineni_ekcs: everyone will be at summit?00:36
*** dhellmann has joined #openstack-meeting00:36
ekcsi was thinking about that. OS summit is next seek. masahito, aimeeu and me will all be there. you?00:36
ramineni_ekcs: no, not making it this time00:37
ekcsI dont know if thinrichs is going. so I was debating whether to have meeting anyway.00:37
ekcssince it maybe like half the people there and half not.00:37
ekcsI can still hold a meeting.00:37
ramineni_ekcs: ya, ok00:37
*** fnaval has joined #openstack-meeting00:37
ekcswell maybe let’s decide over ML later.00:38
ramineni_ekcs: sure,00:38
ekcsi’m leaning toward having a meeting. even if a couple people cant make it. do you have opinion?00:38
ramineni_ekcs: ya, you should hold the meeting , disucusing problems in person would be resolved faster :)00:39
ekcsOh you mean in person meeting.00:40
ekcsI meant IRC meeting.00:40
ramineni_ekcs: oh , :)00:40
ramineni_ekcs: im ok with that too00:40
*** fnaval_ has quit IRC00:40
ramineni_ekcs: if you guys are not tired at summit , then may be we can have00:41
ekcsok. well let’s decide later.00:41
ekcsanything else to talk about?00:41
ramineni_ekcs: no00:41
*** wanghao has joined #openstack-meeting00:43
ekcsalright. later then!00:43
ekcshave a great day.00:43
ramineni_ekcs: have a great week, bye00:43
*** thinrichs has joined #openstack-meeting00:43
ekcs#endmeeting00:44
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"00:44
openstackMeeting ended Thu May  4 00:44:35 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)00:44
openstackMinutes:        http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-05-04-00.02.html00:44
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-05-04-00.02.txt00:44
openstackLog:            http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-05-04-00.02.log.html00:44
*** tovin07_ has joined #openstack-meeting00:46
*** artom has quit IRC00:48
*** artom has joined #openstack-meeting00:49
*** artom has quit IRC00:50
*** artom has joined #openstack-meeting00:50
*** donghao has joined #openstack-meeting00:52
*** xingchao has joined #openstack-meeting00:54
*** donghao has quit IRC00:57
*** jkilpatr has quit IRC01:02
*** Julien-zte has joined #openstack-meeting01:03
*** sshank has joined #openstack-meeting01:04
*** ramineni_ has quit IRC01:05
*** zhhuabj has quit IRC01:06
*** aeng has quit IRC01:08
*** yangyapepeng has joined #openstack-meeting01:11
*** thinrichs has quit IRC01:11
*** yangyapepeng has quit IRC01:11
*** yolkfull__ has joined #openstack-meeting01:13
*** thorst has joined #openstack-meeting01:15
*** david-lyle has joined #openstack-meeting01:16
*** zhurong has quit IRC01:16
*** jamesmca_ has joined #openstack-meeting01:18
*** zhhuabj has joined #openstack-meeting01:19
*** yangyapeng has joined #openstack-meeting01:21
*** Apoorva__ has quit IRC01:21
*** aeng has joined #openstack-meeting01:22
*** timburke has left #openstack-meeting01:22
*** gcb has joined #openstack-meeting01:23
*** kaisers_ has joined #openstack-meeting01:25
*** zhurong has joined #openstack-meeting01:27
*** jamesmca_ has quit IRC01:27
*** jamesmca_ has joined #openstack-meeting01:27
*** kaisers has quit IRC01:29
*** s3wong has quit IRC01:30
*** yamamoto has joined #openstack-meeting01:31
*** david-lyle has quit IRC01:34
*** yamamoto has quit IRC01:35
*** jamesmca_ has quit IRC01:35
*** litao has joined #openstack-meeting01:41
*** dmacpher has quit IRC01:43
*** ijw has joined #openstack-meeting01:49
*** ijw has quit IRC01:54
*** wanghao has quit IRC01:59
zhenguo#startmeeting mogan02:01
openstackMeeting started Thu May  4 02:01:21 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:01
*** openstack changes topic to " (Meeting topic: mogan)"02:01
openstackThe meeting name has been set to 'mogan'02:01
*** unicell has quit IRC02:01
zhenguoanybody here?02:02
*** wanghao has joined #openstack-meeting02:02
litaoyes02:03
*** mriedem has quit IRC02:03
zhenguolitao: o/02:03
*** tonytan4ever has joined #openstack-meeting02:04
zhenguolet's wait for a few02:04
luyaoo/02:04
*** VW has quit IRC02:04
*** cloudrancher has quit IRC02:05
zhenguoluyao: o/02:05
*** VW has joined #openstack-meeting02:05
zhenguoliusheng: are you around?02:05
*** salv-orlando has joined #openstack-meeting02:05
*** fnaval_ has joined #openstack-meeting02:05
liushengo/02:05
*** cloudrancher has joined #openstack-meeting02:06
liushengzhenguo: sorry, just forgot :D02:06
zhenguoliusheng: hah02:06
zhenguook as always, the agenda:02:06
zhenguo#link https://wiki.openstack.org/wiki/Meetings/Mogan#Agenda_for_next_meeting02:06
zhenguolet's jump in02:06
zhenguo#topic announcements and reminders02:06
*** openstack changes topic to "announcements and reminders (Meeting topic: mogan)"02:06
zhenguoOur devstack local.conf in dev-quickstart doc will lead errors as there is a bug with ironic devstack plugin if you disable nova*02:07
zhenguo#link https://review.openstack.org/#/c/452413/02:07
patchbotpatch 452413 - ironic - Avoid double ".img" postfix of image file path in ...02:07
zhenguoliusheng: seems still no core review the patch :(02:07
zhenguothere's no any vote except my +1 and jenkins, hah02:08
liushengzhenguo: yes02:08
litaoI will vote it02:08
zhenguoAs it's stuck for a long time, I'd like to update our doc to remove disable nova* to make it work02:08
zhenguo#link https://review.openstack.org/#/c/462335/02:08
patchbotpatch 462335 - mogan - Update devstack config file to enable nova*02:08
*** fnaval has quit IRC02:08
zhenguolitao: hah, thanks!02:09
*** VW has quit IRC02:09
*** salv-orlando has quit IRC02:09
zhenguowe have replace all instances stuff to servers and also instance_types to flavors, thanks liusheng for the hard work!02:10
liushengzhenguo: np :)02:11
zhenguoso we don't have concepts of instances and instance_types in future02:11
litaogreat02:11
*** tonytan_brb has joined #openstack-meeting02:11
zhenguook, not much announcement, anyone else have a thing here?02:12
zhenguoif not, let's move on02:12
*** jamesmca_ has joined #openstack-meeting02:13
litaozhenguo: I am absent for a moments for a internal meeting02:13
zhenguo#topic task tracking02:13
*** openstack changes topic to "task tracking (Meeting topic: mogan)"02:13
*** tonytan4ever has quit IRC02:13
zhenguolitao: ok02:13
luyaoI will go to Suzhou bug smash  . : D02:13
zhenguoluyao: hah02:13
*** yolkfull has joined #openstack-meeting02:13
zhenguoluyao: finally02:13
zhenguoso, we will have 7 techs confimed to go to SuZhou Bug Smash02:14
zhenguonot sure one table is enough for us, lol02:15
*** yolkfull_ has joined #openstack-meeting02:15
liushenglol02:15
luyaoDo I need register on the bug smash  etherpad?02:15
zhenguoluyao: yes02:15
zhenguo#link https://etherpad.openstack.org/p/OpenStack-Bug-Smash-Pike-Suzhou02:15
luyaozhenguo, ok, thank you. :D02:16
zhenguoluyao: np02:16
zhenguolooking forward to see you guys there02:16
*** yolkfull__ has quit IRC02:16
zhenguook, let's talk about the tasks02:17
zhenguo#link https://etherpad.openstack.org/p/mogan-task02:17
*** yolkfull__ has joined #openstack-meeting02:17
zhenguolooks like things are moving along nicely02:17
* zhenguo gives folks a few minutes to review02:17
*** yolkfull has quit IRC02:18
*** caowei has joined #openstack-meeting02:18
*** yolkfull_ has quit IRC02:19
liushengseems we have a good progress :D02:20
zhenguoliusheng: hah, yes02:20
zhenguothe new flavor task is stuck these days02:21
zhenguoas I'm trying to make our flavor access work02:21
zhenguoand we don't have policy check before02:22
liushengthanks zhenguo for taking over so many tasks02:23
zhenguoliusheng: but they are all stuck, lol02:23
*** yolkfull__ has quit IRC02:23
*** yolkfull__ has joined #openstack-meeting02:23
liushengzhenguo: lol02:24
* zhenguo need to make more time02:24
luyaozhenguo, Xinran's detach_interface and my attach_interface are almost ready, we have tested their function, need more review now.02:25
zhenguoluyao, Xinran: thanks for the hard work02:25
zhenguoluyao, Xinran: I don't got time to look though all the code, but seems it's good to me02:25
zhenguowill review and test later, thanks02:26
luyaook, thanks02:27
zhenguonp02:27
liushengthanks luyao, Xinran will review later02:27
*** vishnoianil has quit IRC02:27
zhenguowanghao is in a internal meeting, I can paste his tasks status here02:27
zhenguohe is now working on the manage baremetal serve spec02:27
zhenguoand will add specifying port support for creating server after summit02:28
zhenguohah, he is the only mogan guy, who will got to Boston Summit,02:28
* zhenguo envy him02:28
liushenghah02:29
zhenguoliusheng: I have tested the nics refactor patch, works well02:30
liushengzhenguo: thanks02:30
zhenguoand the migration tool, I will make sure to test it by this week, sorry for the late02:30
liushengzhenguo: not urgent, thanks for take care that02:31
zhenguoliusheng: hah, and seems it will not conflict with anything :D02:32
liushengzhenguo: yeah, I have handled the conflicts02:32
zhenguohah, ok02:33
zhenguoanyone else have a thing here?02:33
*** zhurong has quit IRC02:34
zhenguozhangyang: do you have anyting to align with us?02:34
shaohe_fengzhenguo: morning02:34
zhenguoshaohe_feng: o/02:34
*** ricolin has joined #openstack-meeting02:35
zhangyangzhenguo: nothing now, working on cloudboot driver now 😂02:36
*** yamamoto has joined #openstack-meeting02:36
zhenguozhangyang: hah, good luck02:36
zhenguook, anything else?02:36
*** zhurong has joined #openstack-meeting02:37
zhenguoif not, let's move on02:37
zhenguo#topic open discussion02:37
*** openstack changes topic to "open discussion (Meeting topic: mogan)"02:37
zhenguowho's got a thing :)02:37
*** epico has joined #openstack-meeting02:38
zhenguoif not, we can end the meeing now, hah02:39
liushengseems nothing else :D02:39
*** caowei has quit IRC02:39
zhenguohah, thanks y'all02:39
zhenguosee you next week02:39
zhenguo#endmeeting02:39
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"02:39
openstackMeeting ended Thu May  4 02:39:56 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)02:39
openstackMinutes:        http://eavesdrop.openstack.org/meetings/mogan/2017/mogan.2017-05-04-02.01.html02:39
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/mogan/2017/mogan.2017-05-04-02.01.txt02:40
openstackLog:            http://eavesdrop.openstack.org/meetings/mogan/2017/mogan.2017-05-04-02.01.log.html02:40
*** markvoelker has quit IRC02:40
*** thorst has quit IRC02:41
*** jamesmca_ has quit IRC02:43
*** jamesmca_ has joined #openstack-meeting02:44
*** caowei has joined #openstack-meeting02:45
*** yamamoto has quit IRC02:46
*** david-lyle has joined #openstack-meeting02:53
*** hongbin has joined #openstack-meeting02:53
*** zhhuabj has quit IRC02:56
*** jamesmca_ has quit IRC03:00
*** asselin_ has joined #openstack-meeting03:02
*** tonytan4ever has joined #openstack-meeting03:03
*** unicell has joined #openstack-meeting03:04
*** markstur has joined #openstack-meeting03:04
*** manjeets__ has joined #openstack-meeting03:04
*** llu_ has joined #openstack-meeting03:04
*** dimtruck is now known as zz_dimtruck03:05
*** iceyao_ has joined #openstack-meeting03:05
*** salv-orlando has joined #openstack-meeting03:06
*** slagle__ has joined #openstack-meeting03:07
*** jgrassler has joined #openstack-meeting03:07
*** markstur has quit IRC03:09
*** homerp_ has joined #openstack-meeting03:10
*** wanghao_ has joined #openstack-meeting03:10
*** irenab_ has joined #openstack-meeting03:10
*** kbyrne_ has joined #openstack-meeting03:10
*** salv-orlando has quit IRC03:11
*** tonytan_brb has quit IRC03:11
*** iceyao has quit IRC03:11
*** tdasilva- has quit IRC03:11
*** slagle has quit IRC03:11
*** rodrigod` has quit IRC03:11
*** irenab has quit IRC03:11
*** nibalizer has quit IRC03:11
*** jgrassle1 has quit IRC03:11
*** blairo has quit IRC03:11
*** llu has quit IRC03:11
*** ykatabam has quit IRC03:11
*** leanderthal|afk has quit IRC03:11
*** jaypipes has quit IRC03:11
*** homerp has quit IRC03:11
*** ankur-gupta-f4 has quit IRC03:11
*** Kevin_Zheng has quit IRC03:11
*** portdirect has quit IRC03:11
*** manjeets has quit IRC03:11
*** kbyrne has quit IRC03:11
*** mdavidson has quit IRC03:11
*** asselin has quit IRC03:11
*** irenab_ is now known as irenab03:11
*** kbyrne_ is now known as kbyrne03:11
*** llu_ is now known as llu03:11
*** rodrigods has joined #openstack-meeting03:11
*** wanghao has quit IRC03:11
*** knangia has joined #openstack-meeting03:12
*** zhhuabj has joined #openstack-meeting03:15
*** tovin07_ has quit IRC03:16
*** tovin07_ has joined #openstack-meeting03:17
*** leanderthal|afk has joined #openstack-meeting03:18
*** mdavidson has joined #openstack-meeting03:18
*** nibalizer has joined #openstack-meeting03:19
*** jaypipes has joined #openstack-meeting03:19
*** jaypipes has quit IRC03:19
*** ykatabam has joined #openstack-meeting03:21
*** tdasilva has joined #openstack-meeting03:23
*** Kevin_Zheng has joined #openstack-meeting03:24
*** Julien-zte has quit IRC03:24
*** ramineni_ has joined #openstack-meeting03:24
*** Julien-zte has joined #openstack-meeting03:24
*** blair has joined #openstack-meeting03:28
*** epico has quit IRC03:30
*** armax has joined #openstack-meeting03:31
*** gongysh has joined #openstack-meeting03:32
*** wanghao_ has quit IRC03:36
*** thorst has joined #openstack-meeting03:41
*** wanghao has joined #openstack-meeting03:42
*** epico has joined #openstack-meeting03:43
*** markvoelker has joined #openstack-meeting03:44
*** thorst has quit IRC03:45
*** markstur has joined #openstack-meeting03:46
*** mickeys has quit IRC03:46
*** wanghao has quit IRC03:48
*** wanghao has joined #openstack-meeting03:49
*** ekcs has quit IRC03:49
*** markstur has quit IRC03:50
*** markstur has joined #openstack-meeting03:51
*** fnaval has joined #openstack-meeting03:52
*** wanghao has quit IRC03:53
*** ekcs has joined #openstack-meeting03:55
*** ekcs has left #openstack-meeting03:55
*** fnaval_ has quit IRC03:55
*** ramineni_ has quit IRC03:56
*** jamesmca_ has joined #openstack-meeting03:56
*** gouthamr has quit IRC03:58
*** Julien-zte has quit IRC03:58
*** iceyao_ has quit IRC03:59
*** armax has quit IRC03:59
*** Julien-zte has joined #openstack-meeting04:00
*** jamesmca_ has quit IRC04:00
*** ykarel has joined #openstack-meeting04:03
*** mickeys has joined #openstack-meeting04:05
*** salv-orlando has joined #openstack-meeting04:07
*** sridharg has joined #openstack-meeting04:08
*** salv-orlando has quit IRC04:11
*** epico has quit IRC04:11
*** zhurong has quit IRC04:12
*** thorst has joined #openstack-meeting04:12
*** adisky_ has joined #openstack-meeting04:13
*** ykarel has quit IRC04:17
*** trinaths has joined #openstack-meeting04:17
*** ykarel has joined #openstack-meeting04:17
*** wanghao has joined #openstack-meeting04:21
*** tonytan4ever has quit IRC04:26
*** thorst has quit IRC04:30
*** epico has joined #openstack-meeting04:31
*** cebruns has quit IRC04:34
*** iyamahat has joined #openstack-meeting04:35
*** yamahata has quit IRC04:35
*** zhurong has joined #openstack-meeting04:36
*** Sukhdev has joined #openstack-meeting04:37
*** cebruns has joined #openstack-meeting04:39
*** iyamahat has quit IRC04:41
*** slaweq has quit IRC04:46
*** ayogi has joined #openstack-meeting04:47
*** salv-orlando has joined #openstack-meeting04:52
*** sshank has quit IRC04:52
*** hongbin has quit IRC04:56
*** iceyao has joined #openstack-meeting04:56
*** caowei has quit IRC05:02
*** unicell1 has joined #openstack-meeting05:02
*** iceyao has quit IRC05:03
*** unicell has quit IRC05:05
*** Sukhdev has quit IRC05:05
*** mickeys has quit IRC05:07
*** sshank has joined #openstack-meeting05:07
*** anilvenkata has joined #openstack-meeting05:08
*** ayoung has quit IRC05:10
*** sshank has quit IRC05:10
*** baoli has quit IRC05:12
*** portdirect has joined #openstack-meeting05:13
*** ankur-gupta-f4 has joined #openstack-meeting05:13
*** Julien-zte has quit IRC05:15
*** Julien-zte has joined #openstack-meeting05:16
*** prateek has joined #openstack-meeting05:16
*** epico has quit IRC05:17
*** yamamoto has joined #openstack-meeting05:18
*** links has joined #openstack-meeting05:18
*** yamamoto has quit IRC05:21
*** clayg has quit IRC05:22
*** ayoung has joined #openstack-meeting05:25
*** wanghao has quit IRC05:25
*** wanghao has joined #openstack-meeting05:26
*** vishnoianil has joined #openstack-meeting05:35
*** janki has joined #openstack-meeting05:40
*** Dinesh_Bhor has quit IRC05:41
*** Dinesh_Bhor has joined #openstack-meeting05:41
*** fnaval has quit IRC05:42
*** ykarel_ has joined #openstack-meeting05:43
*** Dinesh_Bhor has quit IRC05:43
*** irenab has left #openstack-meeting05:44
*** tobberydberg has joined #openstack-meeting05:44
*** epico has joined #openstack-meeting05:45
*** ykarel has quit IRC05:45
*** epico has quit IRC05:46
*** Dinesh_Bhor has joined #openstack-meeting05:48
*** epico has joined #openstack-meeting05:48
*** ykarel_ has quit IRC05:52
*** ykarel_ has joined #openstack-meeting05:53
*** donghao has joined #openstack-meeting05:58
*** caowei has joined #openstack-meeting06:00
*** donghao has quit IRC06:02
*** salv-orlando has quit IRC06:04
*** amotoki has joined #openstack-meeting06:05
*** wanghao_ has joined #openstack-meeting06:05
*** tobberydberg has quit IRC06:07
*** wanghao has quit IRC06:07
*** mickeys has joined #openstack-meeting06:08
*** iceyao has joined #openstack-meeting06:10
*** mickeys has quit IRC06:12
*** jprovazn has joined #openstack-meeting06:12
*** wanghao_ has quit IRC06:12
*** msimonin has quit IRC06:14
*** wanghao has joined #openstack-meeting06:15
*** trinaths has quit IRC06:18
*** epico has quit IRC06:18
*** tobberydberg has joined #openstack-meeting06:19
*** brault has quit IRC06:19
*** yamamoto has joined #openstack-meeting06:21
*** trinaths has joined #openstack-meeting06:23
*** yamamoto has quit IRC06:26
*** yamamoto has joined #openstack-meeting06:26
*** ramineni_ has joined #openstack-meeting06:27
*** thorst has joined #openstack-meeting06:27
*** yamamoto has quit IRC06:28
*** andreas_s has joined #openstack-meeting06:28
*** epico has joined #openstack-meeting06:29
*** thorst has quit IRC06:32
*** ltomasbo|away is now known as ltomasbo06:37
*** ykatabam has quit IRC06:38
*** pcaruana has joined #openstack-meeting06:45
*** slaweq has joined #openstack-meeting06:47
*** matrohon has joined #openstack-meeting06:51
*** slaweq has quit IRC06:52
*** e0ne has joined #openstack-meeting06:52
*** adiantum has joined #openstack-meeting06:55
*** adiantum has quit IRC06:55
*** adiantum has joined #openstack-meeting06:56
*** adiantum has quit IRC06:56
*** yamamoto has joined #openstack-meeting06:59
*** Julien-zte has quit IRC07:05
*** Julien-zte has joined #openstack-meeting07:05
*** mickeys has joined #openstack-meeting07:09
*** yamamoto has quit IRC07:09
*** tobberydberg has quit IRC07:09
*** tobberydberg has joined #openstack-meeting07:09
*** iceyao has quit IRC07:11
*** tobberydberg has quit IRC07:11
*** tobberydberg has joined #openstack-meeting07:11
*** mickeys has quit IRC07:13
*** tobberydberg has quit IRC07:14
*** tobberydberg has joined #openstack-meeting07:14
*** iceyao has joined #openstack-meeting07:15
*** tobberydberg has quit IRC07:16
*** tobberydberg has joined #openstack-meeting07:16
*** ralonsoh has joined #openstack-meeting07:17
*** tobberydberg has quit IRC07:19
*** ijw has joined #openstack-meeting07:19
ianychoihi07:20
*** iceyao has quit IRC07:20
*** msimonin has joined #openstack-meeting07:20
*** iceyao has joined #openstack-meeting07:24
*** aarefiev_afk is now known as aarefiev07:24
*** ijw has quit IRC07:24
*** salv-orlando has joined #openstack-meeting07:24
amotokii thought there is no meeting....07:27
ianychoiamotoki, yep it seems that members are busy..07:28
*** thorst has joined #openstack-meeting07:28
*** wanghao has quit IRC07:28
amotokii have one thing to discuss, but it can be done in #-i18n channel07:29
ianychoilet's open :) wait a second..07:29
*** tesseract has joined #openstack-meeting07:29
ianychoi#startmeeting OpenStack I18n Meeting07:30
openstackMeeting started Thu May  4 07:30:19 2017 UTC and is due to finish in 60 minutes.  The chair is ianychoi. Information about MeetBot at http://wiki.debian.org/MeetBot.07:30
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.07:30
*** openstack changes topic to " (Meeting topic: OpenStack I18n Meeting)"07:30
openstackThe meeting name has been set to 'openstack_i18n_meeting'07:30
*** mickeys has joined #openstack-meeting07:30
ianychoiamotoki, I have opened :) Which topic?07:31
amotokiI'd like to clarify the goal of py3 stuff07:31
ianychoiAha okay07:31
*** ramineni_ has quit IRC07:31
ianychoi#topic py3 goal in i18n repo07:31
*** openstack changes topic to "py3 goal in i18n repo (Meeting topic: OpenStack I18n Meeting)"07:31
amotokias I said in past meetings, our scripts already supports python3 but no more coverage can be done without UTs.07:32
amotokiso I wonder where we can have importable python code.07:32
*** thorst has quit IRC07:33
ianychoiQuestion: what are importable python codes?07:33
*** msimonin has quit IRC07:33
ianychoiSome common codes in Python?07:33
amotokifor example, if we test tools/zanata/zanata_stats.py, it needs to be importable07:34
amotokiit needs to be placed somewhere with __init__.py07:35
*** taowuwen has joined #openstack-meeting07:35
amotokilike https://review.openstack.org/#/c/448598/07:35
patchbotpatch 448598 - i18n - Move python files into importable path (ABANDONED)07:35
ianychoiAha.. a kind of writing functions in one class?07:35
ianychoiI see07:36
amotokiI wrote some unit tests on top of the above review, but I cannot find them now in my local env.07:37
amotokiperhaps I lost them when I recreated my VM07:37
ianychoiHaha.. that's too bad.07:37
*** markstur has quit IRC07:38
amotokiwhich do you prefer i18n or i18n-tools for python scripts?07:38
ianychoiI originally thought that it would be so nice if we have like i18n-tools as a pip package similar with openstack-doc-tools: http://git.openstack.org/cgit/openstack/openstack-doc-tools/tree/07:39
amotokiIMHO we don't need to release them, so either works to me07:39
ianychoiI agree. I18n team does not have many members..07:40
*** ramineni_ has joined #openstack-meeting07:40
amotokiunless some CI or automated job use it, there is no need to release them.07:40
ianychoiSeveral thinkings also block from my idea. previously, I asked to Zanata team - aeng whether Zanata API has versioned docs or not07:41
amotokiyou mean Zanata API reference published as a web page?07:42
ianychoi#link https://zanata.atlassian.net/browse/ZNTA-184307:42
ianychoiCurrently, Zanata API publishes up-to-date API information, but we need to also check API versions - for example, some APIs supported in Zanata 3.7.3 and/or other APIs only supported in Zanata 3.9.607:43
*** adiantum has joined #openstack-meeting07:43
ianychoiThen I thought that i18n-tools would specify Zanata API version07:43
ianychoiIt seems that it would be a too long-term goal..:)07:44
ianychoiadiantum, hi! will you come to Boston?07:44
amotokiit can be handled inside our script though07:44
amotokiyes, will be there07:44
adiantumianychoi: hi! unfortunatelly no07:44
adiantumhi all!07:45
ianychoiamotoki, I prefer i18n-tools :) Then I can propose glossary as i18n-glossary07:45
amotokiianychoi: do you mean a separate repo or a directory path?07:45
ianychoiadiantum, oh that's too bad.. I miss you. Will other language coordinators or Russian translators come to Boston?07:45
adiantumand i’ve asked coordinators of russian team, looks like no one can attend =(07:46
ianychoiamotoki, let's do just in openstack/i18n one repository if it would not be too complex07:46
adiantumianychoi: is it possible to organize online session>07:46
adiantum?07:46
ianychoiadiantum, yep.. I think so. I might need to find reservasable rooms after arriving at Boston, but I think next IRC meeting time would fit all: http://lists.openstack.org/pipermail/openstack-i18n/2017-May/002899.html07:47
adiantumianychoi: great, please let me know if i can join online  =)07:48
amotokiianychoi: regarding the other topic, i agree a single repo 'i18n'07:49
adiantumianychoi: and i’ll share to russian team07:49
ianychoiadiantum, it just depends on how many members reply with the mailing list :) If you are fine with Thursday 13:00 UTC on the next week, please ask to Russian members.07:50
ianychoiamotoki, +1 for i18n-specs, I would like to keep it since it was already created07:51
amotokiianychoi: sounds good07:51
ianychoiamotoki, except this, let's use a single repo: i18n07:51
*** lpetrut has joined #openstack-meeting07:51
amotokiianychoi: I can write a small spec on how we organize the i18n repo :)07:52
*** ykatabam has joined #openstack-meeting07:52
*** toscalix has joined #openstack-meeting07:52
amotokijust for testing the i18n-spec repo :)07:52
adiantumianychoi: look like it works for me. i’ll ask team07:52
ianychoiamotoki, thanks a lot - great!07:52
ianychoi#info I18n team prefers to use openstack/i18n single repository except i18n-specs07:53
ianychoi#topic open discussions07:53
*** openstack changes topic to "open discussions (Meeting topic: OpenStack I18n Meeting)"07:53
ianychoiI've got a new job and I am settling with the new job - it would not be related with OpenStack unfortunately07:54
ianychoiSo my actions might be slower but I will keep being online in IRC :)07:55
amotokiianychoi: hope your new future anyway!07:55
ianychoiFor Stackalytics and other things, I already asked to my colleague but unfortunately he is also getting more busy.07:55
ianychoiamotoki, thank you :)07:55
*** martinkopec has joined #openstack-meeting07:56
ianychoi#link https://www.openstack.org/summit/boston-2017/summit-schedule/events/18761/should-we-kill-stackalytics07:56
ianychoiI will go there and listen some perspectives :)07:57
*** ad_rien_ has joined #openstack-meeting07:57
-amotoki- haven't checked the summit schedule well :(07:58
ianychoiamotoki, see you at Boston - I know that you are also busy but let's try to see each other07:59
amotokiianychoi: see you then. I try my best!07:59
ianychoiadiantum, hope to see virtually on the next IRC meeting!07:59
ianychoiThanks you all!07:59
amotokithank you07:59
ianychoi#endmeeting07:59
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"07:59
openstackMeeting ended Thu May  4 07:59:44 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)07:59
openstackMinutes:        http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2017/openstack_i18n_meeting.2017-05-04-07.30.html07:59
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2017/openstack_i18n_meeting.2017-05-04-07.30.txt07:59
openstackLog:            http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2017/openstack_i18n_meeting.2017-05-04-07.30.log.html07:59
adiantumianychoi: i hope too =)07:59
adiantumThanks all!08:00
*** donghao has joined #openstack-meeting08:00
*** msimonin has joined #openstack-meeting08:05
*** donghao has quit IRC08:05
*** Julien-zte has quit IRC08:11
*** Julien-zte has joined #openstack-meeting08:12
*** gcb has quit IRC08:12
*** rossella_s has joined #openstack-meeting08:13
*** adiantum has quit IRC08:17
*** brault has joined #openstack-meeting08:24
*** e0ne has quit IRC08:24
*** mickeys has quit IRC08:25
*** trinaths has quit IRC08:25
*** ricolin_ has joined #openstack-meeting08:27
*** ricolin has quit IRC08:27
*** thorst has joined #openstack-meeting08:29
*** markstur has joined #openstack-meeting08:30
*** markstur has quit IRC08:34
*** tobberydberg has joined #openstack-meeting08:41
*** knangia has quit IRC08:43
*** knangia has joined #openstack-meeting08:43
*** adreznec has quit IRC08:45
*** adreznec has joined #openstack-meeting08:47
*** slaweq has joined #openstack-meeting08:48
*** thorst has quit IRC08:49
*** ramineni_ has quit IRC08:49
*** gcb has joined #openstack-meeting08:50
*** cgoncalv1s is now known as cgoncalves08:51
*** slaweq has quit IRC08:53
*** wanghao has joined #openstack-meeting08:55
*** salv-orl_ has joined #openstack-meeting08:56
*** blancos has joined #openstack-meeting08:56
*** Cibo_ has joined #openstack-meeting08:57
*** salv-orlando has quit IRC08:59
*** ltosky[m] has joined #openstack-meeting08:59
*** taowuwen_ has joined #openstack-meeting09:00
*** sridharg has quit IRC09:00
*** taowuwen_ has quit IRC09:00
andreaf#startmeeting qa09:00
openstackMeeting started Thu May  4 09:00:47 2017 UTC and is due to finish in 60 minutes.  The chair is andreaf. Information about MeetBot at http://wiki.debian.org/MeetBot.09:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.09:00
*** openstack changes topic to " (Meeting topic: qa)"09:00
openstackThe meeting name has been set to 'qa'09:00
*** epico has quit IRC09:00
andreafHello who's here today?09:01
blancoso/09:01
andreaf#link https://wiki.openstack.org/wiki/Meetings/QATeamMeeting#Agenda_for_May_3rd_2017_.280900_UTC.29 Today's agenda09:01
*** ramineni_ has joined #openstack-meeting09:02
andreafok let's wait one more minute to see if someone else joins09:02
*** taowuwen has quit IRC09:02
andreafotherwise we can have a short meeting :)09:02
*** yangyapeng has quit IRC09:03
ltosky[m]o/09:03
andreafhello blancos / ltosky[m] - it seems it's only the three of us today, so I would skip the standard agenda and go straight to any topic you may need to discuss09:04
andreaf#topic Open Discussion09:04
*** openstack changes topic to "Open Discussion (Meeting topic: qa)"09:04
chandankumar\o/09:05
andreafltosky[m], blancos: will you guys be in Boston next week?09:05
blancosandreaf I will.09:05
ltosky[m]the only topic I had was the heat client, but that probably requires more people09:05
ltosky[m]no09:05
andreafhello chandankumar09:06
*** zhurong has quit IRC09:06
andreafI skipped the agenda since it's only few of us in the meeting09:06
andreafltosky[m]: sorry you won't be there09:06
chandankumarandreaf: i am not able to make it this time, but will try to make sure at next ptg09:06
andreafchandankumar: looking forward to see you in Denver then :)09:07
andreaf#topic Heat client09:07
*** openstack changes topic to "Heat client (Meeting topic: qa)"09:07
andreafltosky[m] regarding the Heat client - mtreinish votes to keep it in tempest, I vote to keep it in heat - either case we won't get rid of it09:08
andreafltosky[m]: would it make a difference from your pov?09:08
ltosky[m]that's good09:08
ltosky[m]if it's stable and alive, no09:09
andreafltosky[m]: ok - we shall come to a conclusion latest next week09:09
ltosky[m]yep, thanks09:09
andreafltosky[m]: ok09:09
andreaf#topic bug triage09:10
*** openstack changes topic to "bug triage (Meeting topic: qa)"09:10
andreafchandankumar: anything to report on the bug triage this week?09:10
andreafbtw we have no volunteer for next two weeks - next week is the summit so that may be ok09:11
andreafI'll sign myself up for the week after the summit09:11
*** raissa has joined #openstack-meeting09:11
andreafbut it would be good to have more volunteers for the following weeks09:11
andreafchandankumar: are you still there?09:12
*** tosky has joined #openstack-meeting09:12
andreaf#topic Patrole09:12
*** openstack changes topic to "Patrole (Meeting topic: qa)"09:12
andreafblancos: anything to discuss on Patrole?09:13
blancosandreaf We removed Heat support and are talking to Heat about maybe moving the tests to their repo instead.09:13
andreafFelipe wanted to chat about Heat - but I missed him, I was away I couple of days09:13
andreafblancos: ah ok you did that already :)09:14
andreafblancos: yeah I think it  would be great to have to tests in the heat plugin09:14
andreafblancos: thanks for that09:14
andreaf#topic Open Discussion09:15
*** openstack changes topic to "Open Discussion (Meeting topic: qa)"09:15
andreafblancos, ltosky[m], chandankumar: anything else?09:15
blancosAlso, I believe we're planning on cutting a 1.0 sometime soon, unless there's a reason we should wait09:15
andreaf3...09:15
andreaf2..09:15
andreaf1.09:15
*** zhurong has joined #openstack-meeting09:15
*** yamamoto has joined #openstack-meeting09:15
andreafblancos: ok09:15
ltosky[m]nothing from.me09:16
andreafblancos: yeah that would be nice so folks from other teams can consume the shared bits09:16
andreafblancos: do you have any stable interface yet?09:16
blancosandreaf We haven't made a lib directory like in Tempest, if that's what you mean09:17
andreafblancos: I mean interfaces that you documented as stable, so that you won't change without a deprecation cycle09:18
*** epico has joined #openstack-meeting09:18
andreafblancos: it doesn't have to be a lib folder09:18
andreafblancos: just curious09:18
blancosandreaf I don't believe we've done so as of yet09:18
andreafif Patrole is going on pypy with a 1.0 version I think it would be good to document which interfaces people can rely on09:19
*** yamamoto has quit IRC09:19
andreafso that when people start to use it their code will continue working across releases09:19
blancosandreaf Okay, we'll be sure to do that. Thank you for the suggestion.09:20
andreafI guess that would be nice to have - at least a documentation that the interfaces are not stable yet or so09:20
andreafok thanks for joining today09:22
andreafnext week there will be no meeting because of the summit09:22
andreafso see you here in two weeks at 10:00 UTC09:22
andreaf#endmeeting qa09:22
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"09:22
openstackMeeting ended Thu May  4 09:22:56 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)09:22
openstackMinutes:        http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-05-04-09.00.html09:22
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-05-04-09.00.txt09:23
openstackLog:            http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-05-04-09.00.log.html09:23
*** tosky has left #openstack-meeting09:23
*** markvoelker has quit IRC09:25
*** mickeys has joined #openstack-meeting09:26
*** Cibo_ has quit IRC09:26
*** blancos has quit IRC09:26
*** taowuwen_ has joined #openstack-meeting09:27
*** ltosky[m] has left #openstack-meeting09:29
*** e0ne has joined #openstack-meeting09:31
*** mickeys has quit IRC09:31
*** msimonin has quit IRC09:34
*** iceyao has quit IRC09:36
*** aweeks has quit IRC09:38
*** aweeks has joined #openstack-meeting09:38
*** vishnoianil has quit IRC09:38
*** vishnoianil has joined #openstack-meeting09:39
*** lpetrut_ has joined #openstack-meeting09:41
*** xingchao has quit IRC09:41
*** lpetrut has quit IRC09:41
*** lpetrut_ has quit IRC09:42
*** lpetrut_ has joined #openstack-meeting09:42
*** links has quit IRC09:45
*** Julien-zte has quit IRC09:56
*** Julien-zte has joined #openstack-meeting09:57
*** wanghao has quit IRC09:58
*** msimonin has joined #openstack-meeting10:00
*** jamesmca_ has joined #openstack-meeting10:01
*** Julien-zte has quit IRC10:01
*** Julien-zte has joined #openstack-meeting10:02
*** iceyao has joined #openstack-meeting10:02
*** wanghao has joined #openstack-meeting10:03
*** tovin07_ has quit IRC10:04
*** jamesmca_ has quit IRC10:05
*** coreycb has quit IRC10:06
*** iceyao has quit IRC10:06
*** coreycb has joined #openstack-meeting10:07
*** wanghao has quit IRC10:07
*** zhurong has quit IRC10:07
*** iceyao has joined #openstack-meeting10:10
*** xingchao has joined #openstack-meeting10:10
*** sdague has joined #openstack-meeting10:11
*** Julien-zte has quit IRC10:16
*** Julien-zte has joined #openstack-meeting10:16
*** adisky_ has quit IRC10:19
*** adisky_ has joined #openstack-meeting10:19
*** guoshan has joined #openstack-meeting10:20
*** zhangyang has quit IRC10:20
*** rossella_s has quit IRC10:20
*** rossella_s has joined #openstack-meeting10:21
*** vishnoianil has quit IRC10:23
*** zhurong has joined #openstack-meeting10:24
*** vishnoianil has joined #openstack-meeting10:24
*** ankur-gupta-f4 has quit IRC10:25
*** ankur-gupta-f4 has joined #openstack-meeting10:26
*** markvoelker has joined #openstack-meeting10:26
*** guoshan has quit IRC10:26
*** rossella_s has quit IRC10:26
*** mickeys has joined #openstack-meeting10:28
*** gongysh has quit IRC10:30
*** mickeys has quit IRC10:33
*** markvoelker has quit IRC10:33
*** rossella_s has joined #openstack-meeting10:39
*** dmacpher has joined #openstack-meeting10:40
*** vishnoianil has quit IRC10:41
*** vishnoianil has joined #openstack-meeting10:42
*** alexchadin has joined #openstack-meeting10:44
*** Julien-zte has quit IRC10:45
*** thorst has joined #openstack-meeting10:46
*** wxy has quit IRC10:48
*** brault_ has joined #openstack-meeting10:48
*** wxy has joined #openstack-meeting10:48
*** mrhillsman has quit IRC10:48
*** mrhillsman has joined #openstack-meeting10:48
*** brault has quit IRC10:49
*** slaweq has joined #openstack-meeting10:49
*** thorst has quit IRC10:51
*** jkilpatr has joined #openstack-meeting10:53
*** slaweq has quit IRC10:53
*** salv-orl_ has quit IRC10:55
*** ijw has joined #openstack-meeting10:56
*** zhiyuan has quit IRC10:57
*** vishnoianil has quit IRC10:58
*** yolkfull__ has quit IRC10:58
*** vishnoianil has joined #openstack-meeting10:59
*** kojoyte has joined #openstack-meeting11:00
*** ijw has quit IRC11:01
kojoytehey quic question for native english speaker: What would be good words / short headings to describe 2 groups of people, people "working" and people "not working". Meaning that they do work and in a same company, but aren't working at the moment, having a break or at home or in holiday..  ? Please advice if you can! Thank you!11:03
*** epico has quit IRC11:04
*** wanghao has joined #openstack-meeting11:05
*** ociuhandu has joined #openstack-meeting11:12
*** pradk has joined #openstack-meeting11:13
*** fzdarsky has joined #openstack-meeting11:17
*** lamt has joined #openstack-meeting11:17
*** oidgar has joined #openstack-meeting11:19
*** lamt has quit IRC11:21
*** taowuwen_ has quit IRC11:25
*** rbowen has joined #openstack-meeting11:25
*** rbowen has quit IRC11:25
*** rbowen has joined #openstack-meeting11:25
*** mickeys has joined #openstack-meeting11:29
*** ramineni_ has quit IRC11:30
*** armstrong has joined #openstack-meeting11:32
*** armstrong has quit IRC11:33
*** thorst has joined #openstack-meeting11:33
*** mickeys has quit IRC11:33
*** vishnoianil has quit IRC11:38
*** vishnoianil has joined #openstack-meeting11:39
*** kojoyte has quit IRC11:44
*** raissa has left #openstack-meeting11:50
*** rossella_s has quit IRC11:53
*** fzdarsky has quit IRC11:54
*** salv-orlando has joined #openstack-meeting11:54
*** iyamahat has joined #openstack-meeting12:00
*** yamahata has joined #openstack-meeting12:04
*** iyamahat has quit IRC12:05
*** trinaths has joined #openstack-meeting12:17
*** pchavva has joined #openstack-meeting12:18
*** anilvenkata has quit IRC12:22
*** dprince has joined #openstack-meeting12:24
*** mickeys has joined #openstack-meeting12:30
*** zhurong has quit IRC12:30
*** lamt has joined #openstack-meeting12:32
*** mickeys has quit IRC12:34
*** ijw has joined #openstack-meeting12:36
*** Chengli has joined #openstack-meeting12:36
*** Chengli has left #openstack-meeting12:36
*** abalutoiu has joined #openstack-meeting12:38
*** eharney has joined #openstack-meeting12:38
*** dmacpher has quit IRC12:39
*** artom has quit IRC12:39
*** slagle__ is now known as slagle12:40
*** ijw has quit IRC12:41
*** abalutoiu has quit IRC12:41
*** fzdarsky has joined #openstack-meeting12:42
*** cebruns has quit IRC12:43
*** ayogi has quit IRC12:44
*** rossella_s has joined #openstack-meeting12:46
*** cebruns has joined #openstack-meeting12:50
*** slaweq has joined #openstack-meeting12:50
*** bobh has joined #openstack-meeting12:52
*** wanghao has quit IRC12:52
*** alexchadin has quit IRC12:54
*** RuiChen has left #openstack-meeting12:54
*** yamamoto has joined #openstack-meeting12:54
*** slaweq has quit IRC12:54
*** Julien-zte has joined #openstack-meeting12:55
*** brault has joined #openstack-meeting12:56
*** brault_ has quit IRC12:57
*** bobh has quit IRC12:58
*** thorst is now known as thorst_afk12:59
*** rbowen has quit IRC13:00
*** guoshan has joined #openstack-meeting13:00
*** Chengli has joined #openstack-meeting13:01
*** oidgar has quit IRC13:02
*** alexchadin has joined #openstack-meeting13:03
*** jamesdenton has joined #openstack-meeting13:13
*** dmacpher has joined #openstack-meeting13:14
*** iceyao_ has joined #openstack-meeting13:15
*** iceyao has quit IRC13:15
*** haleyb has joined #openstack-meeting13:15
*** Chengli has quit IRC13:19
*** bvandenh has joined #openstack-meeting13:20
*** rfolco has joined #openstack-meeting13:20
*** yamamoto has quit IRC13:22
*** ykatabam has quit IRC13:22
*** markvoelker has joined #openstack-meeting13:23
*** janki has quit IRC13:24
*** yamamoto has joined #openstack-meeting13:24
*** mriedem has joined #openstack-meeting13:24
*** mriedem has left #openstack-meeting13:25
*** mriedem has joined #openstack-meeting13:25
*** jrichli has left #openstack-meeting13:26
*** cloudrancher has quit IRC13:26
*** cloudrancher has joined #openstack-meeting13:27
*** imcsk8 has joined #openstack-meeting13:29
*** bobmel has quit IRC13:34
*** gouthamr has joined #openstack-meeting13:38
*** zhurong has joined #openstack-meeting13:41
*** esberglu has joined #openstack-meeting13:44
*** cloudrancher has quit IRC13:44
*** cloudrancher has joined #openstack-meeting13:45
*** xyang1 has joined #openstack-meeting13:49
*** zhurong_ has joined #openstack-meeting13:50
*** zhurong has quit IRC13:51
*** yamahata has quit IRC13:51
*** baoli has joined #openstack-meeting13:55
*** awaugama has joined #openstack-meeting13:55
*** bkopilov has quit IRC13:56
*** takashin has joined #openstack-meeting13:56
*** fnaval has joined #openstack-meeting13:58
*** ykatabam has joined #openstack-meeting13:59
*** jaypipes has joined #openstack-meeting14:00
mriedem#startmeeting nova14:00
openstackMeeting started Thu May  4 14:00:22 2017 UTC and is due to finish in 60 minutes.  The chair is mriedem. Information about MeetBot at http://wiki.debian.org/MeetBot.14:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.14:00
*** openstack changes topic to " (Meeting topic: nova)"14:00
openstackThe meeting name has been set to 'nova'14:00
*** sfinucan has joined #openstack-meeting14:00
edleafe\o14:00
efried /14:01
dansmitho/14:01
takashino/14:01
*** jaugustine has joined #openstack-meeting14:01
johnthetubaguyo/14:01
*** cdent has joined #openstack-meeting14:01
*** VW_ has joined #openstack-meeting14:01
sfinucano/14:01
cdento/14:02
bauzas\o14:02
*** jamesmca_ has joined #openstack-meeting14:02
mriedemwell i suppose we should get started14:02
mriedem#link agenda https://wiki.openstack.org/wiki/Meetings/Nova#Agenda_for_next_meeting14:02
mriedem#topic release news14:02
*** openstack changes topic to "release news (Meeting topic: nova)"14:02
mriedem#link Pike release schedule: https://wiki.openstack.org/wiki/Nova/Pike_Release_Schedule14:02
mriedem#info Next upcoming milestone: Jun 8: p-2 milestone14:03
*** oidgar has joined #openstack-meeting14:03
mriedemso basically 3-4 weeks until p-2,14:03
*** cleong has joined #openstack-meeting14:03
mriedemsince we'll probably consider next week a wash for any work14:03
mriedem#info Blueprints: 71 targeted, 66 approved, 9 completed, 7 not started14:03
mriedem#link pike-1 recap and pike-2 focus: http://lists.openstack.org/pipermail/openstack-dev/2017-April/115700.html14:04
mriedem#help There are still some approved blueprints looking for owners: http://lists.openstack.org/pipermail/openstack-dev/2017-April/115899.html14:04
mriedemi identified 3 orphan blueprints this morning14:04
mriedem1. https://blueprints.launchpad.net/nova/+spec/use-service-tokens-pike14:04
mriedem2. https://blueprints.launchpad.net/nova/+spec/live-migration-force-after-timeout14:04
mriedem3. https://blueprints.launchpad.net/nova/+spec/live-migration-per-instance-timeout14:04
mriedem2 of those have code already started14:04
mriedemthey all have specs i think14:04
mriedemso if you're interested in owning one please let me know14:05
johnthetubaguyyeah, the specs have most of the context for those14:05
efriedService tokens, if you don't get a better offer.14:05
jaypipeso/14:05
sfinucanmriedem: to play devils advocate14:05
mriedemefried: i'm just going ot assign that one to you14:05
sfinucanshould we really be encouraging people to take up those specs?14:05
* alex_xu_ waves late14:05
*** rbowen has joined #openstack-meeting14:05
sfinucangiven the drop in reviewer resources that OSIC going away has also incurred?14:06
mriedemsfinucan: drop in reviewer resources...14:06
mriedemsfinucan: john is the only core from osic right?14:06
mriedemhttp://stackalytics.com/report/contribution/nova/3014:06
mriedemand #4 in reviews14:06
cdentit's not just about core reviewer bandwidth, it's everybody reviewer bandwidth14:06
sfinucancore, yes, but it can't be just cores reviewing :)14:06
sfinucanYes, that ^14:06
*** brault has quit IRC14:06
*** ykatabam has quit IRC14:07
*** jamesmca_ has quit IRC14:07
sfinucanThere are a lot of specs. We might be better accepting that some of those OSIC specs aren't going to get done now and focus on what will14:07
mriedemsure,14:07
mriedemso maybe you guys understand now why i have to tell people we have a spec freeze after which point we don't accept more things14:07
mriedemthese were accepted before the spec freeze, and i'm told from time to time we have new contributors looking for work14:07
sfinucanLike efried above. Gotcha14:08
johnthetubaguyso the use-service-tokens one is a big deal14:08
mriedemif by p-2 there are blueprints that aren't started, then i'm probably going to drop them14:08
johnthetubaguythe live-migration ones are things operators would like, now progress monitoring has been proven not to work14:08
johnthetubaguythey have some utility, generally14:09
johnthetubaguyefried: the service token one was stuck behind a py3 related glanceclient bug14:09
mriedemright, so, right now those bps aren't taking up any reviewer time14:09
*** prateek has quit IRC14:09
efriedjohnthetubaguy Was or is?14:09
*** askb has quit IRC14:09
mriedemso if someone is looking to contribute and wants to dust them off and run with them, they can14:09
mriedemif no one does, then they get deferred14:10
*** sam____ has joined #openstack-meeting14:10
mriedemmeanwhile,14:10
*** alexchadin has quit IRC14:10
mriedemwe have lot of other work that needs to be done and has owners,14:10
johnthetubaguyefried: unsure, there was a patch proposed, not sure if its merged and released yet, given the big hit glance took, I guess thats a no14:10
mriedemso those get priority obviously14:10
johnthetubaguymriedem: +114:10
mriedembtw,14:10
mriedemmaybe this should be a kick in the ass to the core team to bump up the review count14:10
mriedembut let's move on14:11
mriedem#topic bugs14:11
*** openstack changes topic to "bugs (Meeting topic: nova)"14:11
jaypipesmriedem: trying my best, man :(14:11
mriedemjaypipes: i know - i'm not singling people out14:12
mriedem0 critical bugs reported14:12
dansmithhe's talking about me anyway :)14:12
mriedem#help Need help with bug triage; there are 85 new untriaged bugs as of today (May 4)14:12
*** zhurong_ has quit IRC14:12
mriedem#link check queue gate status http://status.openstack.org/elastic-recheck/index.html14:12
mriedemso as some are aware,14:12
*** armax has joined #openstack-meeting14:12
mriedemthe cells v1 job was failing at about a 50% rate up until yesterday14:12
mriedemwell, between 5/1 and yesterday14:12
mriedembecause of the systemd journal logging stuff,14:13
mriedemthat was disabled yesterday, so that job is passing again at a normal rate14:13
mriedemhttp://status.openstack.org/elastic-recheck/index.html#158072814:13
johnthetubaguythe job or the logging?14:13
mriedemthe job14:13
mriedemthe logging was disabled14:13
johnthetubaguyOK14:13
mriedemjohnthetubaguy: https://github.com/openstack-dev/devstack/commit/b2bfe5617ac43a678a9113d5c955f5456c151319 was the "fix"14:14
mriedemtemp workaround really14:14
mriedemmelwitt has a related fix up https://review.openstack.org/#/c/46191214:14
patchbotpatch 461912 - nova - Use six.text_type() when logging Instance object14:14
*** cloudrancher has quit IRC14:14
*** liuyulong has joined #openstack-meeting14:14
mriedem3rd party ci status,14:14
mriedemi don't really have anything here14:15
mriedemany questions/comments about bugs?14:15
*** cloudrancher has joined #openstack-meeting14:15
mriedem#topic reminders14:15
*** openstack changes topic to "reminders (Meeting topic: nova)"14:15
mriedem#link Pike Review Priorities etherpad: https://etherpad.openstack.org/p/pike-nova-priorities-tracking14:15
mriedemkeep ^ up to date for the latest changes that are ready for review14:15
mriedemi need to update that for cells v2 most likely14:16
mriedem#link Forum planning: https://wiki.openstack.org/wiki/Forum/Boston201714:16
mriedem#info Start creating etherpads for your sessions. There is an optional template: http://lists.openstack.org/pipermail/openstack-dev/2017-April/115972.html14:16
mriedemi plan on working on etherpads for the sessions i own today14:16
mriedemthe template with all of the hash tags and everything overwhelmed me though14:17
mriedem#link https://etherpad.openstack.org/p/BOS-Nova-brainstorming Forum discussion planning for nova (add your name if you are going)14:17
mriedem#info Forum sessions: https://www.openstack.org/summit/boston-2017/summit-schedule/global-search?t=forum14:17
mriedemany questions about the forum?14:17
mriedem#topic stable branch status14:17
*** openstack changes topic to "stable branch status (Meeting topic: nova)"14:17
mriedemstable/ocata: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/ocata,n,z14:17
mriedem#info release requests are up for ocata nova 15.0.4 and novaclient 7.1.114:17
mriedemstable/newton: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/newton,n,z14:18
mriedem#info release requests are up for newton nova 14.0.6 and novaclient 6.0.114:18
*** zz_dimtruck is now known as dimtruck14:18
bauzascool14:18
mriedemwith the stable ptl looking for work, any releases for the stable branch are sitting14:18
bauzasI'll review the above ^14:18
mriedemso if the red hat gang cares about stable releases, kindly bug apevec14:18
bauzas:p14:19
mriedem#topic subteam highlights14:19
*** openstack changes topic to "subteam highlights (Meeting topic: nova)"14:19
mriedemdansmith: cells v214:19
*** iyamahat has joined #openstack-meeting14:19
dansmithwe had a meeting,14:19
dansmithtalked about the journald bug,14:19
*** VW_ has quit IRC14:19
dansmithmy aggregate fix thing,14:19
dansmithand about ovo for too long14:19
dansmithand we hawk'd melwitt's quotas patch for the attendees14:20
*** VW has joined #openstack-meeting14:20
dansmithwhich were, uh, me and melwitt and mriedem14:20
mriedemheh, which was the 3 of us14:20
mriedem:)14:20
dansmithoh, we had a wild laski sighting14:20
mriedemoh yeah14:20
dansmiththat was cool14:20
dansmithalmost hit him with my truck14:20
dansmithanyway, that's it I think14:20
*** rossella_s has quit IRC14:20
* jaypipes still trying to get through melwitt's quotas series.14:20
mriedemedleafe: scheduler14:20
edleafeDiscussed the proposed placement-manage patch to sync os-traits with the placement DB (https://review.openstack.org/450125). Agreed to discuss further on the review.14:20
patchbotpatch 450125 - nova - Add sync traits command for placement14:20
jaypipesslow sloggin on that one :(14:20
edleafeDidn't get into the claims WIP reviews, as bauzas was not present.14:20
edleafejaypipes asked some of us to review his slides for his talk in Boston. For some reason we agreed without payment of large sums of cash.14:21
edleafeThat's all, folks!14:21
bauzasedleafe: yeah, was on holiday :(14:21
jaypipesedleafe: I can pay in beer.14:21
mriedemtdurakov: around for live migration?14:21
*** rossella_s has joined #openstack-meeting14:21
jaypipesor a Shirley Temple for dansmith.14:21
mriedemalex_xu_: around for api meeting highlights?14:21
jaypipesmriedem: some sad news...14:22
mriedemtimofey is gone14:22
alex_xu_just go through each work item. the last patch for nova api via wsgi https://review.openstack.org/#/c/457715/14:22
patchbotpatch 457715 - openstack-dev/devstack - Use uwsgi for nova when NOVA_USE_MOD_WSGI is not F...14:22
jaypipesmriedem: tdurakov and snikitin will no longer be working on Nova.14:22
mriedemjaypipes: ok, not unexpected news, but ok14:22
*** haleyb has quit IRC14:22
jaypipesboth have decided to pursue adventures outside of OPenStack.14:22
mriedemalex_xu_: thanks14:22
alex_xu_api team takes over the rest of policy doc works, and good progress. that's all14:23
jaypipesso we're going to need a new live migration lead.14:23
jaypipesI nominate moshele.14:23
mriedemwell,14:23
*** e0ne has quit IRC14:23
mriedemwe don't have to have subteams for things that aren't very active anymore,14:23
mriedemthe live migration subteam started b/c of HPE pushing so much change14:23
mriedemso maybe we just sideline that for now unless someone wants to pick it up again14:24
mriedemas noted earlier, we have lots of stuff to work on14:24
jaypipesmriedem: well, there continues to be *some* innovation in upstream QEMU/libvirt around live migration, so probably good to keep up with it.14:24
sfinucanDitto for sr-iov. Haven't had a meeting there for a few months14:24
mriedem#help looking for new live migration lead / contact person14:25
mriedemok moving on14:25
mriedemgibi posted some updates for versioned notifications14:25
mriedemhis two focus areas are:14:25
mriedem1. volume attach/detach https://review.openstack.org/#/c/401992/ - which is in the gate14:25
patchbotpatch 401992 - nova - Transform instance.volume_attach notification (MERGED)14:25
mriedemor merged14:25
mriedemand14:25
mriedem2. additional fields for Searchlight https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:master+topic:bp/additional-notification-fields-for-searchlight14:25
*** e0ne has joined #openstack-meeting14:26
mriedem^ continues to be something we said we'd get done in p-1 so we should try to do that14:26
mriedemthere isn't too much left14:26
jaypipesk, will do those today.14:26
mriedemthey all need to be rebased now though b/c of the volume attach/detach notifications going in14:26
mriedemi'll help rebase them after the meeting14:26
mriedemefried: powervm?14:26
efriedThree ready for final reviews: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:master+topic:bp/powervm-nova-compute-driver+is:mergeable14:26
*** ad_rien_ has quit IRC14:26
efriedOnce one or two more of those go through, we can start in on the others in the series again.14:26
efriedThat said...14:26
*** ad_rien_ has joined #openstack-meeting14:27
efriedWe know the PowerVM driver work is going to spill past Pike14:27
efriedSo thinking it would be worth setting a goal for the scope of stuff we want to get into Pike.14:27
efriedReasonable to say it should include the above three at least.14:27
mriedemlike get those 3 done and that's it for pike?14:27
efried"at least"14:27
mriedempsh14:27
efriedThoughts on factors affecting adding more to the pile?14:28
mriedemi like having you working on these other bp's that affect nova as a whole14:28
*** markstur has joined #openstack-meeting14:28
efriedNoted; but I oughtta have room for both.14:28
mriedemsure, but we don't necessarily have review bandwidth14:28
efriedAnyway, for now, I'm happy saying those three, and any others are a bonus.14:28
efriedYeah, I get it.14:29
mriedemas noted eaarlier14:29
mriedemok14:29
efriedThat's it for me.14:29
mriedemcinder subteam:14:29
mriedemthe current focus is still on plumbing in the new cinder v3 api for detach scenarios14:29
mriedemthere is a series starting here https://review.openstack.org/#/c/456896/14:29
patchbotpatch 456896 - nova - Add Cinder v3 detach call to _terminate_volume_con...14:29
mriedemthe first three there are pretty easy14:30
mriedem#help Will need a 3rd core to help move changes along.14:30
johnthetubaguyI guess the spec gives a good context on the new API?14:30
mriedemas johnthetubaguy and i are contributing to this series, we'll need a 3rd core14:30
mriedemso i'll just harass people as time goes on14:30
*** e0ne has quit IRC14:31
mriedem#topic stuck reviews14:31
*** openstack changes topic to "stuck reviews (Meeting topic: nova)"14:31
*** e0ne_ has joined #openstack-meeting14:31
mriedemthere was nothing on the agenda14:31
mriedemanyone want to mention a review that's stuck?14:31
*** markvoelker has quit IRC14:31
jaypipesmriedem: I won't have bandwidth to review the cinderv3 detach stuff, unfortunately.14:31
*** ad_rien_ has quit IRC14:31
jaypipesmriedem: not stuck, but this series would be great to make forward progress on:14:31
mriedemjaypipes: again, i'm just fishing14:32
jaypipeshttps://review.openstack.org/#/q/status:open+project:openstack/nova+branch:master+topic:bp/shared-resources-pike14:32
*** ad_rien_ has joined #openstack-meeting14:32
mriedem#topic open discussion14:32
*** openstack changes topic to "open discussion (Meeting topic: nova)"14:32
*** dpawar has joined #openstack-meeting14:32
mriedemnothing on the agenda14:32
mriedemdoes anyone have anything they wanted to talk about?14:32
*** iceyao_ has quit IRC14:32
edleafeno meeting next week, right?14:32
mriedemah yes thanks14:32
mriedem#info no team meeting next week due to the summit14:32
efriedFollowing week this same time, then?14:33
sam____Hi14:33
mriedemefried: yes14:33
efriedSo, like, skipping rather than moving14:33
sam____Can I request to review https://review.openstack.org/#/c/443951/14:33
patchbotpatch 443951 - nova - Libvirt volume driver for Veritas HyperScale14:33
mriedemsam____: yes i'll review that today14:33
*** kylek3h has joined #openstack-meeting14:33
johnthetubaguyso at the summit, is there a Nova hang out area?14:33
sam____Thanks14:33
mriedemsam____: did the os-brick release get into global-reqiurements as a new minimum?14:33
*** guoshan has quit IRC14:33
sam____yes its merged14:34
mriedemsam____: yup https://github.com/openstack/requirements/blob/master/global-requirements.txt#L15014:34
mriedemok14:34
mriedemjohnthetubaguy: nova hangout area...14:34
johnthetubaguyI am kinda used to us all getting suck in the same room together, gonna be different with the forum14:34
sam____Thanks mriedem :)14:34
johnthetubaguyanyways, I guess we will all bump into each other at some point14:34
mriedemjohnthetubaguy: i don't think there is,14:35
mriedemthere are available 'hacking' rooms if needed14:35
mriedembut my dance card is full, i don't know about others14:35
mriedemlooks like there are spill over rooms on thursday afternoon too if needed14:35
johnthetubaguyyeah, I look like I have something in every forum slot... and thats just out of curiosity I guess14:35
mriedemhttps://wiki.openstack.org/wiki/Forum/Boston2017#Thursday_Afternoon_session_sign-up14:35
*** rbowen has quit IRC14:36
mriedemok anything else?14:36
johnthetubaguysounds like we are done14:36
efriedAnyone know of a mobile IRC app that doesn't suck?14:36
bauzasAndChat14:36
dansmithhe said "doesn't suck"14:37
mriedemalright let's take that -nova14:37
mriedemthanks everyone14:37
mriedem#endmeeting14:37
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"14:37
openstackMeeting ended Thu May  4 14:37:15 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)14:37
openstackMinutes:        http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-05-04-14.00.html14:37
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-05-04-14.00.txt14:37
openstackLog:            http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-05-04-14.00.log.html14:37
*** cdent has left #openstack-meeting14:37
*** takashin has left #openstack-meeting14:37
*** armax has quit IRC14:38
*** dpawar has quit IRC14:42
*** aloga has quit IRC14:42
*** lamt has quit IRC14:43
*** aloga has joined #openstack-meeting14:43
*** gongysh has joined #openstack-meeting14:44
*** yamamoto has quit IRC14:44
*** lpetrut_ has quit IRC14:44
*** annegentle has joined #openstack-meeting14:44
*** ykatabam has joined #openstack-meeting14:48
*** ykatabam has quit IRC14:48
*** claudiub has quit IRC14:49
*** adisky_ has quit IRC14:49
*** gongysh has quit IRC14:49
*** slaweq has joined #openstack-meeting14:51
*** tongli has joined #openstack-meeting14:52
*** haleyb has joined #openstack-meeting14:53
*** markvoelker has joined #openstack-meeting14:53
*** slaweq has quit IRC14:55
*** salv-orl_ has joined #openstack-meeting14:56
*** armax has joined #openstack-meeting14:56
*** salv-orlando has quit IRC14:59
*** Julien-zte has quit IRC14:59
*** jamesmca_ has joined #openstack-meeting14:59
*** Julien-zte has joined #openstack-meeting15:00
*** hongbin has joined #openstack-meeting15:00
*** mjturek has joined #openstack-meeting15:01
*** unicell1 has quit IRC15:03
*** unicell has joined #openstack-meeting15:06
*** vkmc_ has joined #openstack-meeting15:07
*** claudiub has joined #openstack-meeting15:07
*** sshank has joined #openstack-meeting15:08
*** pcarver_ has left #openstack-meeting15:12
*** pcarver has joined #openstack-meeting15:12
*** kaisers has joined #openstack-meeting15:13
*** tobberydberg has quit IRC15:13
*** galstrom_zzz is now known as galstrom15:16
*** Julien-zte has quit IRC15:17
*** Julien-zte has joined #openstack-meeting15:18
*** kaisers has quit IRC15:18
*** iceyao has joined #openstack-meeting15:18
*** brault has joined #openstack-meeting15:19
*** iceyao has quit IRC15:22
*** jprovazn is now known as jprovazn_afk15:22
*** claudiub|2 has joined #openstack-meeting15:23
*** ijw has joined #openstack-meeting15:23
*** brault has quit IRC15:24
*** armax has quit IRC15:25
*** arnewiebalck_ has joined #openstack-meeting15:27
*** aarefiev is now known as aarefiev_afk15:27
*** claudiub has quit IRC15:27
*** msimonin has quit IRC15:28
*** msimonin has joined #openstack-meeting15:29
*** chris_morrell has joined #openstack-meeting15:30
*** chris_morrell has quit IRC15:31
*** ykarel_ has quit IRC15:34
*** chyka has joined #openstack-meeting15:35
*** liuyulong has quit IRC15:36
*** jamesmca_ has quit IRC15:38
*** iceyao has joined #openstack-meeting15:39
*** jaugustine has quit IRC15:40
*** andreas_s has quit IRC15:42
*** VW has quit IRC15:43
*** yamamoto has joined #openstack-meeting15:45
*** mwhahaha has left #openstack-meeting15:45
*** shaohe_feng has quit IRC15:46
*** alex_xu_ has quit IRC15:46
*** heyongli has quit IRC15:46
*** Xinran has quit IRC15:47
*** luyao has quit IRC15:47
*** manjeets__ is now known as manjeets15:48
*** jaugustine has joined #openstack-meeting15:50
*** gyee has joined #openstack-meeting15:50
*** claudiub|2 has quit IRC15:51
*** Apoorva has joined #openstack-meeting15:54
*** dtrainor has quit IRC15:55
*** e0ne_ has quit IRC15:56
*** yamamoto has quit IRC15:57
*** Julien-zte has quit IRC15:59
*** Julien-zte has joined #openstack-meeting16:00
*** slaweq has joined #openstack-meeting16:00
*** caowei has quit IRC16:05
*** mickeys has joined #openstack-meeting16:05
*** caowei has joined #openstack-meeting16:05
*** iceyao has quit IRC16:06
*** fnaval has quit IRC16:08
*** fnaval has joined #openstack-meeting16:08
*** fnaval has quit IRC16:11
*** Patifa has joined #openstack-meeting16:12
*** ataraday_ has joined #openstack-meeting16:14
*** tobberydberg has joined #openstack-meeting16:14
*** iyamahat has quit IRC16:15
*** unicell has quit IRC16:16
*** bobmel has joined #openstack-meeting16:16
*** bobmel_ has joined #openstack-meeting16:17
*** iceyao has joined #openstack-meeting16:18
*** tobberydberg has quit IRC16:20
*** bobmel has quit IRC16:20
*** yamamoto has joined #openstack-meeting16:26
*** salv-orl_ has quit IRC16:26
*** ijw has quit IRC16:30
*** ijw has joined #openstack-meeting16:31
*** iceyao has quit IRC16:32
*** iceyao has joined #openstack-meeting16:32
*** iceyao has quit IRC16:33
*** coreycb has quit IRC16:35
*** ankur-gupta-f4 has quit IRC16:35
*** mrhillsman has quit IRC16:35
*** wxy has quit IRC16:35
*** aweeks has quit IRC16:35
*** knangia has quit IRC16:35
*** ijw has quit IRC16:35
*** yamamoto has quit IRC16:37
*** oidgar has quit IRC16:37
*** pcaruana has quit IRC16:40
*** aweeks has joined #openstack-meeting16:41
*** ijw has joined #openstack-meeting16:41
*** ad_rien_ has quit IRC16:43
*** msimonin has quit IRC16:43
*** ankur-gupta-f4 has joined #openstack-meeting16:44
*** e0ne has joined #openstack-meeting16:45
*** coreycb has joined #openstack-meeting16:45
*** wxy has joined #openstack-meeting16:46
*** knangia has joined #openstack-meeting16:46
*** mrhillsman has joined #openstack-meeting16:46
*** bobmel_ has quit IRC16:47
*** armax has joined #openstack-meeting16:47
*** jkilpatr has quit IRC16:48
*** erlon has joined #openstack-meeting16:49
*** fnaval has joined #openstack-meeting16:54
*** baoli has quit IRC16:59
*** unicell has joined #openstack-meeting17:01
*** baoli has joined #openstack-meeting17:01
*** ralonsoh has quit IRC17:02
*** jkilpatr has joined #openstack-meeting17:04
*** hieulq_ has joined #openstack-meeting17:05
*** donghao has joined #openstack-meeting17:06
*** litao has quit IRC17:09
*** e0ne has quit IRC17:09
*** ricolin_ has quit IRC17:10
*** donghao has quit IRC17:10
*** e0ne has joined #openstack-meeting17:12
*** ltomasbo is now known as ltomasbo|away17:14
*** martinkopec has quit IRC17:15
*** baoli has quit IRC17:18
*** baoli has joined #openstack-meeting17:19
*** lpetrut has joined #openstack-meeting17:24
*** trinaths has left #openstack-meeting17:26
*** Patifa has quit IRC17:26
*** rossella_s has quit IRC17:26
*** ijw has quit IRC17:27
*** igordcar1 has quit IRC17:27
*** igordcard has joined #openstack-meeting17:27
*** msimonin has joined #openstack-meeting17:29
*** chris_morrell has joined #openstack-meeting17:30
*** tesseract has quit IRC17:30
*** dmacpher has quit IRC17:33
*** julim has joined #openstack-meeting17:33
*** vkmc_ has quit IRC17:37
*** hieulq_ has quit IRC17:37
*** jamesmca_ has joined #openstack-meeting17:38
*** Patifa has joined #openstack-meeting17:38
*** hieulq_ has joined #openstack-meeting17:39
*** Patifa has quit IRC17:40
*** SumitNaiksatam has joined #openstack-meeting17:43
*** mfranc213 has quit IRC17:44
*** rossella_s has joined #openstack-meeting17:45
*** gyee has quit IRC17:45
*** tobberydberg has joined #openstack-meeting17:45
*** jprovazn_afk is now known as jprovazn17:47
*** unicell has quit IRC17:47
*** baoli_ has joined #openstack-meeting17:47
*** unicell has joined #openstack-meeting17:48
*** baoli has quit IRC17:49
*** julim has quit IRC17:50
*** s3wong has joined #openstack-meeting17:50
*** toscalix has quit IRC17:51
*** russellb has left #openstack-meeting17:52
*** Apoorva has quit IRC17:56
*** chris_morrell has quit IRC18:02
*** Sukhdev has joined #openstack-meeting18:03
*** Patifa has joined #openstack-meeting18:03
*** lpetrut has quit IRC18:03
*** VW has joined #openstack-meeting18:04
*** jamesmca_ has quit IRC18:05
*** sam____ has quit IRC18:05
*** chris_morrell has joined #openstack-meeting18:05
*** jamesmca_ has joined #openstack-meeting18:06
*** yonglihe has quit IRC18:09
*** jamesmca_ has quit IRC18:10
*** Cibo_ has joined #openstack-meeting18:11
*** tobberydberg has quit IRC18:12
*** slaweq has quit IRC18:17
*** slaweq has joined #openstack-meeting18:18
*** ociuhandu has quit IRC18:18
*** harlowja has quit IRC18:19
*** Sukhdev has quit IRC18:20
*** slaweq has quit IRC18:23
*** donghao has joined #openstack-meeting18:24
*** chris_morrell has quit IRC18:26
*** donghao has quit IRC18:28
*** chris_morrell has joined #openstack-meeting18:28
*** jprovazn has quit IRC18:31
*** chris_morrell has quit IRC18:34
*** chris_morrell has joined #openstack-meeting18:35
*** mfranc213 has joined #openstack-meeting18:35
*** baoli_ has quit IRC18:37
*** baoli has joined #openstack-meeting18:38
*** Guest92102 is now known as redrobot18:42
*** chris_morrell has quit IRC18:42
*** Apoorva has joined #openstack-meeting18:50
*** ad_rien_ has joined #openstack-meeting18:52
*** chris_morrell has joined #openstack-meeting18:54
*** amotoki has quit IRC18:55
*** cloudrancher has quit IRC18:55
*** cloudrancher has joined #openstack-meeting18:56
*** Cibo_ has quit IRC18:58
*** mickeys has quit IRC18:58
*** Cibo_ has joined #openstack-meeting18:59
*** Cibo has joined #openstack-meeting19:02
*** iyamahat has joined #openstack-meeting19:02
*** Cibo_ has quit IRC19:03
*** chris_morrell has quit IRC19:04
*** iyamahat has quit IRC19:08
*** Cibo has quit IRC19:08
*** tobberydberg has joined #openstack-meeting19:13
*** clayg has joined #openstack-meeting19:13
*** gouthamr has quit IRC19:14
*** ociuhandu has joined #openstack-meeting19:17
*** tobberydberg has quit IRC19:18
*** jamesmca_ has joined #openstack-meeting19:23
*** kaisers_ has quit IRC19:23
*** kaisers has joined #openstack-meeting19:23
*** gouthamr has joined #openstack-meeting19:24
*** hieulq_ has quit IRC19:28
*** chris_morrell has joined #openstack-meeting19:28
*** pchavva has quit IRC19:28
*** kaisers_ has joined #openstack-meeting19:33
*** chris_morrell has quit IRC19:33
*** kaisers has quit IRC19:35
*** VW has quit IRC19:36
*** Cibo_ has joined #openstack-meeting19:37
*** baoli has quit IRC19:37
*** baoli has joined #openstack-meeting19:38
*** chris_morrell has joined #openstack-meeting19:38
*** brault has joined #openstack-meeting19:40
*** hieulq_ has joined #openstack-meeting19:41
*** brault_ has joined #openstack-meeting19:45
*** harlowja has joined #openstack-meeting19:48
*** brault has quit IRC19:48
*** tobberydberg has joined #openstack-meeting19:50
*** salv-orlando has joined #openstack-meeting19:52
*** hieulq_ has quit IRC19:55
*** mickeys has joined #openstack-meeting19:59
*** ad_rien_ has quit IRC20:00
*** lbragstad_alt has joined #openstack-meeting20:02
*** mickeys has quit IRC20:04
*** Apoorva_ has joined #openstack-meeting20:05
*** Cibo_ has quit IRC20:07
*** iceyao has joined #openstack-meeting20:08
*** eharney has quit IRC20:09
*** Apoorva has quit IRC20:09
*** iceyao has quit IRC20:12
*** hongbin has quit IRC20:17
*** slaweq has joined #openstack-meeting20:22
*** Julien-zte has quit IRC20:25
*** Julien-zte has joined #openstack-meeting20:26
*** donghao has joined #openstack-meeting20:26
*** ociuhandu has quit IRC20:28
*** donghao has quit IRC20:31
*** VW has joined #openstack-meeting20:34
*** mickeys has joined #openstack-meeting20:38
*** ociuhandu has joined #openstack-meeting20:41
*** cleong has quit IRC20:44
*** jamesmca_ has quit IRC20:49
*** jamesmca_ has joined #openstack-meeting20:50
*** hongbin has joined #openstack-meeting20:50
*** tobberydberg has quit IRC20:55
*** gouthamr has quit IRC20:56
*** salv-orl_ has joined #openstack-meeting20:56
*** salv-orlando has quit IRC20:59
*** thorst_afk has quit IRC20:59
*** e0ne has quit IRC20:59
*** dprince has quit IRC21:00
*** ad_rien_ has joined #openstack-meeting21:01
*** thorst_afk has joined #openstack-meeting21:03
*** brault_ has quit IRC21:03
*** Apoorva_ has quit IRC21:04
*** Apoorva has joined #openstack-meeting21:05
*** thorst_afk has quit IRC21:08
*** jamesmca_ has quit IRC21:08
*** awaugama has quit IRC21:09
*** askb has joined #openstack-meeting21:11
*** eric_young has quit IRC21:11
*** jamesmca_ has joined #openstack-meeting21:11
*** annegentle has quit IRC21:12
*** dimtruck is now known as zz_dimtruck21:20
*** jamesmca_ has quit IRC21:22
*** gouthamr has joined #openstack-meeting21:26
*** ykatabam has joined #openstack-meeting21:31
*** fzdarsky has quit IRC21:34
*** annegentle has joined #openstack-meeting21:42
*** baoli has quit IRC21:44
*** haleyb has quit IRC21:44
*** lbragstad has quit IRC21:45
*** imcsk8 has quit IRC21:46
*** imcsk8 has joined #openstack-meeting21:46
*** salv-orl_ has quit IRC21:51
*** jamesmca_ has joined #openstack-meeting21:53
*** xingchao has quit IRC21:54
*** ad_rien_ has quit IRC21:56
*** jamesmca_ has quit IRC21:57
*** jbadiapa has quit IRC22:01
*** SumitNaiksatam has quit IRC22:01
*** hongbin has quit IRC22:03
*** annegentle has quit IRC22:03
*** chris_morrell has quit IRC22:04
*** mickeys has quit IRC22:04
*** Apoorva_ has joined #openstack-meeting22:05
*** hongbin has joined #openstack-meeting22:05
*** artom has joined #openstack-meeting22:06
*** jamesdenton has quit IRC22:08
*** Apoorva has quit IRC22:09
*** arxcruz has quit IRC22:14
*** lamt has joined #openstack-meeting22:15
*** jbadiapa has joined #openstack-meeting22:15
*** arxcruz has joined #openstack-meeting22:16
*** fnaval has quit IRC22:19
*** rossella_s has quit IRC22:21
*** rossella_s has joined #openstack-meeting22:21
*** slaweq has quit IRC22:22
*** lamt has quit IRC22:27
*** donghao has joined #openstack-meeting22:28
*** galstrom is now known as galstrom_zzz22:29
*** xyang1 has quit IRC22:31
*** donghao has quit IRC22:33
*** hongbin_ has joined #openstack-meeting22:33
*** hongbin has quit IRC22:33
*** jaugustine has quit IRC22:36
*** tonytan4ever has joined #openstack-meeting22:36
*** xingchao has joined #openstack-meeting22:50
*** salv-orlando has joined #openstack-meeting22:51
*** fnaval has joined #openstack-meeting22:53
*** fnaval has quit IRC22:53
*** fnaval has joined #openstack-meeting22:54
*** gouthamr has quit IRC22:55
*** tobberydberg has joined #openstack-meeting22:56
*** Apoorva has joined #openstack-meeting22:56
*** Apoorva_ has quit IRC22:56
*** salv-orlando has quit IRC22:58
*** tobberydberg has quit IRC23:00
*** artom has quit IRC23:02
*** brault has joined #openstack-meeting23:04
*** jamesmca_ has joined #openstack-meeting23:05
*** mickeys has joined #openstack-meeting23:05
*** brault has quit IRC23:09
*** mickeys has quit IRC23:10
*** jamesmca_ has quit IRC23:10
*** ykatabam has quit IRC23:13
*** mickeys has joined #openstack-meeting23:13
*** ykatabam has joined #openstack-meeting23:13
*** sdague has quit IRC23:20
*** baoli has joined #openstack-meeting23:24
*** baoli has quit IRC23:24
*** erlon has quit IRC23:24
*** xingchao has quit IRC23:24
*** baoli has joined #openstack-meeting23:25
*** xingchao has joined #openstack-meeting23:25
*** lamt has joined #openstack-meeting23:27
*** xingchao has quit IRC23:30
*** ykatabam has quit IRC23:36
*** ykatabam has joined #openstack-meeting23:36
*** chyka has quit IRC23:37
*** jkilpatr has quit IRC23:38
*** chyka has joined #openstack-meeting23:38
*** jkilpatr has joined #openstack-meeting23:39
*** lamt has quit IRC23:39
*** cebruns has quit IRC23:39
*** ykatabam has quit IRC23:39
*** ykatabam has joined #openstack-meeting23:40
*** guoshan has joined #openstack-meeting23:40
*** cebruns has joined #openstack-meeting23:42
*** chyka has quit IRC23:43
*** Julien-zte has quit IRC23:43
*** lamt has joined #openstack-meeting23:46
*** artom has joined #openstack-meeting23:50
*** Apoorva has quit IRC23:52
*** hongbin_ has quit IRC23:53
*** cebruns has quit IRC23:54
*** salv-orlando has joined #openstack-meeting23:54
*** Apoorva has joined #openstack-meeting23:54
*** salv-orlando has quit IRC23:58

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