Thursday, 2017-04-27

*** Xinran has joined #openstack-meeting00:00
*** rfolco has joined #openstack-meeting00:00
*** rfolco has quit IRC00:00
ekcstime for congress meeting thinrichs aimeeu ramineni masahito00:01
ekcs#startmeeting congressteammeeting00:01
openstackMeeting started Thu Apr 27 00:01:56 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:02
*** rfolco has joined #openstack-meeting00:02
*** rfolco has quit IRC00:02
aimeeuHi ekcs - on mobile heading out on vacation00:02
ekcshi all. as usual, topics are kept here: https://etherpad.openstack.org/p/congress-meeting-topics00:02
thinrichsHi all00:02
ekcsnot a lot there right now. feel free to take a moment and add your topics =)00:02
ekcshi aimeeu ! that's great enjoy your vacation!00:03
*** aeng has quit IRC00:04
*** d0ugal has quit IRC00:04
*** diablo_rojo has joined #openstack-meeting00:04
*** ntpttr has quit IRC00:04
*** masahito has joined #openstack-meeting00:06
masahitosorry, late.00:06
ekcsnp! topics kept here as usual. https://etherpad.openstack.org/p/congress-meeting-topics00:06
*** ntpttr has joined #openstack-meeting00:06
ekcsok let's get started then.00:07
ekcs#topic policy library00:07
*** openstack changes topic to "policy library (Meeting topic: congressteammeeting)"00:07
ekcsWe had a lively discussion last week, with many different visions of policy library. I've incorporated some of that into the spec, especially the discussion of alternatives.00:08
ekcsis there anything to talk about here?00:08
*** Xinran has quit IRC00:09
ekcsOne thing of potential interest:00:10
*** ntpttr has quit IRC00:11
*** Xinran has joined #openstack-meeting00:11
ekcswhen creating a policy including rules00:11
ekcsThe policy engine rule insert code would require some careful00:11
ekcs    reworking to ensure policy creation with rules is transactional. That is,00:11
ekcs    if insertion fails at the third rule (say because of cross-policy00:11
ekcs    recursion), the first and second rule insertions are undone without having00:11
ekcs    caused any effect (triggered actions or altered query answers).00:11
ekcssome care will be needed to make sure the different locks we have going on don't interfere.00:12
ekcsanyway. let's move on if there isn't much to talk about now.00:12
*** ntpttr has joined #openstack-meeting00:12
thinrichsekcs: one question00:13
ekcsyup.00:13
thinrichsIs the implementation wrapping a transactional boundary for insertion into the DB?00:14
thinrichsOr is the transaction done at a higher level?00:14
thinrichsI guess we can't really do it at a higher-level than the DB.00:14
ekcsthere are two parts.00:14
ekcs1 is the transactional boundary in DB, that makes sure other instances of the policy engine don't load a partially inserted policy (rules)00:15
ekcs2 has nothing to do with DB. it's within the policy engine itself.00:15
ekcsthe current flow for inserting rule is insert into engine first. if succeed, then write to DB.00:15
thinrichsSorry—reading through your 2 main things section in the spec now00:16
ekcsbecause some of the checks for rule insertion must be done in engine.00:16
*** ntpttr has quit IRC00:17
*** aeng has joined #openstack-meeting00:17
thinrichsCould there be a race if 2 policies are recursive?00:18
thinrichsPE1 loads policy1 into engine; PE2 loads policy2 into engine and into DB; PE1 (having found no recursion) writes policy1 to DB.00:18
*** Julien-zte has joined #openstack-meeting00:18
*** ntpttr has joined #openstack-meeting00:18
ekcsbtw triggers are complicated because I think the triggers are handled on rule insertion.00:18
thinrichsRight00:19
thinrichsIs recursion the thing that's complicating everything?00:19
*** ijw has quit IRC00:19
*** Xinran has quit IRC00:19
*** palexster has joined #openstack-meeting00:19
*** ijw has joined #openstack-meeting00:19
ekcsThe race issue I think is handled by DB locking already in place.00:20
*** Xinran has joined #openstack-meeting00:20
ekcsat the very beginning of inserting a new rule, policy engine aquires a DB lock to prevent any other changes in the mean time. then syncs to make sure in-mem state is the same as DB state before continuing.00:21
*** thorst_afk has joined #openstack-meeting00:22
thinrichsSo it locks the duration of the insert.  Not sure how expensive that'll be.  Maybe large policy inserts are infrequent.00:22
ekcsrecursion is one thing. but I'm not totally clear right now on all the things that may cause a rule insert to fail at the policy engine level.00:22
*** ntpttr has quit IRC00:23
ekcsright. basically we're saying rule inserts can have high latency. expect that.00:24
ekcswon't affect query performance.00:24
*** ntpttr has joined #openstack-meeting00:24
ekcsthinking about triggers again, I don't think we can somehow lock out the trigger activation. I think we need to write some new code that does all the policy-engine level checks for a set of rules, before inserting any of them.00:25
ekcsI'll need to dig into the code some more to say for sure.00:26
*** ijw has quit IRC00:26
thinrichsI remember that trigger code was tricky to get right00:27
thinrichsHappy to jump on a call if that helps00:28
*** number80 has joined #openstack-meeting00:28
*** ntpttr has quit IRC00:29
*** Xinran has quit IRC00:29
*** armax has quit IRC00:29
ekcsthanks. yea unfortunately the engine was never designed to handle transaction insert of a set of rules. so it may take some serious reworking to get right.00:29
ekcsin fact, I realized that we have a problem even today.00:30
*** ntpttr has joined #openstack-meeting00:30
ekcswhen we delete a policy, the rules are deleted one at a time.00:30
ekcsso say I have a policy with two rules:00:31
ekcsgood(x) :- ....00:31
ekcsexecute[...] :- thing(x), not good(x)00:31
*** Xinran has joined #openstack-meeting00:31
ekcswhen the first rule is deleted but before the second rule is deleted, I think an 'false' execution can trigger.00:32
*** mickeys has quit IRC00:32
ekcswill need to study the trigger code to be sure.00:32
*** hongbin has quit IRC00:33
ekcsanyway should we move on?00:34
*** jamesmca_ has joined #openstack-meeting00:34
thinrichsYep00:35
*** Sukhdev has quit IRC00:35
ekcsok then.00:36
ekcs#topic PTG00:36
*** openstack changes topic to "PTG (Meeting topic: congressteammeeting)"00:36
*** annegentle has joined #openstack-meeting00:36
ekcsok not much to say here. but as mention before it's scheduled for sep 11-15 in denver.00:36
ekcswe need to decide in may whether we want to hold sessions there.00:36
*** Apoorva has quit IRC00:37
*** ramineni_ has joined #openstack-meeting00:37
ekcsok then.00:38
ekcs#topic open discussions00:38
*** openstack changes topic to "open discussions (Meeting topic: congressteammeeting)"00:38
ekcsanything else we want to talk about?00:38
*** ntpttr has quit IRC00:38
ekcshi ramineni_00:39
*** Xinran has quit IRC00:40
ramineni_hi ekcs.. sorry im late ..00:40
*** ntpttr has joined #openstack-meeting00:40
ekcsnp =)00:40
ramineni_ekcs: so any discussion on gate issues?00:41
ekcsoh right almost forgot.00:41
ekcs#topic gate failure00:41
*** openstack changes topic to "gate failure (Meeting topic: congressteammeeting)"00:41
*** markstur has quit IRC00:41
ekcsso many of our tempest tests have been failing.00:42
*** markstur has joined #openstack-meeting00:42
ekcsI haven't looked very deeply, but it seems like transport related issue maybe.00:42
ramineni_ekcs: none of the datasource service is starting actually00:42
ekcsoh I see.00:42
*** Xinran has joined #openstack-meeting00:43
ekcsany idea why?00:43
ramineni_ekcs: http://logs.openstack.org/38/458038/1/check/gate-congress-dsvm-api-mysql-ubuntu-xenial/2507afe/logs/screen-congress-datasources.txt.gz00:44
ramineni_ekcs: i noticed while devstack patch is failing , first thought its related to my patch, then i noticed its failing on every patch00:44
*** ntpttr has quit IRC00:45
ramineni_ekcs: not usre, if any change in keystone or somthing00:45
ramineni_ekcs: ill look into it more deeply today, if anyone havent looked into it yet00:46
*** markstur has quit IRC00:46
ekcsI'm a little confused.00:46
*** xingchao has joined #openstack-meeting00:46
*** ntpttr has joined #openstack-meeting00:46
*** gouthamr has joined #openstack-meeting00:46
ekcsoh nvm I get it.00:47
*** jamesmca_ has quit IRC00:47
ekcsok so yea guess we'll have to figure out what changed.00:47
ramineni_ekcs: yes00:47
ekcslet's share things we find (ML maybe?) as we go. so it may help others make progress.00:48
*** wanghao has joined #openstack-meeting00:48
ramineni_ekcs: sure00:48
*** jamesmca_ has joined #openstack-meeting00:49
*** Xinran has quit IRC00:50
ekcsanyway keystone seems like the prime suspect. Cuz they all fail with failing to connect to keystone.00:50
ekcsConnectFailure: Unable to establish connection to http://104.239.192.246:5000/v3/auth/tokens00:50
ramineni_ekcs: ya, not sure why, all services seem to be up00:51
ekcsramineni_, right.00:52
ekcsok anything else on gate failure or other topics?00:52
*** Xinran has joined #openstack-meeting00:52
*** ntpttr has quit IRC00:53
*** ramineni_1 has joined #openstack-meeting00:53
ekcsok let's wrap up a few minutes early then if there isn't more to discuss.00:54
*** ntpttr has joined #openstack-meeting00:54
ekcshave a great week/weekend everyone!00:55
*** ramineni_ has quit IRC00:55
*** ramineni_1 has left #openstack-meeting00:55
masahitothanks!00:55
thinrichsthanks all!00:55
*** thinrichs has left #openstack-meeting00:55
ekcs#endmeeting00:55
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"00:55
openstackMeeting ended Thu Apr 27 00:55:58 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)00:56
openstackMinutes:        http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-04-27-00.01.html00:56
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-04-27-00.01.txt00:56
openstackLog:            http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-04-27-00.01.log.html00:56
*** number80 has quit IRC00:57
*** gyee has quit IRC00:57
*** sdague has quit IRC00:58
*** ntpttr has quit IRC00:59
*** Xinran has quit IRC01:00
*** ntpttr has joined #openstack-meeting01:00
*** Xinran has joined #openstack-meeting01:01
*** wanghao_ has joined #openstack-meeting01:02
*** wanghao has quit IRC01:02
*** ntpttr has quit IRC01:05
*** ntpttr has joined #openstack-meeting01:06
*** zhhuabj has quit IRC01:07
*** esberglu has joined #openstack-meeting01:07
*** masahito has quit IRC01:09
*** baoli has joined #openstack-meeting01:09
*** trinaths has joined #openstack-meeting01:09
*** Xinran has quit IRC01:10
*** Xinran has joined #openstack-meeting01:11
*** yolkfull has joined #openstack-meeting01:11
*** esberglu has quit IRC01:12
*** jamesmca_ has quit IRC01:12
*** ntpttr has quit IRC01:13
*** baoli has quit IRC01:14
*** annegentle has quit IRC01:14
*** ntpttr has joined #openstack-meeting01:14
*** yangyapeng has joined #openstack-meeting01:18
*** zhhuabj has joined #openstack-meeting01:19
*** zhenguo has joined #openstack-meeting01:19
*** ntpttr has quit IRC01:19
*** annegentle has joined #openstack-meeting01:19
*** Apoorva has joined #openstack-meeting01:19
*** ntpttr has joined #openstack-meeting01:20
*** yangyapeng has quit IRC01:20
*** yangyape_ has joined #openstack-meeting01:20
*** Apoorva has quit IRC01:20
*** Xinran has quit IRC01:21
*** Xinran has joined #openstack-meeting01:21
*** number80 has joined #openstack-meeting01:24
*** ntpttr has quit IRC01:25
*** prateek has quit IRC01:26
*** ntpttr has joined #openstack-meeting01:26
*** diablo_rojo has quit IRC01:30
*** yangyape_ has quit IRC01:30
*** Xinran has quit IRC01:31
*** yangyapeng has joined #openstack-meeting01:31
*** Xinran has joined #openstack-meeting01:31
*** baoli has joined #openstack-meeting01:32
*** iyamahat has quit IRC01:32
*** mickeys has joined #openstack-meeting01:33
*** yamahata_ has quit IRC01:33
*** ntpttr has quit IRC01:34
*** ntpttr has joined #openstack-meeting01:34
*** Sukhdev has joined #openstack-meeting01:34
*** yangyapeng has quit IRC01:35
*** thorst_afk has quit IRC01:36
*** mickeys has quit IRC01:37
*** kaisers has quit IRC01:37
*** yangyapeng has joined #openstack-meeting01:37
*** esberglu has joined #openstack-meeting01:38
*** baoli has quit IRC01:38
*** esberglu has quit IRC01:38
*** gcb has joined #openstack-meeting01:38
*** ntpttr has quit IRC01:39
*** donghao has joined #openstack-meeting01:40
*** ntpttr has joined #openstack-meeting01:40
*** Xinran has quit IRC01:40
*** gouthamr has quit IRC01:42
*** Xinran has joined #openstack-meeting01:42
*** rbak has joined #openstack-meeting01:44
*** donghao has quit IRC01:45
*** ntpttr has quit IRC01:45
*** ntpttr has joined #openstack-meeting01:46
*** litao has joined #openstack-meeting01:48
*** trinaths has quit IRC01:48
*** Xinran has quit IRC01:51
*** Xinran has joined #openstack-meeting01:52
*** chenying__ has joined #openstack-meeting01:55
*** chenying_ has quit IRC01:55
*** ntpttr has quit IRC01:56
*** ntpttr has joined #openstack-meeting01:56
*** rbak has quit IRC01:58
*** Xinran has quit IRC01:59
zhenguo#startmeeting mogan02:00
openstackMeeting started Thu Apr 27 02:00:49 2017 UTC and is due to finish in 60 minutes.  The chair is zhenguo. Information about MeetBot at http://wiki.debian.org/MeetBot.02:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.02:00
*** openstack changes topic to " (Meeting topic: mogan)"02:00
openstackThe meeting name has been set to 'mogan'02:00
zhenguoo/02:01
*** ntpttr has quit IRC02:01
liushengo/02:01
zhangyango/02:01
*** zhurong has joined #openstack-meeting02:02
*** ntpttr has joined #openstack-meeting02:02
zhenguoas always, the agenda:02:02
zhenguo#link https://wiki.openstack.org/wiki/Meetings/Mogan#Agenda_for_next_meeting02:02
zhenguolet's jump in02:02
zhenguo#topic announcements and reminders02:03
*** openstack changes topic to "announcements and reminders (Meeting topic: mogan)"02:03
*** rkmrHonjo has joined #openstack-meeting02:03
zhenguoThe coming bug smash:02:03
zhenguo#link https://etherpad.openstack.org/p/OpenStack-Bug-Smash-Pike-Suzhou02:03
zhenguoReally happy to see we got 6 mogan guys there :D02:03
*** Xinran has joined #openstack-meeting02:03
zhenguomaybe 7, luyao, I remember shaohe_feng said JF will send you there02:04
liusheng:D02:04
*** prateek has joined #openstack-meeting02:04
liushengmay need to ping them all ?02:05
zhenguook, seems luyao is not around, will confirm with her later02:05
zhenguoFirst Mogan UI panel:02:05
zhenguo#link http://pasteboard.co/99yjyKAoD.png02:05
*** ijw has joined #openstack-meeting02:05
luyaozhenguo, hah,i'm here,it seems uncertainty02:05
zhenguoluyao: hah, hope you can go02:06
*** annegentle has quit IRC02:06
liushengzhenguo: looks a great startup :P02:06
luyaozhenguo, I hope so. :D02:06
*** huanxuan has joined #openstack-meeting02:07
zhenguohah, ok, let's see have a look at the mogan ui02:07
*** ntpttr has quit IRC02:07
zhenguoYou can enable mogan-ui plugin when setup devstack env to see, but it not really work now, just added servers Panel and Bare Metal Compute Panelgroup :D02:07
zhenguoWithin the Bare Metal Compute, we will add servers, keypairs, and overview like Nova02:08
*** ntpttr has joined #openstack-meeting02:08
liushengzhenguo: only need to enalbe mogan-ui and horizon in local.conf ?02:10
*** ijw has quit IRC02:10
zhenguoliusheng: enable mogan-ui plugin like how to enable mogan :D02:10
zhenguoliusheng: yes, and enable horizon02:10
*** prateek has quit IRC02:11
liushengzhenguo: ok, thanks, it is better to add a simple description about how to enable it02:11
zhenguoliusheng: sure02:11
zhenguoI will try to make it work before the bug smash,02:11
zhenguothen we can show maybe with a physical env we are working on :D02:12
*** Xinran has quit IRC02:12
zhenguook, not much of announcements, anyone else have a thing here?02:13
*** unicell has quit IRC02:13
zhenguoif not, let's move on02:13
zhenguo#topic task tracking02:13
*** openstack changes topic to "task tracking (Meeting topic: mogan)"02:13
liushengthat will be cool02:13
zhenguo#link https://etherpad.openstack.org/p/mogan-task02:14
*** wxy has joined #openstack-meeting02:14
zhenguoliusheng: hah02:14
wanghao_hi guys02:14
wanghao_I'm here now02:14
zhenguowanghao_: o/02:14
zhenguohah, so, let's talk  about the releasenotes stuff :D02:15
*** ntpttr has quit IRC02:16
wanghao_sure02:16
*** Xinran has joined #openstack-meeting02:16
*** epico has joined #openstack-meeting02:16
*** ntpttr has joined #openstack-meeting02:16
zhenguowhen do you think we should add releasenotes for Mogan02:17
*** kota_ has left #openstack-meeting02:17
zhenguoas we don't have any release yet02:17
wanghao_well, I think Pike is good point.02:17
*** zhurong has quit IRC02:18
wanghao_do we plan to release in Pike?02:18
zhenguoyes, it's really helpful to track what we have done during Pike02:18
wanghao_yes02:18
zhenguoyes, we should do release02:18
*** baoli has joined #openstack-meeting02:18
zhenguoso we should add important releasenotes in02:18
zhenguoonly for Pike?02:19
liushengdon't we have a releasenot job ?02:19
zhenguoor what we have done since the project creation02:19
zhenguoliusheng: no02:19
wanghao_I think some feature before Pike could be there02:19
*** zul has quit IRC02:19
wanghao_since this our first release from Pike,  should let's user know what we have done from beginning.02:20
liushengyes, agreed, and it's better to add a releasenote job also02:20
zhenguo+102:20
zhenguobut seems only offical projects can add releasenotes job02:20
zhenguoas it will publish releasenotes to docs.openstack.org02:20
zhenguolike what api-ref job does02:21
*** epico has quit IRC02:21
wanghao_so that ask us to check it manually when reviewing patch.02:22
zhenguoyes, like api-ref02:22
*** Xinran_ has joined #openstack-meeting02:22
wanghao_well, fine with me :)02:22
zhenguook, thanks02:23
zhenguoso we will add all releasenotes02:23
*** baoli has quit IRC02:23
zhenguonot only for Pike02:23
*** Xinran_ has quit IRC02:23
*** ntpttr has quit IRC02:23
zhenguook, let's see our task list02:24
*** ntpttr has joined #openstack-meeting02:24
zhenguo#link https://etherpad.openstack.org/p/mogan-task02:25
* zhenguo gives folks a few minutes to review02:25
*** iceyao has joined #openstack-meeting02:26
zhenguoI added some new tasks02:26
wanghao_the red task?02:27
zhenguowanghao_: yes02:28
wanghao_ok02:28
zhenguoI have added keypairs support with configdrive02:29
liushengI can pick one :D02:29
zhenguoliusheng: thanks02:29
wanghao_Specify neutron port when creating instances, do you mean user have created port in neutron, and then use it in Mogan?02:30
zhenguowanghao_: yes02:30
wanghao_So mogan don't need to create it in Neutron.02:30
wanghao_okay, sounds cool,  I can try it.02:30
liushengwanghao_: I just picked that, but you are welcome to pick it. lol02:31
zhenguolol02:31
wanghao_yeah, I see it... :_02:31
liushengzhenguo: I will pick another one02:31
liushenghah02:31
wanghao_liusheng: haha,  thanks God sheng.02:31
*** esberglu has joined #openstack-meeting02:31
liushengwanghao_: np architect hao02:32
*** ntpttr has quit IRC02:32
wanghao_change to my name ASAP, lol02:32
wanghao_...02:32
*** mickeys has joined #openstack-meeting02:32
*** ntpttr has joined #openstack-meeting02:32
wanghao_it seems simple that no spec needed.02:33
*** hongbin has joined #openstack-meeting02:33
*** epico has joined #openstack-meeting02:33
zhenguoyes, not need to add spec for such bps02:33
zhenguowrt specifying neutron port, we should take care of the MAC address02:34
*** reedip has joined #openstack-meeting02:34
zhenguoit must be same with ironic node's port mac02:34
*** mriedem has quit IRC02:34
wanghao_yes,  some validate need.02:35
zhenguoyes02:35
zhenguoand for port without MAC,  we can update it with ironic port mac02:35
*** esberglu has quit IRC02:36
wanghao_and port_type should be same too I think.02:36
wanghao_okay02:36
zhenguosure,02:36
shaohe_fengzhenguo: Hi, I'm coming.02:36
zhenguoshaohe_feng: o/02:36
liushengzhenguo: if specify port when booting a server, does that mean booting server with node specified ?02:36
shaohe_fengsorry for late02:36
*** thorst_afk has joined #openstack-meeting02:37
liushengshaohe_feng: o/02:37
zhenguoshaohe_feng: np02:37
zhenguoliusheng: if the specified port with MAC address, that means so02:37
*** ntpttr has quit IRC02:37
zhenguoliusheng: but if it just a neutron port without MAC address specified, it's not02:37
liushengzhenguo: port without node MAC specified can use by mogan server ?02:38
*** ntpttr has joined #openstack-meeting02:38
zhenguoliusheng: I mean neutron port instead of ironic port here02:39
luyaoa question,what's differences between neutron port and ironic port02:39
zhenguoluyao: aha, ironic port is physical nic02:39
zhenguoluyao: neutron port is logical port, or maybe switch port02:40
luyaozhenguo, attach interface means attach neutron port, right?02:40
zhenguoluyao: maybe this is easy for understanding, ironic port is server nic, neutron port is switch port02:40
liushengzhenguo: I also mean that, Mogan can only use neutron port with node mac address specified, so if we specifying neutron when booting mogan server, it potentially means creating server with node specified, right ?02:40
zhenguoluyao: yes02:41
*** thorst_afk has quit IRC02:41
luyaoXinran and I are working on attach/detach interface.I focus on attach .I have a question and need your comment, in nova , if user give net-id and not usable ports, nova will create a port for user, should we copy this pattern?02:41
zhenguoliusheng: maybe we can support neutron port without mac specified, then update the selected node's mac to it02:42
wanghao_liusheng: that will be same with specified port with node's mac.02:42
liushengzhenguo: got it, but not sure if neutron has that plan :D02:42
zhenguoluyao: yes, you should create a port, which means you get a port from virtual switch02:42
wanghao_liusheng: I'll ask hanzhan later :)02:43
zhenguoliusheng, wanghao_: hah, yes, we should ask some network guys02:43
*** ntpttr has quit IRC02:43
zhenguook, let's move on02:44
*** zhurong has joined #openstack-meeting02:44
zhenguobesides the new tasks, seems things are moving along nicely02:44
*** ntpttr has joined #openstack-meeting02:44
zhenguoI just moved configdrive and keypairs tasks to Done02:45
zhenguoand prioritized new flavor tasks :D02:46
zhenguoluyao: instance faults is ready now, right?02:47
zhenguoluyao: sorry, I don't get time to review it02:47
luyaozhenguo, yes02:47
zhenguoluyao: so, if the instance is not in error status, we return a None fault_info field?02:48
zhenguoluyao: or just get rid of the field02:48
luyaozhenguo, get rid of the field02:48
zhenguoluyao: cool02:48
zhenguoluayo: I see you update to add api-ref samples02:49
zhenguoluyao: but seems it's better to also add this filed description in the Response section02:49
*** ricolin has joined #openstack-meeting02:49
luyaozhenguo, ok, i will update it soon02:50
*** reedip has quit IRC02:50
zhenguoluyao: thanks02:50
*** awaugama has joined #openstack-meeting02:51
zhenguook, other task owners, do you have things to update?02:51
wanghao_zhenguo: do you plan to merge flavor spec? Or waiting more comments.02:51
zhenguowanghao_: I can add a POC patch first02:51
zhenguowanghao_: before land it02:51
wanghao_zhenguo: Sure02:51
*** ntpttr has quit IRC02:51
*** gouthamr has joined #openstack-meeting02:51
zhenguoaha, another thing02:52
zhenguoI plan to get rid of instances and instance_types releated stuff in Mogan02:52
zhenguowe will only have concepts of servers and flavors02:52
liushengzhenguo: yes, I will do that task02:52
zhenguoliusheng: thanks02:52
*** ntpttr has joined #openstack-meeting02:52
liushengzhenguo: and it is better to merge other changes firstly, since, this may cause many conflicts02:53
wanghao_cool02:53
zhenguoliusheng: yes02:53
wanghao_I saw we have flavors already.02:53
zhenguoI will try to clean up all instance types by this week02:53
zhenguowanghao_: hah02:53
wanghao_zhenguo: okay, I see,  clean up the left.02:54
zhenguoyes02:54
Xinranzhenguo,  for the detach interface part, it just need to detach from a specific port, no need to pass the network info right ?02:54
zhenguoXinran: seems yes02:55
zhenguoXinran: a port is enough :D02:55
zhenguook, anything else here?02:56
wanghao_Just FYI,spec for managing bms has ready,  welcome to review.02:56
Xinranzhenguo, ok thx02:57
zhenguoXinran: np02:57
zhenguowanghao_: thanks very much02:57
wanghao_zhenguo: np02:57
*** ntpttr has quit IRC02:57
zhenguoa, liusheng's patch to add a tool for migrate instances from nova to mogan has been there for a long time02:58
zhenguohope you guys can help to review02:58
liushengyes, thanks02:58
*** ricolin_ has joined #openstack-meeting02:58
zhenguoI don't have a env for that recently, lol02:58
zhenguooh, it's almost time02:58
*** ntpttr has joined #openstack-meeting02:58
wanghao_sure02:59
zhenguowe still have another topic02:59
zhenguo#topic open discussion02:59
*** openstack changes topic to "open discussion (Meeting topic: mogan)"02:59
zhenguowho's got a thing here...02:59
wanghao_time's up03:00
zhenguohah yes03:00
zhenguothanks y'all03:00
zhenguo#endmeeting03:00
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"03:00
openstackMeeting ended Thu Apr 27 03:00:32 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)03:00
openstackMinutes:        http://eavesdrop.openstack.org/meetings/mogan/2017/mogan.2017-04-27-02.00.html03:00
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/mogan/2017/mogan.2017-04-27-02.00.txt03:00
openstackLog:            http://eavesdrop.openstack.org/meetings/mogan/2017/mogan.2017-04-27-02.00.log.html03:00
*** ricolin has quit IRC03:01
*** reedip has joined #openstack-meeting03:03
*** ntpttr has quit IRC03:03
*** ntpttr has joined #openstack-meeting03:04
*** caowei has quit IRC03:06
*** thorst_afk has joined #openstack-meeting03:08
*** ntpttr has quit IRC03:09
*** ntpttr has joined #openstack-meeting03:10
*** jamesmca_ has joined #openstack-meeting03:12
*** caowei has joined #openstack-meeting03:14
*** jamesmca_ has quit IRC03:17
*** ntpttr has quit IRC03:18
*** ntpttr has joined #openstack-meeting03:19
*** baoli has joined #openstack-meeting03:19
*** huanxuan_ has joined #openstack-meeting03:20
*** ricolin_ has quit IRC03:20
*** ricolin has joined #openstack-meeting03:21
*** huanxuan has quit IRC03:23
*** ntpttr has quit IRC03:23
*** baoli has quit IRC03:24
*** ntpttr has joined #openstack-meeting03:25
*** thorst_afk has quit IRC03:25
*** fnaval has joined #openstack-meeting03:26
*** reedip has quit IRC03:26
*** armax has joined #openstack-meeting03:27
*** awaugama has quit IRC03:28
*** ntpttr has quit IRC03:29
*** ntpttr has joined #openstack-meeting03:31
*** xingchao has quit IRC03:32
*** reedip has joined #openstack-meeting03:32
*** ntpttr has quit IRC03:35
*** ntpttr has joined #openstack-meeting03:37
*** dimtruck is now known as zz_dimtruck03:37
*** ijw has joined #openstack-meeting03:39
*** ntpttr has quit IRC03:41
*** donghao has joined #openstack-meeting03:42
*** zhurong has quit IRC03:42
*** ntpttr has joined #openstack-meeting03:43
*** donghao has quit IRC03:46
*** ntpttr has quit IRC03:47
*** armax has quit IRC03:47
*** ntpttr has joined #openstack-meeting03:48
*** epico has quit IRC03:48
*** ntpttr has quit IRC03:53
*** ntpttr has joined #openstack-meeting03:54
*** ijw has quit IRC03:58
*** ntpttr has quit IRC03:59
*** ntpttr has joined #openstack-meeting04:00
*** reedip has quit IRC04:01
*** gouthamr has quit IRC04:01
*** kaisers has joined #openstack-meeting04:01
*** aeng has quit IRC04:02
*** ntpttr has quit IRC04:05
*** AndyU has quit IRC04:06
*** caowei has quit IRC04:06
*** rarora has quit IRC04:06
*** jamemcc has quit IRC04:06
*** JillS has quit IRC04:06
*** ntpttr has joined #openstack-meeting04:07
*** jinli has quit IRC04:07
*** eeiden has quit IRC04:08
*** ntpttr has quit IRC04:11
*** ntpttr has joined #openstack-meeting04:13
*** epico has joined #openstack-meeting04:13
*** ykatabam has quit IRC04:14
*** jinli has joined #openstack-meeting04:18
*** aeng has joined #openstack-meeting04:19
*** rarora has joined #openstack-meeting04:19
*** ntpttr has quit IRC04:20
*** baoli has joined #openstack-meeting04:20
*** ntpttr has joined #openstack-meeting04:20
*** reedip has joined #openstack-meeting04:23
*** ykatabam has joined #openstack-meeting04:24
*** baoli has quit IRC04:25
*** caowei has joined #openstack-meeting04:27
*** ntpttr has quit IRC04:27
*** iyamahat has joined #openstack-meeting04:28
*** ntpttr has joined #openstack-meeting04:28
*** anilvenkata has joined #openstack-meeting04:30
*** unicell has joined #openstack-meeting04:31
*** Sukhdev has quit IRC04:32
*** eeiden has joined #openstack-meeting04:33
*** ntpttr has quit IRC04:35
*** markstur has joined #openstack-meeting04:35
*** ntpttr has joined #openstack-meeting04:37
*** hongbin has quit IRC04:37
*** kaisers has quit IRC04:39
*** trinaths has joined #openstack-meeting04:41
*** ykatabam has quit IRC04:42
*** yamahata_ has joined #openstack-meeting04:45
*** zhhuabj has quit IRC04:46
*** Sukhdev has joined #openstack-meeting04:48
*** Sukhdev has quit IRC04:49
*** salv-orlando has joined #openstack-meeting04:51
*** jamemcc has joined #openstack-meeting04:51
*** JillS has joined #openstack-meeting04:51
*** ntpttr has quit IRC04:52
*** Sukhdev has joined #openstack-meeting04:53
*** ntpttr has joined #openstack-meeting04:55
*** adisky_ has joined #openstack-meeting04:56
*** ykatabam has joined #openstack-meeting04:57
*** armax has joined #openstack-meeting04:57
*** ijw has joined #openstack-meeting04:58
*** ntpttr has quit IRC04:59
*** ntpttr has joined #openstack-meeting05:01
*** ijw has quit IRC05:04
*** iceyao has quit IRC05:05
*** aeng has quit IRC05:07
*** AndyU has joined #openstack-meeting05:08
*** kaisers has joined #openstack-meeting05:09
*** galstrom_zzz is now known as galstrom05:09
*** tobberydberg has joined #openstack-meeting05:11
*** kaisers_ has joined #openstack-meeting05:14
*** iceyao has joined #openstack-meeting05:14
*** kaisers has quit IRC05:15
*** esberglu has joined #openstack-meeting05:16
*** esberglu has quit IRC05:16
*** esberglu has joined #openstack-meeting05:17
*** ayogi has joined #openstack-meeting05:17
*** aeng has joined #openstack-meeting05:21
*** henrynash has joined #openstack-meeting05:21
*** baoli has joined #openstack-meeting05:21
*** esberglu has quit IRC05:21
*** iceyao has quit IRC05:21
*** thorst_afk has joined #openstack-meeting05:22
*** ntpttr has quit IRC05:24
*** claudiub|3 has joined #openstack-meeting05:24
*** ntpttr has joined #openstack-meeting05:25
*** baoli has quit IRC05:25
*** janki has joined #openstack-meeting05:31
*** thorst_afk has quit IRC05:32
*** ntpttr has quit IRC05:34
*** iceyao has joined #openstack-meeting05:34
*** ntpttr has joined #openstack-meeting05:37
*** donghao has joined #openstack-meeting05:44
*** unicell1 has joined #openstack-meeting05:44
*** fnaval has quit IRC05:45
*** unicell has quit IRC05:46
*** fnaval has joined #openstack-meeting05:46
*** ntpttr has quit IRC05:46
*** ntpttr has joined #openstack-meeting05:48
*** donghao has quit IRC05:48
*** e0ne has joined #openstack-meeting05:49
*** fnaval has quit IRC05:50
*** janki has quit IRC05:51
*** bkopilov has quit IRC05:52
*** bkopilov has joined #openstack-meeting05:52
*** e0ne has quit IRC05:55
*** janki has joined #openstack-meeting05:56
*** janki has quit IRC05:56
*** janki has joined #openstack-meeting05:57
*** prateek has joined #openstack-meeting05:59
*** ijw has joined #openstack-meeting06:00
*** ntpttr has quit IRC06:02
*** ntpttr has joined #openstack-meeting06:03
*** ltomasbo|away is now known as ltomasbo06:04
*** ijw has quit IRC06:06
*** reedip has quit IRC06:07
*** zhurong has joined #openstack-meeting06:12
*** rkmrHonjo has quit IRC06:15
*** sridharg has joined #openstack-meeting06:18
*** amotoki has quit IRC06:19
*** aeng has quit IRC06:19
*** andreas_s has joined #openstack-meeting06:19
*** amotoki has joined #openstack-meeting06:20
*** baoli has joined #openstack-meeting06:22
*** vishnoianil has quit IRC06:24
*** ricolin_ has joined #openstack-meeting06:26
*** ntpttr has quit IRC06:26
*** baoli has quit IRC06:26
*** ntpttr has joined #openstack-meeting06:26
*** ricolin has quit IRC06:27
*** janki has quit IRC06:27
*** nadya has joined #openstack-meeting06:27
*** markstur has quit IRC06:28
*** artom has quit IRC06:30
*** nadya has quit IRC06:30
*** artom has joined #openstack-meeting06:30
*** janki has joined #openstack-meeting06:31
*** ntpttr has quit IRC06:31
*** ricolin__ has joined #openstack-meeting06:31
*** galstrom is now known as galstrom_zzz06:31
*** galstrom_zzz is now known as galstrom06:32
*** artom has quit IRC06:32
*** artom has joined #openstack-meeting06:32
*** ntpttr has joined #openstack-meeting06:33
*** rwsu has quit IRC06:33
*** rwsu has joined #openstack-meeting06:34
*** ricolin_ has quit IRC06:34
*** nadya has joined #openstack-meeting06:35
*** rbartal has joined #openstack-meeting06:35
*** matrohon has joined #openstack-meeting06:35
*** vishnoianil has joined #openstack-meeting06:36
*** Sukhdev has quit IRC06:39
*** ntpttr has quit IRC06:40
*** jprovazn has joined #openstack-meeting06:40
*** ntpttr has joined #openstack-meeting06:40
*** bobmel has quit IRC06:43
*** d0ugal has joined #openstack-meeting06:44
*** pcaruana has joined #openstack-meeting06:44
*** ntpttr has quit IRC06:45
*** Julien-zte has quit IRC06:45
*** rwsu has quit IRC06:45
*** rwsu has joined #openstack-meeting06:46
*** henrynash has quit IRC06:46
*** Julien-zte has joined #openstack-meeting06:46
*** ntpttr has joined #openstack-meeting06:46
*** salv-orlando has quit IRC06:48
*** ntpttr has quit IRC06:50
*** ntpttr has joined #openstack-meeting06:52
*** nadya has quit IRC06:54
*** Julien-zte has quit IRC06:54
*** Julien-zte has joined #openstack-meeting06:55
*** ntpttr has quit IRC06:56
*** ntpttr has joined #openstack-meeting06:59
*** zhurong has quit IRC07:02
*** ijw has joined #openstack-meeting07:02
*** dtrainor has quit IRC07:03
*** ykatabam has quit IRC07:05
*** ntpttr has quit IRC07:05
*** iyamahat has quit IRC07:06
*** zhurong has joined #openstack-meeting07:06
*** ntpttr has joined #openstack-meeting07:07
*** salv-orlando has joined #openstack-meeting07:07
*** ijw has quit IRC07:08
*** Nakato has quit IRC07:08
*** Nakato has joined #openstack-meeting07:08
*** tesseract has joined #openstack-meeting07:09
*** ntpttr has quit IRC07:11
*** ntpttr has joined #openstack-meeting07:13
*** Julien-zte has quit IRC07:17
*** ntpttr has quit IRC07:17
*** ntpttr has joined #openstack-meeting07:18
*** Julien-zte has joined #openstack-meeting07:18
*** ltomasbo is now known as ltomasbo|away07:18
*** beagles has quit IRC07:19
*** zhhuabj has joined #openstack-meeting07:20
*** b3nt_pin has joined #openstack-meeting07:21
*** armax has quit IRC07:21
*** abalutoiu__ has quit IRC07:21
*** baoli has joined #openstack-meeting07:22
*** ntpttr has quit IRC07:23
*** ntpttr has joined #openstack-meeting07:24
*** baoli has quit IRC07:27
*** Julien-zte has quit IRC07:28
*** thorst_afk has joined #openstack-meeting07:28
*** Julien-zte has joined #openstack-meeting07:29
*** Nakato has quit IRC07:30
*** phil_ has joined #openstack-meeting07:31
*** phil_ is now known as Guest3797707:31
*** Nakato has joined #openstack-meeting07:31
*** ntpttr has quit IRC07:33
*** alexchadin has joined #openstack-meeting07:34
*** ralonsoh has joined #openstack-meeting07:34
*** ntpttr has joined #openstack-meeting07:35
*** brault has joined #openstack-meeting07:37
*** zhurong has quit IRC07:37
*** ntpttr has quit IRC07:39
*** egallen has joined #openstack-meeting07:40
*** ntpttr has joined #openstack-meeting07:40
*** ad_rien_ has quit IRC07:41
*** toscalix has joined #openstack-meeting07:42
*** abalutoiu has joined #openstack-meeting07:42
*** ntpttr has quit IRC07:45
*** matrohon has quit IRC07:46
*** ntpttr has joined #openstack-meeting07:47
*** mlakat_ has joined #openstack-meeting07:47
*** mlakat has quit IRC07:47
*** mlakat_ is now known as mlakat07:47
*** thorst_afk has quit IRC07:48
*** dbecker has joined #openstack-meeting07:49
*** abalutoiu has quit IRC07:51
*** ntpttr has quit IRC07:51
*** e0ne has joined #openstack-meeting07:52
*** ntpttr has joined #openstack-meeting07:53
*** alexchadin has quit IRC07:56
*** alexchadin has joined #openstack-meeting07:57
*** ykatabam has joined #openstack-meeting07:57
*** ntpttr has quit IRC07:57
*** jchhatbar has joined #openstack-meeting07:58
*** ntpttr has joined #openstack-meeting07:58
*** Julien-zte has quit IRC08:00
*** janki has quit IRC08:00
*** Julien-zte has joined #openstack-meeting08:01
*** alexchadin has quit IRC08:01
*** ntpttr has quit IRC08:03
*** cody-somerville has quit IRC08:03
*** csomerville has joined #openstack-meeting08:03
*** ntpttr has joined #openstack-meeting08:04
*** janki has joined #openstack-meeting08:04
*** ijw has joined #openstack-meeting08:04
*** electrofelix has joined #openstack-meeting08:05
*** jchhatbar has quit IRC08:05
*** nadya has joined #openstack-meeting08:06
*** mickeys has quit IRC08:06
*** abalutoiu has joined #openstack-meeting08:07
*** ntpttr has quit IRC08:09
*** ijw has quit IRC08:09
*** ntpttr has joined #openstack-meeting08:10
*** iyamahat has joined #openstack-meeting08:11
*** jamesmca_ has joined #openstack-meeting08:13
*** jamesmca_ has quit IRC08:17
*** henrynash has joined #openstack-meeting08:18
*** ntpttr has quit IRC08:19
*** zhurong has joined #openstack-meeting08:19
*** ntpttr has joined #openstack-meeting08:20
*** amotoki has quit IRC08:22
*** bkopilov has quit IRC08:23
*** iyamahat has quit IRC08:23
*** zhhuabj has quit IRC08:23
*** sheeprine has quit IRC08:23
*** baoli has joined #openstack-meeting08:23
*** trozet has joined #openstack-meeting08:24
*** rossella_s has joined #openstack-meeting08:27
*** sheeprine has joined #openstack-meeting08:27
*** Julien-zte has quit IRC08:27
*** baoli has quit IRC08:28
*** Julien-zte has joined #openstack-meeting08:29
*** andreas_s has quit IRC08:30
*** ntpttr has quit IRC08:30
*** Julien-zte has quit IRC08:31
*** Julien-zte has joined #openstack-meeting08:32
*** amotoki has joined #openstack-meeting08:32
*** ntpttr has joined #openstack-meeting08:33
*** lin_yang has quit IRC08:33
*** ntpttr has quit IRC08:37
*** galstrom is now known as galstrom_zzz08:37
*** ntpttr has joined #openstack-meeting08:39
*** jbadiapa has quit IRC08:39
*** makowals_ has quit IRC08:39
*** reedip has joined #openstack-meeting08:40
*** ntpttr has quit IRC08:43
*** ltomasbo|away is now known as ltomasbo08:43
*** ntpttr has joined #openstack-meeting08:44
*** jbadiapa has joined #openstack-meeting08:45
*** d0ugal has quit IRC08:45
*** Julien-zte has quit IRC08:45
*** andreas_s has joined #openstack-meeting08:46
*** martinkopec has joined #openstack-meeting08:46
*** Julien-zte has joined #openstack-meeting08:46
*** janki has quit IRC08:48
*** e0ne has quit IRC08:48
*** e0ne has joined #openstack-meeting08:49
*** ntpttr has quit IRC08:49
*** janki has joined #openstack-meeting08:50
*** lpetrut has joined #openstack-meeting08:50
*** ntpttr has joined #openstack-meeting08:51
*** bkopilov has joined #openstack-meeting08:52
*** makowals has joined #openstack-meeting08:52
*** samP has joined #openstack-meeting08:53
*** esberglu has joined #openstack-meeting08:54
*** esberglu has quit IRC08:54
*** ntpttr has quit IRC08:55
*** ntpttr has joined #openstack-meeting08:57
*** reedip has quit IRC09:02
*** Julien-zte has quit IRC09:03
*** makowals has quit IRC09:04
*** Julien-zte has joined #openstack-meeting09:04
*** d0ugal has joined #openstack-meeting09:04
*** d0ugal has quit IRC09:04
*** d0ugal has joined #openstack-meeting09:04
*** ntpttr has quit IRC09:04
*** samP has quit IRC09:05
*** ntpttr has joined #openstack-meeting09:05
*** ijw has joined #openstack-meeting09:06
*** mickeys has joined #openstack-meeting09:07
*** henrynash has quit IRC09:08
*** Julien-zte has quit IRC09:09
*** Julien-zte has joined #openstack-meeting09:10
*** Julien-zte has quit IRC09:11
*** ijw has quit IRC09:11
*** mickeys has quit IRC09:12
*** Julien-zte has joined #openstack-meeting09:13
*** alexchadin has joined #openstack-meeting09:14
*** aarefiev_afk is now known as aarefiev09:16
*** AndyU has quit IRC09:18
*** eeiden has quit IRC09:18
*** rarora has quit IRC09:18
*** jamemcc has quit IRC09:19
*** JillS has quit IRC09:19
*** jinli has quit IRC09:19
*** msimonin has joined #openstack-meeting09:20
*** amotoki has quit IRC09:21
*** sambetts|afk is now known as sambetts09:21
*** ntpttr has quit IRC09:22
*** amotoki has joined #openstack-meeting09:22
*** ntpttr has joined #openstack-meeting09:23
*** amotoki has quit IRC09:23
*** baoli has joined #openstack-meeting09:24
*** Julien-zte has quit IRC09:25
*** Julien-zte has joined #openstack-meeting09:27
*** JillS has joined #openstack-meeting09:27
*** ntpttr has quit IRC09:28
*** baoli has quit IRC09:29
*** ntpttr has joined #openstack-meeting09:29
*** jamemcc has joined #openstack-meeting09:29
*** e0ne has quit IRC09:30
*** ntpttr has quit IRC09:33
*** jinli has joined #openstack-meeting09:35
*** ntpttr has joined #openstack-meeting09:35
*** eeiden has joined #openstack-meeting09:35
*** e0ne has joined #openstack-meeting09:36
*** ntpttr has quit IRC09:39
*** ntpttr has joined #openstack-meeting09:41
*** amotoki has joined #openstack-meeting09:41
*** thorst_afk has joined #openstack-meeting09:45
*** andreas_s has quit IRC09:46
*** ntpttr has quit IRC09:48
*** esberglu has joined #openstack-meeting09:48
*** ntpttr has joined #openstack-meeting09:49
*** salv-orl_ has joined #openstack-meeting09:49
*** thorst_afk has quit IRC09:50
*** esberglu has quit IRC09:52
*** salv-orlando has quit IRC09:52
*** lpetrut_ has joined #openstack-meeting09:58
*** Julien-zte has quit IRC09:59
*** ociuhandu has quit IRC09:59
*** lpetrut has quit IRC10:00
*** ricolin__ has quit IRC10:01
*** d0ugal has quit IRC10:01
*** nadya has quit IRC10:01
*** ricolin has joined #openstack-meeting10:02
*** ntpttr has quit IRC10:02
*** alexchadin has quit IRC10:04
*** ntpttr has joined #openstack-meeting10:05
*** iceyao has quit IRC10:05
*** ijw has joined #openstack-meeting10:07
*** d0ugal has joined #openstack-meeting10:07
*** mickeys has joined #openstack-meeting10:08
*** zul has joined #openstack-meeting10:09
*** ntpttr has quit IRC10:09
*** iceyao has joined #openstack-meeting10:10
*** ntpttr has joined #openstack-meeting10:10
*** trinaths has left #openstack-meeting10:11
*** ijw has quit IRC10:12
*** iceyao has quit IRC10:13
*** andreas_s has joined #openstack-meeting10:13
*** mickeys has quit IRC10:15
*** ntpttr has quit IRC10:15
*** AndyU has joined #openstack-meeting10:15
*** ntpttr has joined #openstack-meeting10:16
*** kevinz has quit IRC10:19
*** zhurong has quit IRC10:20
*** cloud-liang has joined #openstack-meeting10:21
*** ntpttr has quit IRC10:21
*** d0ugal has quit IRC10:21
*** cloud-liang has quit IRC10:22
*** cloud-liang has joined #openstack-meeting10:22
*** ntpttr has joined #openstack-meeting10:22
*** baoli has joined #openstack-meeting10:25
*** mlakat has quit IRC10:26
*** d0ugal has joined #openstack-meeting10:26
*** ntpttr has quit IRC10:27
*** huanxuan_ has quit IRC10:27
*** zhurong has joined #openstack-meeting10:28
*** ntpttr has joined #openstack-meeting10:28
*** amotoki has quit IRC10:28
*** yangyape_ has joined #openstack-meeting10:29
*** epico has quit IRC10:29
*** rarora has joined #openstack-meeting10:29
*** baoli has quit IRC10:30
*** iceyao has joined #openstack-meeting10:30
*** nadya has joined #openstack-meeting10:32
*** nadya has quit IRC10:32
*** ntpttr has quit IRC10:32
*** iceyao has quit IRC10:35
*** ntpttr has joined #openstack-meeting10:35
*** yangyape_ has quit IRC10:37
*** jkilpatr has quit IRC10:38
*** salv-orl_ has quit IRC10:38
*** yangyapeng has quit IRC10:38
*** yangyapeng has joined #openstack-meeting10:39
*** yolkfull has quit IRC10:43
*** yangyapeng has quit IRC10:43
*** nadya has joined #openstack-meeting10:44
*** d0ugal has quit IRC10:45
*** thorst_afk has joined #openstack-meeting10:46
*** ntpttr has quit IRC10:47
*** ntpttr has joined #openstack-meeting10:49
*** thorst_afk has quit IRC10:51
*** ntpttr has quit IRC10:53
*** ntpttr has joined #openstack-meeting10:54
*** caowei has quit IRC10:57
*** caowei has joined #openstack-meeting10:57
*** ntpttr has quit IRC10:59
*** ntpttr has joined #openstack-meeting11:01
*** sdague has joined #openstack-meeting11:04
*** d0ugal has joined #openstack-meeting11:05
*** jkilpatr has joined #openstack-meeting11:08
*** ijw has joined #openstack-meeting11:09
*** ntpttr has quit IRC11:10
*** markvoelker_ has joined #openstack-meeting11:11
*** markvoelker has quit IRC11:12
*** ntpttr has joined #openstack-meeting11:12
*** ijw has quit IRC11:14
*** makowals has joined #openstack-meeting11:16
*** ntpttr has quit IRC11:17
*** ansmith has quit IRC11:18
*** ntpttr has joined #openstack-meeting11:18
*** caowei has quit IRC11:18
*** cloud-liang has quit IRC11:18
*** zhonghua has quit IRC11:23
*** zhonghua has joined #openstack-meeting11:23
*** ntpttr has quit IRC11:26
*** ntpttr has joined #openstack-meeting11:27
*** kaisers_ has quit IRC11:29
*** kaisers has joined #openstack-meeting11:30
*** iceyao has joined #openstack-meeting11:30
*** prateek has quit IRC11:30
*** ntpttr has quit IRC11:32
*** ntpttr has joined #openstack-meeting11:33
*** anilvenkata has quit IRC11:34
*** kaisers has quit IRC11:34
*** yangyapeng has joined #openstack-meeting11:36
*** markvoelker_ has quit IRC11:38
*** prateek has joined #openstack-meeting11:41
*** kaisers has joined #openstack-meeting11:41
*** donghao has joined #openstack-meeting11:42
*** ntpttr has quit IRC11:45
*** amotoki has joined #openstack-meeting11:45
*** donghao has quit IRC11:47
*** ntpttr has joined #openstack-meeting11:47
*** prateek_ has joined #openstack-meeting11:48
*** thorst_afk has joined #openstack-meeting11:51
*** askb has quit IRC11:51
*** andreas_s has quit IRC11:51
*** prateek has quit IRC11:51
*** ntpttr has quit IRC11:54
*** ntpttr has joined #openstack-meeting11:54
*** dprince has joined #openstack-meeting11:55
*** amotoki has quit IRC11:58
*** julim has quit IRC12:00
*** amotoki has joined #openstack-meeting12:01
*** pchavva has joined #openstack-meeting12:01
*** dgonzalez has quit IRC12:02
*** ntpttr has quit IRC12:02
*** pradk has joined #openstack-meeting12:06
*** ntpttr has joined #openstack-meeting12:07
*** dgonzalez has joined #openstack-meeting12:07
*** rfolco has joined #openstack-meeting12:08
*** zhonghua has quit IRC12:09
*** zhonghua has joined #openstack-meeting12:10
*** xiaohhui has quit IRC12:10
*** ijw has joined #openstack-meeting12:10
*** ntpttr has quit IRC12:11
*** annegentle has joined #openstack-meeting12:13
*** ntpttr has joined #openstack-meeting12:13
*** jamesmca_ has joined #openstack-meeting12:14
*** ijw has quit IRC12:16
*** ad_rien_ has joined #openstack-meeting12:16
*** thorst_a_ has joined #openstack-meeting12:17
*** ntpttr has quit IRC12:18
*** jamesmca_ has quit IRC12:18
*** thorst_afk has quit IRC12:19
*** ntpttr has joined #openstack-meeting12:19
*** amotoki has quit IRC12:19
*** jaypipes has joined #openstack-meeting12:23
*** ntpttr has quit IRC12:24
*** zhurong has quit IRC12:25
*** ntpttr has joined #openstack-meeting12:25
*** ociuhandu has joined #openstack-meeting12:25
*** amotoki has joined #openstack-meeting12:25
*** matrohon has joined #openstack-meeting12:29
*** ntpttr has quit IRC12:32
*** esberglu has joined #openstack-meeting12:32
*** esberglu has quit IRC12:32
*** ntpttr has joined #openstack-meeting12:33
*** amotoki has quit IRC12:34
*** markvoelker has joined #openstack-meeting12:35
*** cloud-liang has joined #openstack-meeting12:41
*** annegentle has quit IRC12:41
*** ntpttr has quit IRC12:42
*** mlakat has joined #openstack-meeting12:42
*** ntpttr has joined #openstack-meeting12:43
*** ansmith has joined #openstack-meeting12:45
*** mickeys has joined #openstack-meeting12:47
*** ntpttr has quit IRC12:47
*** tobberyd_ has joined #openstack-meeting12:48
*** ntpttr has joined #openstack-meeting12:49
*** mickeys has quit IRC12:51
*** tobberydberg has quit IRC12:52
*** bobh has joined #openstack-meeting12:52
*** zhonghua has quit IRC12:53
*** ntpttr has quit IRC12:53
*** zhonghua has joined #openstack-meeting12:53
*** ntpttr has joined #openstack-meeting12:55
*** amotoki has joined #openstack-meeting12:55
*** zhurong has joined #openstack-meeting12:58
*** nadya_ has joined #openstack-meeting12:59
*** ayogi has quit IRC12:59
*** nadya has quit IRC12:59
*** trinaths has joined #openstack-meeting13:02
*** tobberyd_ has quit IRC13:03
*** d0ugal has quit IRC13:04
*** wanghao has joined #openstack-meeting13:04
*** trinaths has quit IRC13:04
*** tobberydberg has joined #openstack-meeting13:04
*** wanghao has quit IRC13:05
*** ayoung has joined #openstack-meeting13:06
*** prateek_ has quit IRC13:06
*** mriedem has joined #openstack-meeting13:06
*** julim has joined #openstack-meeting13:06
*** tobberydberg has quit IRC13:07
*** wanghao_ has quit IRC13:07
*** tobberydberg has joined #openstack-meeting13:07
*** ntpttr has quit IRC13:08
*** julim has quit IRC13:09
*** julim has joined #openstack-meeting13:09
*** Guest94155 has quit IRC13:10
*** ntpttr has joined #openstack-meeting13:11
*** prateek has joined #openstack-meeting13:12
*** VW has joined #openstack-meeting13:12
*** ijw has joined #openstack-meeting13:12
*** salv-orlando has joined #openstack-meeting13:12
*** anilvenkata has joined #openstack-meeting13:14
*** zhhuabj has joined #openstack-meeting13:15
*** janki is now known as janki|afk13:16
*** ijw has quit IRC13:17
*** nadya_ has quit IRC13:17
*** thorst_a_ is now known as thorst13:19
*** d0ugal has joined #openstack-meeting13:20
*** Julien-zte has joined #openstack-meeting13:20
*** spzala has joined #openstack-meeting13:22
*** baoli has joined #openstack-meeting13:22
*** baoli has quit IRC13:23
*** ntpttr has quit IRC13:24
*** ntpttr has joined #openstack-meeting13:25
*** Julien-zte has quit IRC13:26
*** baoli has joined #openstack-meeting13:26
*** chandankumar is now known as chkumar|off13:26
*** Julien-zte has joined #openstack-meeting13:27
*** Julien-zte has quit IRC13:28
*** Julien-zte has joined #openstack-meeting13:29
*** Julien-zte has quit IRC13:30
*** iceyao has quit IRC13:30
*** Julien-zte has joined #openstack-meeting13:31
*** iceyao has joined #openstack-meeting13:31
*** iceyao has quit IRC13:31
*** esberglu has joined #openstack-meeting13:32
*** esberglu has quit IRC13:32
*** esberglu has joined #openstack-meeting13:33
*** VW has quit IRC13:33
*** VW has joined #openstack-meeting13:34
*** martinkopec has quit IRC13:34
*** ntpttr has quit IRC13:35
*** ntpttr has joined #openstack-meeting13:35
*** jaugustine has joined #openstack-meeting13:36
*** Julien-zte has quit IRC13:37
*** Julien-zte has joined #openstack-meeting13:38
*** VW has quit IRC13:38
*** eharney has joined #openstack-meeting13:38
*** ntpttr has quit IRC13:42
*** ntpttr has joined #openstack-meeting13:43
*** janki|afk is now known as janki13:46
*** diablo_rojo has joined #openstack-meeting13:46
*** lamt has joined #openstack-meeting13:49
*** adisky_ has quit IRC13:49
*** ntpttr has quit IRC13:50
*** ntpttr has joined #openstack-meeting13:51
*** kevinz has joined #openstack-meeting13:53
*** ntpttr has quit IRC13:56
*** ntpttr has joined #openstack-meeting13:57
*** nadya has joined #openstack-meeting13:59
*** kevinz has quit IRC13:59
*** dtrainor has joined #openstack-meeting14:00
*** kevinz has joined #openstack-meeting14:00
*** annegentle has joined #openstack-meeting14:03
*** ntpttr has quit IRC14:03
*** ntpttr has joined #openstack-meeting14:05
*** rbak has joined #openstack-meeting14:07
*** ntpttr has quit IRC14:10
*** ntpttr has joined #openstack-meeting14:11
*** hongbin has joined #openstack-meeting14:13
*** zz_dimtruck is now known as dimtruck14:13
*** ijw has joined #openstack-meeting14:13
*** ntpttr has quit IRC14:18
*** ijw has quit IRC14:19
*** ntpttr has joined #openstack-meeting14:19
*** claudiub|3 has quit IRC14:19
*** iceyao has joined #openstack-meeting14:19
*** felipemonteiro__ has joined #openstack-meeting14:21
*** electrofelix has quit IRC14:21
*** ad_rien_ has quit IRC14:22
*** cloudrancher has joined #openstack-meeting14:23
*** felipemonteiro_ has joined #openstack-meeting14:23
*** salv-orlando has quit IRC14:23
*** ntpttr has quit IRC14:24
*** ntpttr has joined #openstack-meeting14:25
*** prateek has quit IRC14:26
*** felipemonteiro__ has quit IRC14:27
*** diablo_rojo has quit IRC14:27
*** yangyape_ has joined #openstack-meeting14:27
*** d0ugal has quit IRC14:28
*** fnaval has joined #openstack-meeting14:29
*** ataraday_ has joined #openstack-meeting14:30
*** yangyapeng has quit IRC14:30
*** gouthamr has joined #openstack-meeting14:31
*** d0ugal has joined #openstack-meeting14:32
*** felipemonteiro has joined #openstack-meeting14:33
*** jchhatbar has joined #openstack-meeting14:35
*** felipemonteiro_ has quit IRC14:35
*** janki has quit IRC14:36
*** ntpttr has quit IRC14:36
*** anilvenkata has quit IRC14:37
*** ntpttr has joined #openstack-meeting14:37
*** salv-orlando has joined #openstack-meeting14:38
*** zhurong has quit IRC14:39
*** d0ugal has quit IRC14:39
*** lpetrut_ has quit IRC14:40
*** cloudrancher has quit IRC14:41
*** awaugama has joined #openstack-meeting14:42
*** ntpttr has quit IRC14:42
*** ltomasbo is now known as ltomasbo|away14:42
*** donghao has joined #openstack-meeting14:42
*** darrenc has quit IRC14:43
*** ntpttr has joined #openstack-meeting14:43
*** tobberyd_ has joined #openstack-meeting14:47
*** d0ugal has joined #openstack-meeting14:47
*** ntpttr has quit IRC14:50
*** tobberydberg has quit IRC14:51
*** ntpttr has joined #openstack-meeting14:51
*** jamesdenton has joined #openstack-meeting14:51
*** tobberyd_ has quit IRC14:52
*** armax has joined #openstack-meeting14:52
*** ralonsoh_ has joined #openstack-meeting14:55
*** ntpttr has quit IRC14:55
*** d0ugal has quit IRC14:56
*** ralonsoh has quit IRC14:57
*** ntpttr has joined #openstack-meeting14:57
*** sridharg has quit IRC14:58
*** fnaval has quit IRC14:58
*** fnaval has joined #openstack-meeting14:59
*** Kevin_Zheng has joined #openstack-meeting14:59
*** cloudrancher has joined #openstack-meeting14:59
*** ralonsoh has joined #openstack-meeting15:02
*** ralonsoh_ has quit IRC15:02
*** fnaval has quit IRC15:03
*** iceyao has quit IRC15:05
*** pcaruana has quit IRC15:05
*** claudiub has joined #openstack-meeting15:07
*** iyamahat has joined #openstack-meeting15:07
*** zhonghua has quit IRC15:07
*** kevinz has quit IRC15:07
*** zhonghua has joined #openstack-meeting15:08
*** ntpttr has quit IRC15:10
*** rbartal has quit IRC15:10
*** mlakat has quit IRC15:11
*** mickeys has joined #openstack-meeting15:11
*** ntpttr has joined #openstack-meeting15:11
*** zigo has quit IRC15:17
*** ltomasbo|away is now known as ltomasbo15:18
*** fnaval has joined #openstack-meeting15:18
*** ntpttr has quit IRC15:20
*** msimonin has quit IRC15:20
*** d0ugal has joined #openstack-meeting15:21
*** ntpttr has joined #openstack-meeting15:21
*** armax has quit IRC15:23
*** jamesmca_ has joined #openstack-meeting15:25
*** iceyao has joined #openstack-meeting15:25
*** chyka has joined #openstack-meeting15:26
*** Guest37977 has quit IRC15:26
*** pnavarro has joined #openstack-meeting15:28
*** iceyao has quit IRC15:30
*** markvoelker has quit IRC15:30
*** markvoelker has joined #openstack-meeting15:31
*** ijw has joined #openstack-meeting15:33
*** msimonin has joined #openstack-meeting15:35
*** aarefiev is now known as aarefiev_afk15:35
*** SpamapS has quit IRC15:37
*** SpamapS has joined #openstack-meeting15:37
*** VW has joined #openstack-meeting15:39
*** dprince has quit IRC15:41
*** unicell has joined #openstack-meeting15:44
*** unicell1 has quit IRC15:44
*** ntpttr has quit IRC15:47
*** ntpttr has joined #openstack-meeting15:48
*** yamahata_ has quit IRC15:48
*** iyamahat has quit IRC15:49
*** kevinz has joined #openstack-meeting15:49
*** salv-orl_ has joined #openstack-meeting15:50
*** makowals has quit IRC15:50
*** pradk has quit IRC15:52
*** msimonin has quit IRC15:52
*** salv-orlando has quit IRC15:52
*** msimonin has joined #openstack-meeting15:52
*** jchhatbar has quit IRC15:53
*** msimonin has quit IRC15:53
*** msimonin has joined #openstack-meeting15:53
*** ntpttr has quit IRC15:53
*** kevinz has quit IRC15:54
*** msimonin has quit IRC15:54
*** Apoorva has joined #openstack-meeting15:54
*** msimonin has joined #openstack-meeting15:54
*** msimonin has quit IRC15:55
*** ntpttr has joined #openstack-meeting15:55
*** msimonin has joined #openstack-meeting15:55
*** msimonin has quit IRC15:55
*** msimonin has joined #openstack-meeting15:55
*** msimonin has quit IRC15:56
*** msimonin has joined #openstack-meeting15:56
*** msimonin has quit IRC15:57
*** e0ne has quit IRC15:57
*** ad_rien_ has joined #openstack-meeting15:59
*** Julien-zte has quit IRC15:59
oomichi#startmeeting qa16:00
openstackMeeting started Thu Apr 27 16:00:29 2017 UTC and is due to finish in 60 minutes.  The chair is oomichi. Information about MeetBot at http://wiki.debian.org/MeetBot.16:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.16:00
*** openstack changes topic to " (Meeting topic: qa)"16:00
openstackThe meeting name has been set to 'qa'16:00
oomichihi, who are joining to the meeting today?16:00
clarkbI am sort of around16:01
oomichiandreaf: is on the air now today16:01
*** Julien-zte has joined #openstack-meeting16:01
oomichiclarkb: o/16:01
oomichimtreinish: sdague: afazekas: ping16:02
mtreinisho/16:02
*** Julien-zte has quit IRC16:02
afazekaso/16:02
*** ayogi has joined #openstack-meeting16:02
oomichiok, let's start a meeting16:02
*** Patifa has joined #openstack-meeting16:02
*** lamt has quit IRC16:03
oomichi#link https://wiki.openstack.org/w/index.php?title=Meetings/QATeamMeeting#Agenda_for_April_27th_2017_.281700_UTC.2916:03
oomichi^^^ today agenda16:03
oomichifrom the previous meeting16:03
oomichi"ACTION: andreaf to setup etherpad for Forum session"16:03
oomichiandreaf: is preparing the above and we will be able to see it soon16:04
*** iyamahat has joined #openstack-meeting16:04
oomichi"ACTION: gmann to add periodic job status tracking on bug triage etherpad"16:04
oomichiI tried to reach gmann about this but could not get status about that16:04
oomichi#topic The Forum, Boston16:05
*** openstack changes topic to "The Forum, Boston (Meeting topic: qa)"16:05
oomichiWe have onboarding forum May 8(Mon), 16:4016:05
*** nadya has quit IRC16:05
oomichiI guess that could be like upstream training for new contributors16:05
*** eharney has quit IRC16:05
*** makowals has joined #openstack-meeting16:06
oomichibut I am not getting how to make process for this meetup yet, do someone have idea for that?16:06
*** Ak13 has joined #openstack-meeting16:06
*** ntpttr has quit IRC16:06
mtreinishoomichi: it is, the idea is to get people started contributing to qa projects16:06
mtreinishgive them a detailed introduction to the project, etc16:06
*** galstrom_zzz is now known as galstrom16:07
oomichimtreinish: yeah, we had this kind of meetup in HPE office before16:07
*** ntpttr has joined #openstack-meeting16:07
*** Julien-zte has joined #openstack-meeting16:07
oomichimaybe we will separate groups into some interested topics16:07
mtreinishoomichi: we did?16:08
* mtreinish doesn't rememeber16:08
*** pewp has quit IRC16:08
oomichimtreinish: you made the mid-cycle meetup at HP office when you were PTL16:08
*** pewp has joined #openstack-meeting16:08
oomichimtreinish: I cannot remember the place nam..16:09
oomichiname16:09
mtreinishI did that a few times (it was easy to organize that way) But I don't remember having one to onboard new people16:09
mtreinishthe only time we did that which I remember was in Darmstadt with a combine infra/qa midcycle16:09
mtreinishbut anyway this is separate, and not important :)16:09
oomichihehe, ok anyways it would be nice to have some etherpads how to make it16:10
oomichianother forum is  May 11(Thurs), 9:0016:10
oomichi#link https://www.openstack.org/summit/boston-2017/summit-schedule/events/18777/users-operators-adoption-of-qa-tools-plugins16:11
oomichiandreaf: is preparing for it16:11
oomichido we have items need to discuss Forum at this time?16:11
oomichi#topic Outreachy intern16:11
*** openstack changes topic to "Outreachy intern (Meeting topic: qa)"16:11
oomichiI guess rodrigods's turn for this16:12
*** ntpttr has quit IRC16:12
*** cloud-liang has quit IRC16:12
oomichirodrigods: ping16:12
rodrigodssorry16:13
rodrigodsso...16:13
rodrigodsthis is more a fyi16:13
*** ntpttr has joined #openstack-meeting16:13
rodrigodswe are going to have an Outreachy intern that will work to add jobs where keystone will run against LDAP as identity backend16:13
rodrigodsonce the proper announces are made, i'll introduce the intern to you, probably in this meeting :)16:14
mtreinishrodrigods: ok, cool16:14
*** makowals has quit IRC16:14
mtreinishrodrigods: that does sound like a good job to add to the gate too16:14
rodrigodsmtreinish, exactly :)16:14
*** ltosky[m] has joined #openstack-meeting16:14
rodrigodsso i guess she will be more present in the -qa site than in -keystone :)16:15
rodrigodsside*16:15
oomichirodrigods: good, does he have some patches already ?16:15
*** makowals has joined #openstack-meeting16:15
rodrigodslet me take a look16:15
rodrigodsonly general patches, not related to the project yet16:15
oomichirodrigods: ok, thanks for the info. That is good for us :)16:16
rodrigodsoomichi, ++16:16
oomichi#topic Gate Stability - status update16:16
*** openstack changes topic to "Gate Stability - status update (Meeting topic: qa)"16:16
*** cloud-liang has joined #openstack-meeting16:16
oomichi#link https://goo.gl/ptPgEw16:16
oomichi#link http://status.openstack.org/elastic-recheck/gate.html16:16
oomichithe above pages show it seems good status16:17
*** makowals has quit IRC16:17
oomichido we have some topics about gate status?16:17
mtreinishoomichi: you should also probably link to: http://status.openstack.org/elastic-recheck/data/integrated_gate.html16:17
mtreinishwhich shows the failures we're not tracking yet16:18
*** ntpttr has quit IRC16:18
oomichi#link http://status.openstack.org/elastic-recheck/data/integrated_gate.html16:18
*** eharney has joined #openstack-meeting16:18
oomichimtreinish: yeah, that seems useful16:19
*** ntpttr has joined #openstack-meeting16:19
clarkbso this was one the things I wanted to bring up. Generally we are stable. There are a lot of failures due to timeouts though. Might be good to have people try to classify them so we can determine if they are slow nodes, slow code, slow tests, bugs, whatever16:20
oomichiclarkb: mtreinish: the page shows only general jobs or including periodic jobs and non-voting jobs?16:21
*** matrohon has quit IRC16:22
mtreinishclarkb: it's kinda hard to do that though16:22
clarkbmy understanding is that integrated_gate is just gate jobs for the "integrated" pipeline16:22
mtreinishlike how can we tell if the code is slow vs the guest is running on the same node as someone running mprime16:22
mtreinishoomichi: yeah what clarkb said16:22
*** tobberydberg has joined #openstack-meeting16:22
oomichiclarkb: cool, that is helpful16:23
clarkbmtreinish: one example would be if devstack takes an hour thats likely a slow node16:23
clarkbwhereas random dsvm job with default timeout of 40 minutes is just slow code against to short a timeout16:23
*** cdub has joined #openstack-meeting16:23
*** donghao has quit IRC16:23
clarkb(I don't actually know if thats how it will shake out)16:24
*** trozet has quit IRC16:25
oomichiok, it would be nice to check this status also every week for selecting which issue should be concentrated anyways16:26
*** galstrom is now known as galstrom_zzz16:26
oomichi#topic Spec reviews16:26
*** openstack changes topic to "Spec reviews (Meeting topic: qa)"16:26
*** ntpttr has quit IRC16:26
*** abalutoiu has quit IRC16:26
mtreinishclarkb: maybe, or maybe someone introduced a bad db migration and caused devstack to time out16:26
*** tobberydberg has quit IRC16:27
mtreinishclarkb: but I agree categorizing them is at least something to start with16:27
mtreinishand we can analyze from there16:27
oomichi+116:27
*** ntpttr has joined #openstack-meeting16:27
oomichi#link https://review.openstack.org/#/q/status:open+project:openstack/qa-specs,n,z16:28
oomichi#link https://review.openstack.org/#/c/443504/ is only active spec for HA testing16:28
*** dprince has joined #openstack-meeting16:28
oomichiI put some comments before and it is good to get more feedback16:29
oomichiwe can move if not having more items on spec16:29
Ak13is someone still working on this https://review.openstack.org/#/c/255023/16:29
oomichi#topic Tempest16:29
*** openstack changes topic to "Tempest (Meeting topic: qa)"16:29
*** msimonin has joined #openstack-meeting16:30
oomichiAk13: I guess nowbody16:30
oomichinobody16:30
oomichiAk13: are you interested in?16:30
*** armax has joined #openstack-meeting16:31
*** jimbaker has left #openstack-meeting16:31
*** gouthamr has quit IRC16:31
Ak13oomichi: yes I would be16:31
*** ntpttr has quit IRC16:32
oomichimtreinish: you did put -2 about that long-time ago16:32
mtreinishoomichi: yeah, because tempest isn't in place where it can do what was described in the spec16:33
mtreinishoomichi: and it still isn't16:33
mtreinishI outlined the reasons why pretty clearly in the review comment16:33
*** ntpttr has joined #openstack-meeting16:33
*** toscalix has quit IRC16:33
mtreinishand the resources.yaml work never went anywhere16:33
oomichimtreinish: yeah, I see the point16:34
oomichiAk13: did you see https://review.openstack.org/#/c/173334/ instead?16:34
oomichithat could be replacement16:34
oomichiI just need to make it move forward16:35
* mtreinish is still waiting for oomichi on that one16:35
Ak13looking at it now16:35
oomichi#action oomichi update https://review.openstack.org/#/c/173334/16:35
*** matrohon has joined #openstack-meeting16:35
*** salv-orl_ has quit IRC16:36
oomichiAk13: that is a little long spec, it would be nice to discuss later after reading16:36
oomichi#topic Tempest16:36
*** openstack changes topic to "Tempest (Meeting topic: qa)"16:36
Ak13oomichi: Agreed, I will need time to digest it16:36
oomichiAk13: thanks16:37
oomichiI did bug triage at this turn16:37
oomichi#link https://etherpad.openstack.org/p/tempest-weekly-bug-report16:37
Ak13oomichi: Is it ok if I get in touch with you later with any questions about that one16:37
oomichiAk13: yeah16:38
*** ntpttr has quit IRC16:38
*** ayogi has quit IRC16:38
oomichiI just bring #link https://review.openstack.org/#/c/455319 for closing a bug more16:38
oomichithe bug status itself seems good, New bugs are only 416:38
oomichiIn-progress bugs are 50, not so bad16:39
*** ntpttr has joined #openstack-meeting16:39
oomichido someone have items necessary to discuss Tempest?16:40
mtreinishoomichi: what happened to the bug graphs? :)16:40
*** gouthamr has joined #openstack-meeting16:40
oomichimtreinish: oh, keen point.. I didn't want to talk about that  TBH :-(16:40
oomichimtreinish: the periodic job was dead in my vacation, and I could not get the data before this meeting16:41
oomichimtreinish: I will be able to report it next meeting16:41
mtreinishoomichi: heh, no worries16:41
oomichiok, lets move on16:42
oomichi#topic Patrole16:42
*** openstack changes topic to "Patrole (Meeting topic: qa)"16:42
*** dustins has joined #openstack-meeting16:42
oomichido we have discussion items about patrole today?16:42
oomichiok, lets move on16:44
oomichi#topic DevStack16:44
*** openstack changes topic to "DevStack (Meeting topic: qa)"16:44
*** ntpttr has quit IRC16:44
oomichido we have discussion items about devstack today?16:44
oomichi#topic Upgrade Testing16:45
*** openstack changes topic to "Upgrade Testing (Meeting topic: qa)"16:45
*** knangia has joined #openstack-meeting16:45
*** ntpttr has joined #openstack-meeting16:45
oomichido we have discussion items about upgrade testing today?16:45
oomichiI could not know "Rolling upgrade" before the meeting TBH16:46
mtreinishoomichi: oh, I had a devstack thing, but it can wait till critical reviews16:46
mtreinishbecause it's just a review16:46
oomichimtreinish: ok :)16:47
mtreinishrolling upgrades was the thing castulo and luzC were working on16:47
*** rossella_s has quit IRC16:47
oomichithat soulds cool, thanks castulo and luzC16:47
oomichiwasn't it affected with OSIC thing?16:48
mtreinishyes, it was16:48
*** lamt has joined #openstack-meeting16:48
*** ltomasbo is now known as ltomasbo|away16:48
*** ociuhandu has quit IRC16:48
oomichimtreinish: oh, ok. maybe we need to find more members if we need to keep it, right?16:48
mtreinishyep, but given the lack of general contribution in this space it's probably unlikely at this point16:49
oomichiyeah, I agree. that could be discussed at the next summit, that is soon16:50
oomichiok, lets move on16:50
*** ntpttr has quit IRC16:50
oomichi#topic OpenStack-Health, Stackviz16:50
*** openstack changes topic to "OpenStack-Health, Stackviz (Meeting topic: qa)"16:50
oomichisomeone has items for OpenStack-Health, Stackviz ?16:50
*** ralonsoh has quit IRC16:51
*** ntpttr has joined #openstack-meeting16:51
oomichi#topic Critical Reviews16:51
*** openstack changes topic to "Critical Reviews (Meeting topic: qa)"16:51
mtreinishnothing from me16:52
mtreinish#link https://review.openstack.org/43510616:52
oomichimtreinish: you can bring yours now16:52
mtreinishthat fix is neeed to avoid the gate breakage oomichi introduced last night by approving a newton backport in devstack16:52
mtreinishthe sooner we land that patch the better, because we need to sort all the image handling well ahead of the release (otherwise it'll break grenade)16:53
oomichimtreinish: hehe, yeah I know I did some wrong thing16:53
oomichiok, let me have it as priority one16:53
*** darvon has quit IRC16:54
oomichiare there more patches to be reviewed?16:55
oomichi#topic Documentation16:55
*** openstack changes topic to "Documentation (Meeting topic: qa)"16:56
mtreinishoomichi: https://review.openstack.org/#/q/owner:treinish+status:open16:56
mtreinish:)16:56
*** ntpttr has quit IRC16:56
*** darvon has joined #openstack-meeting16:56
oomichimtreinish: hehe, you need to select important ones :)16:56
oomichiI know everyone wants to say "my all patches are important"16:56
mtreinishI definitely don't say that16:57
mtreinishsome of those patches are garbage16:57
*** dpaterson_ has joined #openstack-meeting16:57
*** ntpttr has joined #openstack-meeting16:57
oomichimtreinish: haha, yeah it is nice to do cleanup at some points16:57
oomichire: Documentation16:58
oomichiI am not sure this topic TBH16:58
*** blancos has joined #openstack-meeting16:58
oomichido we have some topics about doc thing?16:58
*** baoli has quit IRC16:58
oomichi#Open Discussion16:59
*** trinaths has joined #openstack-meeting16:59
*** litao has quit IRC16:59
oomichido someone has topics need to be discussed16:59
oomichi?16:59
clarkbI'm going to try and pick up tls enabled by default in devstack after the summit16:59
clarkbis that something that should have a spec?16:59
oomichiclarkb: I don't think we need a spec17:00
mtreinishclarkb: just flip the switch17:00
oomichioh, sorry tome is comming17:00
oomichi#endmeeting17:00
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"17:00
clarkbok thanks17:00
openstackMeeting ended Thu Apr 27 17:00:28 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)17:00
openstackMinutes:        http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-04-27-16.00.html17:00
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-04-27-16.00.txt17:00
openstackLog:            http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-04-27-16.00.log.html17:00
oomichilets discuss more on -qa17:00
*** salv-orlando has joined #openstack-meeting17:01
*** unicell has quit IRC17:01
*** jprovazn has quit IRC17:01
*** trinaths has quit IRC17:03
*** ntpttr has quit IRC17:04
*** yangyape_ has quit IRC17:05
*** ntpttr has joined #openstack-meeting17:05
*** ijw has quit IRC17:06
*** harlowja has quit IRC17:08
*** cloudrancher has quit IRC17:08
*** baoli has joined #openstack-meeting17:09
*** cloudrancher has joined #openstack-meeting17:09
*** ntpttr has quit IRC17:10
*** Ak13 has quit IRC17:10
*** pchavva1 has joined #openstack-meeting17:10
*** pchavva1 has quit IRC17:10
*** ntpttr has joined #openstack-meeting17:11
*** blancos has left #openstack-meeting17:12
*** gman-tx has joined #openstack-meeting17:13
*** gman-tx has quit IRC17:13
*** trinaths has joined #openstack-meeting17:14
*** cloudrancher has quit IRC17:15
*** makowals has joined #openstack-meeting17:15
*** ntpttr has quit IRC17:16
*** jamesmca_ has quit IRC17:16
*** abalutoiu has joined #openstack-meeting17:16
*** ntpttr has joined #openstack-meeting17:17
*** jamesmca_ has joined #openstack-meeting17:18
*** makowals has quit IRC17:19
*** ntpttr has quit IRC17:22
*** ntpttr has joined #openstack-meeting17:23
*** donghao has joined #openstack-meeting17:24
*** ricolin has quit IRC17:26
*** cloudrancher has joined #openstack-meeting17:26
*** trinaths has left #openstack-meeting17:27
*** ntpttr has quit IRC17:27
*** donghao has quit IRC17:29
*** ntpttr has joined #openstack-meeting17:29
*** iceyao has joined #openstack-meeting17:31
*** baoli_ has joined #openstack-meeting17:31
*** jamesmca_ has quit IRC17:32
*** amotoki has quit IRC17:32
*** baoli has quit IRC17:33
*** ansmith has quit IRC17:34
*** unicell has joined #openstack-meeting17:34
*** iceyao has quit IRC17:35
*** ntpttr has quit IRC17:36
*** ntpttr has joined #openstack-meeting17:37
*** ijw has joined #openstack-meeting17:39
*** tongli has joined #openstack-meeting17:41
*** ntpttr has quit IRC17:41
*** rbak has quit IRC17:42
*** baoli_ has quit IRC17:42
*** ntpttr has joined #openstack-meeting17:43
*** gyee has joined #openstack-meeting17:43
*** baoli has joined #openstack-meeting17:45
*** msimonin has quit IRC17:46
*** msimonin has joined #openstack-meeting17:47
*** cloudrancher has quit IRC17:47
*** msimonin has quit IRC17:47
*** msimonin has joined #openstack-meeting17:47
*** ntpttr has quit IRC17:47
*** cloudrancher has joined #openstack-meeting17:48
*** msimonin has quit IRC17:48
*** msimonin has joined #openstack-meeting17:48
*** ntpttr has joined #openstack-meeting17:48
*** msimonin has quit IRC17:49
*** msimonin has joined #openstack-meeting17:49
*** ansmith has joined #openstack-meeting17:49
*** msimonin has quit IRC17:50
*** msimonin has joined #openstack-meeting17:50
*** msimonin has quit IRC17:50
*** harlowja has joined #openstack-meeting17:51
*** msimonin has joined #openstack-meeting17:51
*** msimonin has quit IRC17:51
*** msimonin has joined #openstack-meeting17:51
*** pewp has quit IRC17:51
*** pewp has joined #openstack-meeting17:52
*** msimonin has quit IRC17:52
*** ntpttr has quit IRC17:53
*** ntpttr has joined #openstack-meeting17:55
*** Kevin_Zheng has quit IRC17:57
*** erlon has joined #openstack-meeting17:57
*** SumitNaiksatam has joined #openstack-meeting18:00
*** ntpttr has quit IRC18:00
*** ntpttr has joined #openstack-meeting18:01
*** jdurgin has joined #openstack-meeting18:03
*** ntpttr has quit IRC18:05
*** yangyapeng has joined #openstack-meeting18:06
*** tongli has quit IRC18:06
*** ntpttr has joined #openstack-meeting18:07
*** yangyapeng has quit IRC18:10
*** ntpttr has quit IRC18:12
*** ntpttr has joined #openstack-meeting18:13
*** spzala has quit IRC18:15
*** claudiub has quit IRC18:18
*** dustins has quit IRC18:18
*** ntpttr has quit IRC18:20
*** ntpttr has joined #openstack-meeting18:21
*** VW has quit IRC18:23
*** VW has joined #openstack-meeting18:23
*** ntpttr has quit IRC18:25
*** Sukhdev has joined #openstack-meeting18:26
*** ntpttr has joined #openstack-meeting18:27
*** Sukhdev has quit IRC18:27
*** salv-orlando has quit IRC18:27
*** e0ne has joined #openstack-meeting18:29
*** ntpttr has quit IRC18:31
*** ansmith has quit IRC18:31
*** ekcs_ has joined #openstack-meeting18:34
*** claudiub has joined #openstack-meeting18:36
*** Daviey_ has joined #openstack-meeting18:38
*** igordcar1 has joined #openstack-meeting18:38
*** Daviey has quit IRC18:38
*** annegentle has quit IRC18:38
*** eglute has quit IRC18:38
*** dhellmann has quit IRC18:38
*** tris has quit IRC18:38
*** ekcs has quit IRC18:38
*** igordcard has quit IRC18:38
*** eglute has joined #openstack-meeting18:39
*** dhellmann has joined #openstack-meeting18:39
*** ntpttr has joined #openstack-meeting18:39
*** tris has joined #openstack-meeting18:39
*** jamesmca_ has joined #openstack-meeting18:41
*** ntpttr has quit IRC18:43
*** ntpttr has joined #openstack-meeting18:44
*** donghao has joined #openstack-meeting18:44
*** ansmith has joined #openstack-meeting18:47
*** donghao has quit IRC18:49
*** ntpttr has quit IRC18:49
*** Sukhdev has joined #openstack-meeting18:51
*** ntpttr has joined #openstack-meeting18:51
*** SumitNaiksatam has quit IRC18:54
*** rbak has joined #openstack-meeting18:54
*** annegentle has joined #openstack-meeting18:57
*** ntpttr has quit IRC18:58
*** ntpttr has joined #openstack-meeting18:59
*** jaugustine has quit IRC18:59
*** jaugustine has joined #openstack-meeting19:00
dtroyerAnyone here to talk OSC?19:00
*** cloudrancher has quit IRC19:01
* mordred hands dtroyer a pie19:03
*** ntpttr has quit IRC19:04
mordredwanna hear a funny?19:04
mordreddtroyer: yesterday's occ release actually broke nodepool's gate jobs - but it wasn't that we let an occ bug slip through19:04
mordreddtroyer: the removal of the keystoneclient fallback caused a test in nodepool that should have been failing but was silently failing open to start correctly failing19:05
dtroyeroh?19:05
dtroyerya, I had a few of those too :)19:05
*** ntpttr has joined #openstack-meeting19:05
*** timello has joined #openstack-meeting19:05
dtroyerthat's why OSC's -tips job was red for so long19:05
mordredI mean - there was literally no auth information in the test at all - no parameters, no clouds.yaml, no env vars19:05
mordred:)19:06
dtroyerthat's exactly one reason I put in the bits to skip validating until much later in the process19:06
dtroyerthings you want with no auth aren't done yet19:06
*** yangyapeng has joined #openstack-meeting19:07
dtroyerso I just pushed a review to bump occ and osc-lib in g-r to yesterday's releases… go make a note on that if we need to wait a bit: https://review.openstack.org/46071119:08
*** felipemonteiro has quit IRC19:08
dtroyeranyone else here for OSC?  If not we'll skip again19:11
*** jaugustine has quit IRC19:11
*** yangyapeng has quit IRC19:11
*** egallen_ has joined #openstack-meeting19:12
*** ntpttr has quit IRC19:12
*** ntpttr has joined #openstack-meeting19:13
*** egallen has quit IRC19:13
*** egallen_ is now known as egallen19:13
*** ntpttr has quit IRC19:18
*** ntpttr has joined #openstack-meeting19:19
*** ijw has quit IRC19:21
*** ntpttr has quit IRC19:26
*** ntpttr has joined #openstack-meeting19:27
*** salv-orlando has joined #openstack-meeting19:30
*** ntpttr has quit IRC19:32
*** ntpttr has joined #openstack-meeting19:33
*** awaugama has quit IRC19:34
*** pradk has joined #openstack-meeting19:34
*** kaisers has quit IRC19:41
*** kaisers has joined #openstack-meeting19:42
*** spzala has joined #openstack-meeting19:43
*** ntpttr has quit IRC19:43
*** ntpttr has joined #openstack-meeting19:43
*** cloudrancher has joined #openstack-meeting19:44
*** cloudrancher has quit IRC19:44
*** kaisers has quit IRC19:46
*** kaisers has joined #openstack-meeting19:48
*** ntpttr has quit IRC19:48
*** ntpttr has joined #openstack-meeting19:49
*** knangia has quit IRC19:51
*** ntpttr has quit IRC19:54
*** ntpttr has joined #openstack-meeting19:55
*** dbecker has quit IRC19:58
*** pchavva has quit IRC20:02
*** ntpttr has quit IRC20:02
*** ntpttr has joined #openstack-meeting20:03
*** e0ne has quit IRC20:03
*** felipemonteiro has joined #openstack-meeting20:03
*** yangyapeng has joined #openstack-meeting20:08
*** felipemonteiro_ has joined #openstack-meeting20:08
*** ntpttr has quit IRC20:10
*** e0ne has joined #openstack-meeting20:10
*** ntpttr has joined #openstack-meeting20:11
*** felipemonteiro has quit IRC20:11
*** makowals has joined #openstack-meeting20:11
*** yangyapeng has quit IRC20:12
*** sambetts is now known as sambetts|afk20:14
*** ntpttr has quit IRC20:15
*** ntpttr has joined #openstack-meeting20:17
*** eharney has quit IRC20:17
*** liusheng has quit IRC20:17
*** liusheng has joined #openstack-meeting20:18
*** iceyao has joined #openstack-meeting20:18
*** ijw has joined #openstack-meeting20:18
*** jaugustine has joined #openstack-meeting20:19
*** iceyao has quit IRC20:23
*** Cibo_ has joined #openstack-meeting20:23
*** ntpttr has quit IRC20:24
*** ntpttr has joined #openstack-meeting20:25
*** jkilpatr has quit IRC20:29
*** ntpttr has quit IRC20:29
*** ntpttr has joined #openstack-meeting20:31
*** Sukhdev has quit IRC20:32
*** makowals has quit IRC20:33
*** e0ne has quit IRC20:34
*** ansmith has quit IRC20:35
*** ntpttr has quit IRC20:35
*** dimtruck is now known as zz_dimtruck20:37
*** ntpttr has joined #openstack-meeting20:37
*** kaisers has quit IRC20:38
*** salv-orlando has quit IRC20:39
*** salv-orlando has joined #openstack-meeting20:39
*** ntpttr has quit IRC20:42
*** ntpttr has joined #openstack-meeting20:43
*** jkilpatr has joined #openstack-meeting20:43
*** hferenc_ has joined #openstack-meeting20:44
*** rfolco has quit IRC20:46
*** ntpttr has quit IRC20:48
*** ntpttr has joined #openstack-meeting20:49
*** awaugama has joined #openstack-meeting20:50
*** pvaneck has joined #openstack-meeting20:52
*** takashin has joined #openstack-meeting20:53
*** mickeys has quit IRC20:54
*** ijw has quit IRC20:55
*** ijw has joined #openstack-meeting20:55
*** dfisher has joined #openstack-meeting20:56
*** thorst has quit IRC20:56
*** jkilpatr has quit IRC20:57
*** Sukhdev has joined #openstack-meeting20:58
*** tongli has joined #openstack-meeting20:59
*** ijw has quit IRC20:59
*** ijw has joined #openstack-meeting21:00
*** trozet has joined #openstack-meeting21:00
mriedem#startmeeting nova21:00
openstackMeeting started Thu Apr 27 21:00:14 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
mriedemhowdy pardners21:00
efriedo/21:00
*** ijw has quit IRC21:00
takashino/21:00
gibio.21:00
melwitto/21:00
edleafe\o21:00
*** ykatabam has quit IRC21:01
hferenc_\o/21:01
* bauzas waves21:01
*** jamesmca_ has quit IRC21:01
mriedemok we can get started21:01
mriedem#link agenda https://wiki.openstack.org/wiki/Meetings/Nova#Agenda_for_next_meeting21:01
mriedem#topic release news21:02
*** openstack changes topic to "release news (Meeting topic: nova)"21:02
mriedem#link Pike release schedule: https://wiki.openstack.org/wiki/Nova/Pike_Release_Schedule21:02
mriedemnext big thing in the scheduler is the summit in a little more than 1 week21:02
*** Vek has joined #openstack-meeting21:02
mriedem*schedule21:02
mriedem:)21:02
mriedemnext milestone is p-2 on June 8th21:02
mriedem#info Blueprints: 70 targeted, 65 approved, 8 completed, 11 not started21:03
mriedem#link pike-1 recap and pike-2 focus: http://lists.openstack.org/pipermail/openstack-dev/2017-April/115700.html21:03
mriedem#help There are still some approved blueprints looking for owners: http://lists.openstack.org/pipermail/openstack-dev/2017-April/115899.html21:03
mriedemquestions about the release?21:03
efriedmriedem I *may* be able to take on that other keystoney one that overlaps with service-catalog stuff.  Keep me in mind if no other takers.21:04
mriedemthe service token one?21:04
efriedyah21:04
*** jamesdenton has quit IRC21:04
mriedemok. i think some of that is already done21:04
mriedembut ok21:04
*** ntpttr has quit IRC21:04
mriedem#topic bugs21:04
*** openstack changes topic to "bugs (Meeting topic: nova)"21:04
mriedemno critical bugs21:04
mriedem#link check queue gate status http://status.openstack.org/elastic-recheck/index.html21:05
mriedemgate has been ok21:05
mriedem#link 3rd party CI status http://ci-watch.tintri.com/project?project=nova&time=7+days21:05
mriedemi don't have any news about 3rd party ci21:05
mriedemanything for bugs?21:05
*** ntpttr has joined #openstack-meeting21:05
mriedem#topic reminders21:05
*** openstack changes topic to "reminders (Meeting topic: nova)"21:05
*** timello has quit IRC21:06
mriedem#link Pike Review Priorities etherpad: https://etherpad.openstack.org/p/pike-nova-priorities-tracking21:06
mriedemcontinue updating ^ as your changes progress21:06
mriedemand subteams review things21:06
mriedem#link Forum planning: https://wiki.openstack.org/wiki/Forum/Boston201721:06
mriedem#info Start creating etherpads for your sessions. There is an optional template: http://lists.openstack.org/pipermail/openstack-dev/2017-April/115972.html21:06
mriedemthe etherpads are linked into that wiki ^21:06
mriedem#link https://etherpad.openstack.org/p/BOS-Nova-brainstorming Forum discussion planning for nova (add your name if you are going)21:07
*** dpaterson_ has quit IRC21:07
mriedemi saw in the ML today that there are going to be some reservable rooms,21:07
mriedembut i don't know if we have space in the schedule for anything that requires that21:07
efried#link https://ethercalc.openstack.org/Boston_Forum_Hacking_Rooms21:07
mriedemor any topics that aren't already covered in forum sessions21:08
mriedemyeah,21:08
mriedempersonally i've found i don't have much in the way of free time given the sessions i'm already going to21:08
*** yangyapeng has joined #openstack-meeting21:08
mriedemif anyone can think of a major nova issue we need to discuss that isn't already covered in a session let me know21:09
mriedemand we can see if there is a slot we need21:09
mriedem#info Forum sessions: https://www.openstack.org/summit/boston-2017/summit-schedule/global-search?t=forum21:09
mriedemanything about the forum?21:09
mriedem#topic Stable branch status21:09
*** openstack changes topic to "Stable branch status (Meeting topic: nova)"21:09
mriedemstable/ocata: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/ocata,n,z21:09
mriedemstable/newton: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/newton,n,z21:09
mriedemwe're working some fixes through those and then i'll be looking to do a patch release next week21:10
mriedemi also need to check that for novaclient on stable21:10
mriedemi have requested a 1.4.1 os-vif release for ocata this week21:10
*** ntpttr has quit IRC21:10
mriedemnot merged yet21:10
mriedem#topic subteam highlights21:10
*** openstack changes topic to "subteam highlights (Meeting topic: nova)"21:10
mriedemi'm filling in for cells v221:10
mriedemmajor review focus is on two things21:11
mriedem1. quotas https://review.openstack.org/#/c/446239/21:11
mriedem2. multicell https://review.openstack.org/#/c/458634/21:11
mriedema good chunk of the latter has merged21:11
mriedemthat's about it21:11
*** ntpttr has joined #openstack-meeting21:11
mriedemedleafe: scheduler?21:11
edleafeShort meeting this week, as nothing contentious was under discussion.21:12
edleafeWe got an update on the status of various placement specs and patches, and things seem to be moving along well.21:12
edleafecdent wished for additional help harassing jaypipes during his upcoming talk in Boston.21:12
edleafeThat's it!21:12
mriedemtalk(s)21:12
mriedemthere are multiple opportunities to ruin his day21:12
edleafeI'm counting you to help with that, mriedem21:12
*** dprince has quit IRC21:12
mriedemi don't imagine tdurakov is around for live migration updates21:12
mriedemthere is a live migratoin related bp that's looking for an owner21:13
mriedemand another that's looking for someone to take over the patches21:13
mriedemhttps://blueprints.launchpad.net/nova/+spec/live-migration-force-after-timeout21:13
mriedemhttps://blueprints.launchpad.net/nova/+spec/live-migration-per-instance-timeout21:13
mriedemapi meeting highlights21:13
mriedemi was there but can't really remember21:14
mriedem:/21:14
mriedemwe talked about something for an inordinate amount of time21:14
mriedemon the upside, microversions 2.43, 2.44 and 2.45 are merged now21:14
mriedemgibi: notifications meeting highlights?21:15
*** yangyapeng has quit IRC21:15
gibiIt was a sort meeting this week21:15
gibiFocus is on two things in the subteam21:15
gibi1) https://review.openstack.org/#/q/status:open+topic:bp/additional-notification-fields-for-searchlight21:15
gibi2) instance.volume_attach, the patch series starts here: https://review.openstack.org/#/c/401992/21:15
gibithat is all21:15
mriedemgibi: köszönöm21:15
mriedemyeah?21:16
gibiszivesen21:16
gibi:)21:16
mriedemefried: powervm?21:16
efriedGreat progress since last week.  Three ready for final reviews (one waiting for verification to start behaving again): https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:master+topic:bp/powervm-nova-compute-driver+is:mergeable  Once one or two more of those go through, will start in on the others in the series again.21:16
*** ntpttr has quit IRC21:16
efriedThat's it from me, unless any questions/concerns.21:16
mriedemok21:16
mriedemcool21:16
mriedemfor nova/cinder this week,21:17
mriedemReview focus is on the new detach flow: https://review.openstack.org/#/c/456896/21:17
*** msimonin has joined #openstack-meeting21:17
mriedemi've got a series up through swap volume, needs some tweaking,21:17
*** ntpttr has joined #openstack-meeting21:17
mriedemothers have some patches up for other operations dealing with detach, like instance delete21:17
*** iyamahat has quit IRC21:18
mriedemand i think someone (ildikov?) is going to work on resurrecting the attach patch with the new flow that makes everything go21:18
*** jamesmca_ has joined #openstack-meeting21:18
mriedem#topic stuck reviews21:18
*** openstack changes topic to "stuck reviews (Meeting topic: nova)"21:18
mriedemthere was nothing on the agenda,21:18
mriedemanyone have anything to bring up here?21:18
mriedem#topic open discussion21:19
*** openstack changes topic to "open discussion (Meeting topic: nova)"21:19
mriedemSpecial scenario/filter tests: http://lists.openstack.org/pipermail/openstack-dev/2017-April/115800.html (hferenc)21:19
mriedemgibi: coworker of yours?21:19
mriedemhferenc_: ^?21:19
gibimriedem: yes21:19
hferenc_yes21:19
hferenc_thx21:19
hferenc_so in short: I'd like to add some testcases that couldn't be merged to tempest because they require a special environment for testing.21:19
*** iceyao has joined #openstack-meeting21:19
*** zz_dimtruck is now known as dimtruck21:20
hferenc_For me testing the aggregates isolation scheduler filter would be the most important but if it's possible I'd like to add more tests later on.21:20
hferenc_Sorry if this is not the right time and place to discuss this. I just wanted to shed some light on the topic. I'd appreciate any review.21:20
*** iyamahat has joined #openstack-meeting21:20
mriedemhferenc_: so why can't we test this with in-tree functional tests?21:20
mriedemusing fixtures21:20
bauzaswouldn't it be possible to use functional tests in-tree ?21:20
bauzasmeh21:20
bauzasjinx21:20
Vekbauzas: great minds think alike, right?  :)21:20
bauzas:p21:21
mriedemhttps://review.openstack.org/#/c/315786/ is something that you need devstack for https://review.openstack.org/#/c/315786/21:21
mriedemoops21:21
hferenc_It would be ok these with functional tests - i'm also working on that21:21
mriedemi think the scheduler filters could be tested in tree21:21
mriedemhttps://review.openstack.org/#/c/315786/ couldn't be21:21
bauzassure thing, we already have some21:21
hferenc_but functional tests cannot be run against deployments21:21
*** thorst has joined #openstack-meeting21:21
mriedemhferenc_: it depends on what you need to test21:22
*** tongli has quit IRC21:22
mriedemif you're ok using fixtures for running services and a fake virt driver, just to test placement logic with the filters, i think in-tree is fine21:22
mriedemif you're testing actual hypervisor features, then yes you need an openstack deployment21:22
*** ntpttr has quit IRC21:22
mriedemwe have talked in the past about having a dsvm-integration suite of tests in-tree that relies on a backing devstack installation21:22
*** jamesmca_ has quit IRC21:22
mriedemfor testing things like libvirt21:23
mriedemtempest is really about testing the apis21:23
mriedemso https://review.openstack.org/#/c/315786/ doesn't really make sense in a tempest plugin imo21:23
*** ntpttr has joined #openstack-meeting21:23
mriedemi can see a lot of value in a dsvm-integration set of tests in-tree so we could run tests in serial, like then we could test evacuate21:23
*** iceyao has quit IRC21:24
mriedemi guess your watchdog test goes through the api b/c of the flavor setup21:24
gibiso this dsvm-integration suite would spin a devstack but it would run some functional test instead of tempest21:25
mriedemso that could probably actually be a tempest plugin test21:25
mriedemgibi: yes21:25
*** thorst has quit IRC21:25
mriedemgibi: i think of it like the functional tests in novaclient21:26
gibiis there any example for that in other modules we can copy?21:26
mriedemthose rely on a devstack21:26
gibiohh21:26
mriedemand they run novaclient CLIs against that devstack21:26
mriedemso it's not tempest21:26
mriedembut it's not a fake env either21:26
gibisounds interesting21:26
mriedemi think we can test scheduler filters using functional tests in tree with fixtures,21:26
mriedemand things like this watchdog action test could be done via a tempest plugin, or in-tree integration tests (like novaclient),21:27
gibifor the placement test, we have some requirement to prove the tenant separation works against a deployment (like user acceptance tests)21:27
mriedemlike we'd probably have a dsvm-integration-libvirt, dsvm-integration-ironic, something like that21:27
*** julim has quit IRC21:27
gibiso we made those filter tests in tempest to be able to used against a deployment21:28
gibiand we would like to share it :)21:28
mriedemgibi: it's a very narrow and specific deployment is the problem21:28
*** ntpttr has quit IRC21:28
mriedemyou can get the same thing using the in-tree functional tests21:28
mriedemwhich run actual services and populate the database21:28
mriedemthey just don't use real cinder/neutron/virt driver, but you don't need those for scheduler placement tests21:29
*** msimonin1 has joined #openstack-meeting21:29
mriedemfor example https://github.com/openstack/nova/blob/master/nova/tests/functional/regressions/test_bug_1671648.py21:29
gibisure for the functional validation the current functional test env is ok21:29
*** ntpttr has joined #openstack-meeting21:29
gibibut for user acceptance it isn't21:30
mriedem^ tests that if we fail to build on a compute, we properly retry on another compute21:30
gibibut I feel we wont solve the user acceptance test problem in nova :)21:30
mriedemwhat i'm hearing is you guys have an internal business process dictating how you do your testing21:30
mriedemwhich, whatever, that's fine21:30
mriedemi personally feel it's a waste to setup a CI job with a very specific environment and set of filters just to run a single test21:31
mriedemwhen you can do it in-tree to test the same thing21:31
mriedemif your job could reconfigure itself on the fly so it can test multiple scenarios, that's a different story21:32
mriedemthat's what our live migration job does21:32
*** zigo has joined #openstack-meeting21:32
mriedemhttps://github.com/openstack/nova/blob/master/nova/tests/live_migration/hooks/run_tests.sh21:32
gibimost probably we want to much as a first step :)21:32
gibiI think we can look into the dsvm-integration thing for the watchdog test21:32
mriedemso maybe we take this to the mailing list, i can dump some comments there21:33
gibimriedem: sure21:33
mriedemi'm not sure if there is anything you really need from me here,21:33
*** msimonin has quit IRC21:33
mriedemyou guys have a requirement and you've delivered on it for your corporate overlords21:33
gibithanks for the feedback21:33
mriedemin general i'm always happy with more testing, so +++ there21:33
mriedemok, anything else for open discussion?21:33
*** ntpttr has quit IRC21:34
hferenc_mriedem: thank you21:34
mriedemyw21:34
mriedemalright let's wrap it up, thanks everyone21:34
mriedem#endmeeting21:34
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"21:34
openstackMeeting ended Thu Apr 27 21:34:30 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)21:34
openstackMinutes:        http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-04-27-21.00.html21:34
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-04-27-21.00.txt21:34
openstackLog:            http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-04-27-21.00.log.html21:34
*** slaweq has joined #openstack-meeting21:34
*** dfisher has left #openstack-meeting21:35
*** hichihara has joined #openstack-meeting21:35
*** pradk has quit IRC21:35
*** takashin has left #openstack-meeting21:35
*** Vek has left #openstack-meeting21:35
*** ntpttr has joined #openstack-meeting21:35
*** yamahata_ has joined #openstack-meeting21:37
*** hferenc_ has quit IRC21:40
*** bobh has quit IRC21:42
*** ntpttr has quit IRC21:42
*** ntpttr has joined #openstack-meeting21:43
*** dewanee_ has quit IRC21:43
*** iceyao has joined #openstack-meeting21:47
*** ntpttr has quit IRC21:47
*** jaugustine has quit IRC21:49
*** ntpttr has joined #openstack-meeting21:49
*** salv-orl_ has joined #openstack-meeting21:50
*** kbyrne has quit IRC21:50
*** Nakato has quit IRC21:52
*** iceyao has quit IRC21:52
*** salv-orlando has quit IRC21:52
*** Nakato has joined #openstack-meeting21:53
*** designbybeck has quit IRC21:54
*** kbyrne has joined #openstack-meeting21:54
*** mickeys has joined #openstack-meeting21:56
*** ijw has joined #openstack-meeting21:56
*** yushiro has joined #openstack-meeting21:56
*** ijw has quit IRC21:56
*** ijw has joined #openstack-meeting21:56
*** trevormc has joined #openstack-meeting21:58
*** mlavalle has joined #openstack-meeting21:59
*** ntpttr has quit IRC21:59
*** maeca1 has joined #openstack-meeting21:59
*** ihrachys has joined #openstack-meeting22:00
*** boden has joined #openstack-meeting22:00
*** annegentle has quit IRC22:00
*** annegentle has joined #openstack-meeting22:01
*** salv-orl_ has quit IRC22:01
yushiroHi, good morning(from Tokyo timezone)22:01
kevinbentonhello22:01
slaweqhi22:01
*** Apoorva_ has joined #openstack-meeting22:01
hichiharahi22:01
mlavalleo/22:01
*** ntpttr has joined #openstack-meeting22:01
ihrachyso/22:01
kevinbentonarmax, ihrachys: ping22:02
*** mickeys has quit IRC22:02
*** maeca1 has quit IRC22:02
trevormco/22:03
kevinbenton#startmeeting neutron_drivers22:03
openstackMeeting started Thu Apr 27 22:03:54 2017 UTC and is due to finish in 60 minutes.  The chair is kevinbenton. Information about MeetBot at http://wiki.debian.org/MeetBot.22:03
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.22:03
*** openstack changes topic to " (Meeting topic: neutron_drivers)"22:03
openstackThe meeting name has been set to 'neutron_drivers'22:03
*** Apoorva has quit IRC22:04
*** Sukhdev_ has joined #openstack-meeting22:05
kevinbentonlet's go over some stuff that has been approved but is sitting in spec phase22:05
kevinbenton#link https://review.openstack.org/#/q/project:openstack/neutron-specs+is:open22:05
*** annegentle has quit IRC22:06
kevinbenton#link https://review.openstack.org/#/c/396297/22:06
*** ntpttr has quit IRC22:06
kevinbentonrfe-approved for this one22:06
kevinbentonbut ajo has changed focus IIRC22:06
mlavalleI have been following that one22:07
ihrachysyes22:07
*** VW has quit IRC22:07
*** ntpttr has joined #openstack-meeting22:07
kevinbentoni think we need a blueprint for this one to track priority22:07
mlavalleIn fact, I am listed in that spec to implement part of it22:07
slaweqI think that ralonsoh is now on it (but You should ask him)22:07
kevinbentonmlavalle: can you file a quick blueprint for it that links to the RFE and the spec?22:08
mlavallekevinbenton: yes I will22:08
mlavalleJust to let you know, I am attending the QoS meeting regularly22:08
kevinbentonok and i see you're reviewing the spec so it's getting attention22:09
kevinbentonlet's move onto the next one22:09
mlavalletrying to fill the void left by ajo and give the a core that follows the regularly22:09
mlavallethem and them ^^^^22:09
kevinbentonmlavalle: i can help with reviews for the code as well when it comes time for the implementation22:09
mlavallecool!22:09
kevinbenton#link https://review.openstack.org/#/c/333993/22:09
ihrachysI am reviewing that one22:10
ihrachysI think there are several outstanding issues around API uris22:10
ihrachysit made a long way22:10
ihrachysand I think we are close to getting it in22:10
kevinbentonok, there is one other issue that Igor had reached out to me about22:10
ihrachysat which point kevinbenton will probably work with folks to get them +2s in the repo22:10
kevinbentonthe repo22:11
kevinbentondid they get it figured out if the old code was just going to be deleted?22:11
ihrachysdeleted22:11
ihrachysminus maybe some scaffolding22:11
kevinbentonok22:11
kevinbentonihrachys: can you file a shim blueprint for that one as well?22:11
ihrachyswill do22:12
*** yangyapeng has joined #openstack-meeting22:12
*** ijw has quit IRC22:12
*** cburgess has quit IRC22:12
kevinbentonI'll defer https://review.openstack.org/#/c/456394/ until we are discussing rfes22:12
*** ijw has joined #openstack-meeting22:13
*** erlon has quit IRC22:13
*** abramley has quit IRC22:13
kevinbenton#link https://review.openstack.org/#/c/452677/22:13
*** ianw has quit IRC22:13
kevinbentoni need to review that one22:13
kevinbentonnothing the team needs to discuss there22:14
*** raj_sing- has joined #openstack-meeting22:14
*** ntpttr has quit IRC22:14
kevinbenton#link https://review.openstack.org/#/c/203509/22:14
*** jungleboyj has quit IRC22:14
*** mrmartin has quit IRC22:14
*** peterstac has quit IRC22:14
*** harlowja has quit IRC22:14
*** raj_singh has quit IRC22:14
*** tnarg has quit IRC22:14
kevinbentoni think we're short an approver on this one22:15
kevinbentonit's currently assigned to Rossella22:15
yushirokevinbenton, yes.22:15
*** ijw has quit IRC22:15
*** ijw has joined #openstack-meeting22:15
yushirokevinbenton, she just asked me 1 question about a result of PTG discussion.22:15
*** mrmartin has joined #openstack-meeting22:15
*** ntpttr has joined #openstack-meeting22:15
yushiroI just replied to her earlier this week.22:16
kevinbentonyushiro: ok, have we finally reached a point where we have general agreement on the API?22:16
*** cburgess has joined #openstack-meeting22:16
yushirokevinbenton, sure.  Regarding an API design, rossella agreed with our one.22:17
*** nikhil has quit IRC22:17
*** blair has quit IRC22:17
*** xgerman has quit IRC22:17
*** sweston has quit IRC22:17
*** ALUVial has quit IRC22:17
*** SWDevAngel__ has quit IRC22:17
*** tdurakov has quit IRC22:17
*** tlbr has quit IRC22:17
*** hazmat has quit IRC22:17
ihrachysI think a more serious issue was re validation in multi driver env, and we stated before that the framework should be laid for that in ml2 (which I don't know whether there were any moves)22:17
*** yangyapeng has quit IRC22:17
yushiroihrachys, sure.  In my understanding, QoS has implemented a validation logic.22:17
*** ianw has joined #openstack-meeting22:18
ihrachysI see yushiro refers to qos patch, but that's not directly applicable to the proposed feature22:18
*** izaakk has quit IRC22:18
*** soren has quit IRC22:18
ihrachysthat would require quite some generalization to make it applicable22:18
yushiroihrachys, aha.  OK.  I understand that is not generic approach now.  https://github.com/openstack/neutron/blob/master/neutron/services/qos/qos_plugin.py#L48-L5522:19
ihrachysso the question here is probably: 1. do we still think that blocking the logging feature for lack of validation is the right thing to do; 2. if so, who works on the validation framework?22:19
kevinbentonihrachys: i have a qos question22:19
ihrachysI think armax had strong feelings about it in the past.22:19
kevinbentonihrachys: how do you know which driver will be required to support a policy applied to a network?22:19
*** tlbr has joined #openstack-meeting22:20
*** ntpttr has quit IRC22:20
*** heyongli has quit IRC22:20
slaweqkevinbenton: in qos validation it checks if each port in network can support rules from such policy22:20
ihrachysI don't remember details. maybe slaweq has an answer?22:20
*** trevormc has quit IRC22:20
yushiroihrachys, hmm, I'd like to avoid blocking more..  For ex,  firstly Logging refers QoS mechanism and fixes logic after same as QoS..22:21
*** izaakk has joined #openstack-meeting22:21
ihrachysslaweq, ...unless ports have overridden policies I believe22:21
*** heyongli has joined #openstack-meeting22:21
slaweqihrachys: yes22:21
*** ALUVial has joined #openstack-meeting22:21
*** sweston has joined #openstack-meeting22:21
*** ntpttr has joined #openstack-meeting22:21
kevinbentonbut what happens if a port is added later?22:22
ihrachysyushiro, if you have a solution for validation for the feature, I don't think we should block on generic mechanism.22:22
*** mickeys has joined #openstack-meeting22:22
kevinbentondo you cause a binding failure?22:22
slaweqkevinbenton: it also validate on port create event22:22
kevinbentonslaweq: ok22:22
slaweqso it will fail if driver can't support QoS rules22:23
kevinbentonmakes sense22:23
ihrachysand when you bind. the idea is not getting into that db state in the first place.22:23
kevinbentonso we will need to do the same here22:23
kevinbentonsince port can be associated with sg group before it is associated with a driver22:23
ihrachysright. and I guess there could be some space for code reuse, just not as-is, would need some refactoring.22:24
yushiroihrachys, currently, I don't have generic solution.  Is it necessary during Pike cycle?22:24
ihrachysI think as long as we state that we desire validation as part of the feature, it can proceed, even if it doesn't settle common framework in advance.22:24
kevinbentoni'm okay if we don't have a generic solution and just validate similar to qos22:24
ihrachys+22:25
kevinbentonhaving two different use cases can make it easier to visualize a generic framework later22:25
mlavalleyep22:25
yushirokevinbenton, aha, Sure.  So, in this cycle, Logging API will refer QoS solution.22:25
*** SWDevAngel__ has joined #openstack-meeting22:25
kevinbentonright22:25
ihrachysyushiro, yeah. reuse code where possible.22:25
*** ansmith has joined #openstack-meeting22:25
kevinbentonyushiro: can you update the spec summarizing our commentary here?22:26
*** baoli has quit IRC22:26
*** nikhil has joined #openstack-meeting22:26
yushirokevinbenton, Of course.  After that,  can we approve one?22:26
kevinbentonyushiro: once rossella is happy with it, I can take over as approver for helping review code and getting other volunteers for components22:26
*** soren has joined #openstack-meeting22:26
*** tdurakov has joined #openstack-meeting22:26
kevinbentonreviews are much easier for me once we've all agreed on the API :)22:26
yushirokevinbenton, I understood.  I'll tell her ultra super ASAP.22:27
yushiro:)22:27
kevinbentonyushiro: thanks :)22:27
*** ijw has quit IRC22:27
kevinbentonok22:27
kevinbenton#link https://review.openstack.org/#/c/374506/22:27
*** awaugama has quit IRC22:27
kevinbentonthis looks like rfe isn't approved yet22:27
*** rbak has quit IRC22:27
kevinbenton#link https://bugs.launchpad.net/neutron/+bug/159661122:28
openstackLaunchpad bug 1596611 in neutron "[RFE] Create L3 IPs with qos (rate limit)" [Wishlist,In progress] - Assigned to LIU Yulong (dragon889)22:28
*** ijw has joined #openstack-meeting22:28
*** rbak has joined #openstack-meeting22:28
*** felipemonteiro_ has quit IRC22:28
kevinbentonihrachys: are you familiar with where this one is at?22:28
*** ntpttr has quit IRC22:28
*** trevormc has joined #openstack-meeting22:29
ihrachysI haven't reviewed the spec22:29
ihrachysI know what's that about22:29
kevinbentonok22:29
ihrachysthe complexity of this thing would be enormous I suspect22:29
*** ntpttr has joined #openstack-meeting22:29
ihrachysgotta look at proposal22:29
kevinbentoni'll put back into triaged22:30
kevinbentonso we can review with other RFE's22:30
ihrachysI will have a look next week22:30
kevinbenton#link https://review.openstack.org/#/c/452032/22:30
kevinbentonthis is vpnaas assessment22:30
kevinbentonI'll work with armax on reviewing this one22:30
kevinbenton#link https://review.openstack.org/#/c/454788/22:30
kevinbentonthis says don't review22:30
kevinbentonso don't look at it22:30
*** blair has joined #openstack-meeting22:31
mlavalleLOL22:31
kevinbenton#link https://review.openstack.org/#/c/445762/22:31
ihrachysoh now my eyes, they are burning, why have you sent it my way!22:31
kevinbentonthis still needs rfe review #link https://bugs.launchpad.net/neutron/+bug/150562722:31
openstackLaunchpad bug 1505627 in neutron "[RFE] QoS Explicit Congestion Notification (ECN) Support" [Wishlist,Triaged] - Assigned to Reedip (reedip-banerjee)22:31
kevinbentonah22:31
kevinbenton#link https://review.openstack.org/#/c/320439/22:31
kevinbentonI think this needed a new approver as well22:32
kevinbenton#link https://blueprints.launchpad.net/neutron/+spec/l2-api-extensions22:32
*** iceyao has joined #openstack-meeting22:32
kevinbentonihrachys: i had suggested the author reach out to Jakub, do you know if he is available?22:32
*** ijw has quit IRC22:32
*** ijw has joined #openstack-meeting22:33
ihrachyskevinbenton, for doing that work? I really doubt it.22:33
kevinbentonihrachys: being approver22:33
kevinbentonnot implementing22:33
ihrachysyeah, but even then, I know that Kuba will take care about e.g. multiple port bindings, also some ovsfw bits...22:33
ihrachysI don't think he is avail for that22:33
kevinbentonok22:33
ihrachysyou can try to reach out, but I would suggest we don't have resources to make it happen.22:34
*** ntpttr has quit IRC22:34
kevinbentonack22:34
kevinbentoni'll remove ajo from the approver field22:34
kevinbentonso it's clear22:34
kevinbenton#link https://review.openstack.org/#/c/445771/22:35
kevinbentonthere was an RFE for this i recall22:35
kevinbentonbut it's not linked here22:35
*** ntpttr has joined #openstack-meeting22:35
*** abramley has joined #openstack-meeting22:36
kevinbentoni will -1 and ask to link to rfe22:36
*** ijw has quit IRC22:36
*** tnarg has joined #openstack-meeting22:37
*** iceyao has quit IRC22:37
mlavalleyeah, that's the easiest thing to do22:37
kevinbenton#link https://review.openstack.org/#/c/236840/22:37
*** salv-orlando has joined #openstack-meeting22:37
*** peterstac has joined #openstack-meeting22:37
ihrachysthat smells orchestration22:37
*** egallen has quit IRC22:38
kevinbenton#link https://bugs.launchpad.net/neutron/+bug/165708422:38
openstackLaunchpad bug 1657084 in neutron "[RFE]Add time period attribute to firewall_rule" [Wishlist,Incomplete]22:38
ihrachysand it seems like the bug is Incomplete22:38
kevinbentonrfe sounds like similar conclusion22:38
ihrachyswhich makes sense22:38
ihrachysso be it22:38
*** kaisers has joined #openstack-meeting22:38
ihrachyslet's just -222:38
kevinbentoni'll -2 pending RFE22:38
ihrachys+22:38
*** ijw has joined #openstack-meeting22:39
*** ijw has quit IRC22:39
kevinbenton#link https://review.openstack.org/#/c/446111/22:39
*** ijw has joined #openstack-meeting22:39
kevinbenton#link https://bugs.launchpad.net/neutron/+bug/167321022:39
openstackLaunchpad bug 1673210 in neutron "Enable MySQL Cluster Support" [Wishlist,Confirmed] - Assigned to Octave Orgeron (octave-orgeron)22:39
mlavalleI think he even has a patch with the implementation22:40
kevinbentonyes, i remember reviewing it22:40
kevinbentonI don't think there is too much to discuss as a drivers team for this one22:40
*** ntpttr has quit IRC22:40
mlavallehttps://review.openstack.org/#/c/446136/22:40
kevinbentonas RFE indicates it's a few minor fixes22:40
ihrachysI read the spec real quick. does it suggest we reduce the size of .e.g names nad description for all resources?..22:40
kevinbentonoh22:40
ihrachysline 82+22:41
*** Patifa has quit IRC22:41
*** ntpttr has joined #openstack-meeting22:41
kevinbentonyeah22:42
kevinbentonthat will need some explanation22:42
mlavalleit seems like that to me22:42
kevinbentonsounds like we can lose data22:42
ihrachysand break api-ref conformity22:42
*** Patifa has joined #openstack-meeting22:42
kevinbentonthe other problematic thing is in the patch here: https://review.openstack.org/#/c/446136/7/neutron/db/api.py@23722:42
kevinbentonapparently no savepoint support22:42
*** kaisers has quit IRC22:42
mlavalleit would be interesting to see how other projects are reacting to this22:43
mlavallehe has similar patches with Nova, Cinder, etc22:44
ihrachys+, sounds like a cross project thing to handle. there should be some common approach and source of knowledge. ideally, oslo.db folks would come to us and tell what to do.22:44
kevinbentonok, let's let it sit. i will also continue to ask questions on the patch22:44
kevinbenton#link https://review.openstack.org/#/c/362008/22:45
kevinbenton#link https://bugs.launchpad.net/neutron/+bug/156182422:45
openstackLaunchpad bug 1561824 in neutron "[RFE] Enhance BGP Dynamic Routing driver with Quagga suppport" [Wishlist,Triaged] - Assigned to Steve Ruan (ruansx)22:45
kevinbentonthis is rfe-approved22:45
*** ntpttr has quit IRC22:46
kevinbentonbut hasn't be reproposed to pike22:46
ihrachysI see lately there is not much work happening on the repo so is it even realistic?22:46
kevinbentonI think i will just abandon and ask to repropose it for pike22:46
kevinbentonit's from IBM22:47
mlavallehe used to attend the L3 meeting, with tidwellr was astill around22:47
kevinbentonso they may have been moved off22:47
mlavalleyeah22:47
*** boden has left #openstack-meeting22:47
*** ntpttr has joined #openstack-meeting22:47
kevinbenton#link https://review.openstack.org/#/c/388398/22:48
mlavallethat sounded like being with IBM is a stigma LOL22:48
kevinbentonmlavalle: nah22:48
mlavallekevinbenton: just teasing22:49
kevinbentonmlavalle: :)22:49
kevinbenton#link https://bugs.launchpad.net/neutron/+bug/163328022:49
openstackLaunchpad bug 1633280 in neutron "[RFE]need a way to disable anti-spoofing rules and yet keep security groups" [Wishlist,Incomplete]22:49
kevinbentonthis is pending feedback on rfe22:49
kevinbentoni'll put -2 for now22:49
mlavallenothing has really happened since October22:49
mlavallethats more than 6 months ago22:50
kevinbentonyeah22:50
kevinbenton#link https://review.openstack.org/#/c/391654/22:50
ihrachysthat one also didn't have much traction to say the least.22:50
kevinbenton#link https://bugs.launchpad.net/neutron/+bug/159202822:50
openstackLaunchpad bug 1592028 in neutron "[RFE] Support security-group-rule creation with address-groups" [Wishlist,Triaged] - Assigned to Roey Chen (roeyc)22:50
kevinbentoni'll -2 pending RFE approval22:50
mlavallepretty much the same story, well one month younger22:51
kevinbenton#link https://review.openstack.org/#/c/392023/22:51
kevinbenton#link https://bugs.launchpad.net/neutron/+bug/150563122:51
openstackLaunchpad bug 1505631 in neutron "[RFE] QoS VLAN 802.1p Support" [Wishlist,Confirmed] - Assigned to Reedip (reedip-banerjee)22:51
kevinbentonso this is rfe-postponed22:52
*** ntpttr has quit IRC22:52
kevinbentonmlavalle: do you know if anyone is trying to work on this for qos?22:52
ihrachysdo we have some seasoned qos contributors like slaweq interested in following it through?22:53
mlavallekevinbenton: I don't think it has been mentioned lately in the meetings22:53
slaweqno, AFAIR it wasn't discussed on last few QoS meetings22:53
*** jkilpatr has joined #openstack-meeting22:53
*** jkilpatr has quit IRC22:53
*** ntpttr has joined #openstack-meeting22:53
*** jkilpatr has joined #openstack-meeting22:54
kevinbentonok, i'll put a -2 pending rfe revival22:54
slaweqand if I'm right it was not clear what reedip excactly wants there22:54
mlavalleralonsoh is very thorough following up with the rfe's, bugs and patches22:54
ihrachysthere are already dscp marks for prioritization, it doesn't cover all infrastructures, but good enough for some.22:54
mlavalleso if he hasn't mentioned it in the meetings, it's not in any radar screen22:54
kevinbentonok22:54
ihrachys+ for letting it die in LP22:54
kevinbentonthat was everything in the open state on neutron-specs22:55
kevinbentondoes anyone have anything to bring up in the last 5 mins22:55
kevinbenton#topic open discussion22:55
*** openstack changes topic to "open discussion (Meeting topic: neutron_drivers)"22:55
ihrachysI think slaweq had something to raise, and I feel like it's worth giving him the chance22:55
kevinbentonslaweq: go ahead22:55
slaweqthx22:55
slaweqI wanted to talk about https://bugs.launchpad.net/neutron/+bug/168603522:55
openstackLaunchpad bug 1686035 in neutron "[RFE] More detailed reporting of available QoS rules" [Medium,Triaged] - Assigned to Slawek Kaplonski (slaweq)22:55
slaweqbut I don't know if we will have time now22:55
ihrachyson first sight, it looks like now we are in the business of API discovery22:56
slaweqbasically I think that we should change way how available rule types are "calculated"22:56
kevinbentonslaweq: makes sense22:56
kevinbentonslaweq: but is this operator only?22:56
ihrachysslaweq, wouldn't making it just a concatenation of all supported rules be good enough?22:57
ihrachysand then allowing users to hit validation?22:57
ihrachys(more of a strawman)22:57
slaweqihrachys: exactly that's what I want to do22:57
kevinbentonthat sounds good22:57
kevinbentonbut if this is user facing22:57
kevinbentonyou can't show driver22:57
ihrachysslaweq, but I see supported parameters mentioned in the desc?22:57
slaweqnow it get common subset of rules supported by all loaded drivers22:57
slaweqbut IMHO it should returns all rule types supported by at least one driver22:58
ihrachyskevinbenton, existing api is definitely user available (assuming ops allowed that in policy, which is not an unreal situation)22:58
slaweqlater when rule/policy will be applied to port there will be validation done for this port22:58
*** ntpttr has quit IRC22:58
ihrachysslaweq, ok then if that's all you want, maybe remove driver notion from the description? also parameters?22:59
slaweqso that's what I want to change in first point described there and IMO it's quite easy to do22:59
kevinbentonihrachys: existing api is leaking driver name to users?22:59
ihrachysbasically, same API, just different result?22:59
slaweqbut there is also second part22:59
ihrachyskevinbenton, I don't think so. it's just a list of rule type names22:59
slaweqand second part is to add new API call to display details of each rule type22:59
kevinbentonslaweq: what is second part?22:59
ihrachysslaweq, maybe split? I am ready to +2 a patch for the first part as a simple bug fix.22:59
*** ntpttr has joined #openstack-meeting22:59
kevinbenton+123:00
kevinbentonfirst part is super easy23:00
slaweqihrachys: ok so I will propose patch for first part23:00
kevinbentonwe're out of time23:00
ihrachysslaweq, so the 2nd part is tricky; it's api discovery, and you suggest to leak cloud infra details (drivers)23:00
slaweqand what about second one? should I write some specs?23:00
kevinbentonslaweq: another RFE23:00
kevinbentonor update this one23:00
*** dimtruck is now known as zz_dimtruck23:00
kevinbentonfor clear use case and who its visible to, etc23:00
kevinbentonwe can discuss next drivers meeting23:01
kevinbentonthanks everyone!23:01
slaweqkevinbenton: ok, I will update this rfe to only second part :)23:01
slaweqthx23:01
mlavalleo/23:01
kevinbenton#endmeeting23:01
*** daniel_X has joined #openstack-meeting23:01
hichiharaDrivers: Please look at https://bugs.launchpad.net/neutron/+bug/1682775 when you have time23:01
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"23:01
slaweqbye23:01
ihrachyso/23:01
hichiharabye23:01
openstackMeeting ended Thu Apr 27 23:01:13 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)23:01
openstackMinutes:        http://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-04-27-22.03.html23:01
kevinbentonhichihara: ack23:01
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-04-27-22.03.txt23:01
ihrachysslaweq, thanks for joining23:01
openstackLog:            http://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-04-27-22.03.log.html23:01
openstackLaunchpad bug 1682775 in neutron "[RFE] Tag mechanism supports all resouces with standard attribute." [Wishlist,Triaged] - Assigned to Hirofumi Ichihara (ichihara-hirofumi)23:01
hichiharakevinbenton: thanks :)23:01
daniel_Xwtf is going on here23:01
kevinbentonhichihara: yeah, i'll circle back to RFE's next week23:01
mlavalleslaweq: yeah, it's a little late for you. Thanks23:01
yushirothanks23:02
slaweqno problem for me :)23:02
slaweqthx a lot23:02
*** mlavalle has left #openstack-meeting23:02
*** diablo_rojo has joined #openstack-meeting23:03
*** rbak has quit IRC23:04
*** daniel_X has left #openstack-meeting23:04
*** ntpttr has quit IRC23:04
*** zz_dimtruck is now known as dimtruck23:04
*** ntpttr has joined #openstack-meeting23:05
*** Sukhdev has quit IRC23:06
*** slaweq has quit IRC23:06
*** salv-orlando has quit IRC23:08
*** trozet has quit IRC23:08
*** sdague has quit IRC23:08
*** hichihara has quit IRC23:08
*** askb has joined #openstack-meeting23:09
*** lamt has quit IRC23:09
*** ihrachys has quit IRC23:09
*** ntpttr has quit IRC23:10
*** ntpttr has joined #openstack-meeting23:11
*** trevormc has quit IRC23:12
*** Kevin_Zheng has joined #openstack-meeting23:13
*** ntpttr has quit IRC23:16
*** fnaval has quit IRC23:16
*** diablo_rojo has quit IRC23:17
*** ntpttr has joined #openstack-meeting23:17
*** Patifa has quit IRC23:20
*** tesseract has quit IRC23:20
*** ijw has quit IRC23:21
*** ntpttr has quit IRC23:22
*** ijw has joined #openstack-meeting23:22
*** dimtruck is now known as zz_dimtruck23:22
*** ntpttr has joined #openstack-meeting23:23
*** harlowja has joined #openstack-meeting23:23
*** ijw has quit IRC23:26
*** chyka has quit IRC23:26
*** chyka has joined #openstack-meeting23:27
*** liusheng has quit IRC23:27
*** ntpttr has quit IRC23:27
*** liusheng has joined #openstack-meeting23:27
*** hongbin has quit IRC23:29
*** ntpttr has joined #openstack-meeting23:29
*** mriedem has quit IRC23:30
*** mriedem has joined #openstack-meeting23:30
*** liusheng has quit IRC23:32
*** liusheng has joined #openstack-meeting23:32
*** chyka has quit IRC23:33
*** ntpttr has quit IRC23:33
*** chyka has joined #openstack-meeting23:34
*** imcsk8_ has quit IRC23:34
*** imcsk8 has joined #openstack-meeting23:34
*** cloud-liang has quit IRC23:34
*** Douhet has quit IRC23:34
*** Julien-zte has quit IRC23:34
*** Douhet has joined #openstack-meeting23:35
*** jamesmca_ has joined #openstack-meeting23:35
*** ntpttr has joined #openstack-meeting23:36
*** yangyapeng has joined #openstack-meeting23:37
*** chyka has quit IRC23:38
*** Apoorva_ has quit IRC23:38
*** Apoorva has joined #openstack-meeting23:39
*** jamesmca_ has quit IRC23:39
*** ntpttr has quit IRC23:40
*** markvoelker has quit IRC23:40
*** ntpttr has joined #openstack-meeting23:41
*** cody-somerville has joined #openstack-meeting23:41
*** cody-somerville has quit IRC23:41
*** cody-somerville has joined #openstack-meeting23:41
*** yangyapeng has quit IRC23:42
*** csomerville has quit IRC23:44
*** ntpttr has quit IRC23:45
*** ntpttr has joined #openstack-meeting23:48
*** thorst has joined #openstack-meeting23:54
*** jungleboyj has joined #openstack-meeting23:55
*** ijw has joined #openstack-meeting23:56
*** ntpttr has quit IRC23:57
*** ntpttr has joined #openstack-meeting23:58
*** mickeys has quit IRC23:58

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