*** Xinran has joined #openstack-meeting | 00:00 | |
*** rfolco has joined #openstack-meeting | 00:00 | |
*** rfolco has quit IRC | 00:00 | |
ekcs | time for congress meeting thinrichs aimeeu ramineni masahito | 00:01 |
---|---|---|
ekcs | #startmeeting congressteammeeting | 00:01 |
openstack | Meeting 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 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 00:01 |
*** openstack changes topic to " (Meeting topic: congressteammeeting)" | 00:01 | |
openstack | The meeting name has been set to 'congressteammeeting' | 00:02 |
*** rfolco has joined #openstack-meeting | 00:02 | |
*** rfolco has quit IRC | 00:02 | |
aimeeu | Hi ekcs - on mobile heading out on vacation | 00:02 |
ekcs | hi all. as usual, topics are kept here: https://etherpad.openstack.org/p/congress-meeting-topics | 00:02 |
thinrichs | Hi all | 00:02 |
ekcs | not a lot there right now. feel free to take a moment and add your topics =) | 00:02 |
ekcs | hi aimeeu ! that's great enjoy your vacation! | 00:03 |
*** aeng has quit IRC | 00:04 | |
*** d0ugal has quit IRC | 00:04 | |
*** diablo_rojo has joined #openstack-meeting | 00:04 | |
*** ntpttr has quit IRC | 00:04 | |
*** masahito has joined #openstack-meeting | 00:06 | |
masahito | sorry, late. | 00:06 |
ekcs | np! topics kept here as usual. https://etherpad.openstack.org/p/congress-meeting-topics | 00:06 |
*** ntpttr has joined #openstack-meeting | 00:06 | |
ekcs | ok let's get started then. | 00:07 |
ekcs | #topic policy library | 00:07 |
*** openstack changes topic to "policy library (Meeting topic: congressteammeeting)" | 00:07 | |
ekcs | We 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 |
ekcs | is there anything to talk about here? | 00:08 |
*** Xinran has quit IRC | 00:09 | |
ekcs | One thing of potential interest: | 00:10 |
*** ntpttr has quit IRC | 00:11 | |
*** Xinran has joined #openstack-meeting | 00:11 | |
ekcs | when creating a policy including rules | 00:11 |
ekcs | The policy engine rule insert code would require some careful | 00: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-policy | 00:11 |
ekcs | recursion), the first and second rule insertions are undone without having | 00:11 |
ekcs | caused any effect (triggered actions or altered query answers). | 00:11 |
ekcs | some care will be needed to make sure the different locks we have going on don't interfere. | 00:12 |
ekcs | anyway. let's move on if there isn't much to talk about now. | 00:12 |
*** ntpttr has joined #openstack-meeting | 00:12 | |
thinrichs | ekcs: one question | 00:13 |
ekcs | yup. | 00:13 |
thinrichs | Is the implementation wrapping a transactional boundary for insertion into the DB? | 00:14 |
thinrichs | Or is the transaction done at a higher level? | 00:14 |
thinrichs | I guess we can't really do it at a higher-level than the DB. | 00:14 |
ekcs | there are two parts. | 00:14 |
ekcs | 1 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 |
ekcs | 2 has nothing to do with DB. it's within the policy engine itself. | 00:15 |
ekcs | the current flow for inserting rule is insert into engine first. if succeed, then write to DB. | 00:15 |
thinrichs | Sorry—reading through your 2 main things section in the spec now | 00:16 |
ekcs | because some of the checks for rule insertion must be done in engine. | 00:16 |
*** ntpttr has quit IRC | 00:17 | |
*** aeng has joined #openstack-meeting | 00:17 | |
thinrichs | Could there be a race if 2 policies are recursive? | 00:18 |
thinrichs | PE1 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-meeting | 00:18 | |
*** ntpttr has joined #openstack-meeting | 00:18 | |
ekcs | btw triggers are complicated because I think the triggers are handled on rule insertion. | 00:18 |
thinrichs | Right | 00:19 |
thinrichs | Is recursion the thing that's complicating everything? | 00:19 |
*** ijw has quit IRC | 00:19 | |
*** Xinran has quit IRC | 00:19 | |
*** palexster has joined #openstack-meeting | 00:19 | |
*** ijw has joined #openstack-meeting | 00:19 | |
ekcs | The race issue I think is handled by DB locking already in place. | 00:20 |
*** Xinran has joined #openstack-meeting | 00:20 | |
ekcs | at 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-meeting | 00:22 | |
thinrichs | So it locks the duration of the insert. Not sure how expensive that'll be. Maybe large policy inserts are infrequent. | 00:22 |
ekcs | recursion 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 IRC | 00:23 | |
ekcs | right. basically we're saying rule inserts can have high latency. expect that. | 00:24 |
ekcs | won't affect query performance. | 00:24 |
*** ntpttr has joined #openstack-meeting | 00:24 | |
ekcs | thinking 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 |
ekcs | I'll need to dig into the code some more to say for sure. | 00:26 |
*** ijw has quit IRC | 00:26 | |
thinrichs | I remember that trigger code was tricky to get right | 00:27 |
thinrichs | Happy to jump on a call if that helps | 00:28 |
*** number80 has joined #openstack-meeting | 00:28 | |
*** ntpttr has quit IRC | 00:29 | |
*** Xinran has quit IRC | 00:29 | |
*** armax has quit IRC | 00:29 | |
ekcs | thanks. 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 |
ekcs | in fact, I realized that we have a problem even today. | 00:30 |
*** ntpttr has joined #openstack-meeting | 00:30 | |
ekcs | when we delete a policy, the rules are deleted one at a time. | 00:30 |
ekcs | so say I have a policy with two rules: | 00:31 |
ekcs | good(x) :- .... | 00:31 |
ekcs | execute[...] :- thing(x), not good(x) | 00:31 |
*** Xinran has joined #openstack-meeting | 00:31 | |
ekcs | when the first rule is deleted but before the second rule is deleted, I think an 'false' execution can trigger. | 00:32 |
*** mickeys has quit IRC | 00:32 | |
ekcs | will need to study the trigger code to be sure. | 00:32 |
*** hongbin has quit IRC | 00:33 | |
ekcs | anyway should we move on? | 00:34 |
*** jamesmca_ has joined #openstack-meeting | 00:34 | |
thinrichs | Yep | 00:35 |
*** Sukhdev has quit IRC | 00:35 | |
ekcs | ok then. | 00:36 |
ekcs | #topic PTG | 00:36 |
*** openstack changes topic to "PTG (Meeting topic: congressteammeeting)" | 00:36 | |
*** annegentle has joined #openstack-meeting | 00:36 | |
ekcs | ok not much to say here. but as mention before it's scheduled for sep 11-15 in denver. | 00:36 |
ekcs | we need to decide in may whether we want to hold sessions there. | 00:36 |
*** Apoorva has quit IRC | 00:37 | |
*** ramineni_ has joined #openstack-meeting | 00:37 | |
ekcs | ok then. | 00:38 |
ekcs | #topic open discussions | 00:38 |
*** openstack changes topic to "open discussions (Meeting topic: congressteammeeting)" | 00:38 | |
ekcs | anything else we want to talk about? | 00:38 |
*** ntpttr has quit IRC | 00:38 | |
ekcs | hi ramineni_ | 00:39 |
*** Xinran has quit IRC | 00:40 | |
ramineni_ | hi ekcs.. sorry im late .. | 00:40 |
*** ntpttr has joined #openstack-meeting | 00:40 | |
ekcs | np =) | 00:40 |
ramineni_ | ekcs: so any discussion on gate issues? | 00:41 |
ekcs | oh right almost forgot. | 00:41 |
ekcs | #topic gate failure | 00:41 |
*** openstack changes topic to "gate failure (Meeting topic: congressteammeeting)" | 00:41 | |
*** markstur has quit IRC | 00:41 | |
ekcs | so many of our tempest tests have been failing. | 00:42 |
*** markstur has joined #openstack-meeting | 00:42 | |
ekcs | I haven't looked very deeply, but it seems like transport related issue maybe. | 00:42 |
ramineni_ | ekcs: none of the datasource service is starting actually | 00:42 |
ekcs | oh I see. | 00:42 |
*** Xinran has joined #openstack-meeting | 00:43 | |
ekcs | any 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.gz | 00:44 |
ramineni_ | ekcs: i noticed while devstack patch is failing , first thought its related to my patch, then i noticed its failing on every patch | 00:44 |
*** ntpttr has quit IRC | 00:45 | |
ramineni_ | ekcs: not usre, if any change in keystone or somthing | 00:45 |
ramineni_ | ekcs: ill look into it more deeply today, if anyone havent looked into it yet | 00:46 |
*** markstur has quit IRC | 00:46 | |
ekcs | I'm a little confused. | 00:46 |
*** xingchao has joined #openstack-meeting | 00:46 | |
*** ntpttr has joined #openstack-meeting | 00:46 | |
*** gouthamr has joined #openstack-meeting | 00:46 | |
ekcs | oh nvm I get it. | 00:47 |
*** jamesmca_ has quit IRC | 00:47 | |
ekcs | ok so yea guess we'll have to figure out what changed. | 00:47 |
ramineni_ | ekcs: yes | 00:47 |
ekcs | let's share things we find (ML maybe?) as we go. so it may help others make progress. | 00:48 |
*** wanghao has joined #openstack-meeting | 00:48 | |
ramineni_ | ekcs: sure | 00:48 |
*** jamesmca_ has joined #openstack-meeting | 00:49 | |
*** Xinran has quit IRC | 00:50 | |
ekcs | anyway keystone seems like the prime suspect. Cuz they all fail with failing to connect to keystone. | 00:50 |
ekcs | ConnectFailure: Unable to establish connection to http://104.239.192.246:5000/v3/auth/tokens | 00:50 |
ramineni_ | ekcs: ya, not sure why, all services seem to be up | 00:51 |
ekcs | ramineni_, right. | 00:52 |
ekcs | ok anything else on gate failure or other topics? | 00:52 |
*** Xinran has joined #openstack-meeting | 00:52 | |
*** ntpttr has quit IRC | 00:53 | |
*** ramineni_1 has joined #openstack-meeting | 00:53 | |
ekcs | ok let's wrap up a few minutes early then if there isn't more to discuss. | 00:54 |
*** ntpttr has joined #openstack-meeting | 00:54 | |
ekcs | have a great week/weekend everyone! | 00:55 |
*** ramineni_ has quit IRC | 00:55 | |
*** ramineni_1 has left #openstack-meeting | 00:55 | |
masahito | thanks! | 00:55 |
thinrichs | thanks all! | 00:55 |
*** thinrichs has left #openstack-meeting | 00:55 | |
ekcs | #endmeeting | 00:55 |
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings" | 00:55 | |
openstack | Meeting ended Thu Apr 27 00:55:58 2017 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 00:56 |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-04-27-00.01.html | 00:56 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-04-27-00.01.txt | 00:56 |
openstack | Log: http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-04-27-00.01.log.html | 00:56 |
*** number80 has quit IRC | 00:57 | |
*** gyee has quit IRC | 00:57 | |
*** sdague has quit IRC | 00:58 | |
*** ntpttr has quit IRC | 00:59 | |
*** Xinran has quit IRC | 01:00 | |
*** ntpttr has joined #openstack-meeting | 01:00 | |
*** Xinran has joined #openstack-meeting | 01:01 | |
*** wanghao_ has joined #openstack-meeting | 01:02 | |
*** wanghao has quit IRC | 01:02 | |
*** ntpttr has quit IRC | 01:05 | |
*** ntpttr has joined #openstack-meeting | 01:06 | |
*** zhhuabj has quit IRC | 01:07 | |
*** esberglu has joined #openstack-meeting | 01:07 | |
*** masahito has quit IRC | 01:09 | |
*** baoli has joined #openstack-meeting | 01:09 | |
*** trinaths has joined #openstack-meeting | 01:09 | |
*** Xinran has quit IRC | 01:10 | |
*** Xinran has joined #openstack-meeting | 01:11 | |
*** yolkfull has joined #openstack-meeting | 01:11 | |
*** esberglu has quit IRC | 01:12 | |
*** jamesmca_ has quit IRC | 01:12 | |
*** ntpttr has quit IRC | 01:13 | |
*** baoli has quit IRC | 01:14 | |
*** annegentle has quit IRC | 01:14 | |
*** ntpttr has joined #openstack-meeting | 01:14 | |
*** yangyapeng has joined #openstack-meeting | 01:18 | |
*** zhhuabj has joined #openstack-meeting | 01:19 | |
*** zhenguo has joined #openstack-meeting | 01:19 | |
*** ntpttr has quit IRC | 01:19 | |
*** annegentle has joined #openstack-meeting | 01:19 | |
*** Apoorva has joined #openstack-meeting | 01:19 | |
*** ntpttr has joined #openstack-meeting | 01:20 | |
*** yangyapeng has quit IRC | 01:20 | |
*** yangyape_ has joined #openstack-meeting | 01:20 | |
*** Apoorva has quit IRC | 01:20 | |
*** Xinran has quit IRC | 01:21 | |
*** Xinran has joined #openstack-meeting | 01:21 | |
*** number80 has joined #openstack-meeting | 01:24 | |
*** ntpttr has quit IRC | 01:25 | |
*** prateek has quit IRC | 01:26 | |
*** ntpttr has joined #openstack-meeting | 01:26 | |
*** diablo_rojo has quit IRC | 01:30 | |
*** yangyape_ has quit IRC | 01:30 | |
*** Xinran has quit IRC | 01:31 | |
*** yangyapeng has joined #openstack-meeting | 01:31 | |
*** Xinran has joined #openstack-meeting | 01:31 | |
*** baoli has joined #openstack-meeting | 01:32 | |
*** iyamahat has quit IRC | 01:32 | |
*** mickeys has joined #openstack-meeting | 01:33 | |
*** yamahata_ has quit IRC | 01:33 | |
*** ntpttr has quit IRC | 01:34 | |
*** ntpttr has joined #openstack-meeting | 01:34 | |
*** Sukhdev has joined #openstack-meeting | 01:34 | |
*** yangyapeng has quit IRC | 01:35 | |
*** thorst_afk has quit IRC | 01:36 | |
*** mickeys has quit IRC | 01:37 | |
*** kaisers has quit IRC | 01:37 | |
*** yangyapeng has joined #openstack-meeting | 01:37 | |
*** esberglu has joined #openstack-meeting | 01:38 | |
*** baoli has quit IRC | 01:38 | |
*** esberglu has quit IRC | 01:38 | |
*** gcb has joined #openstack-meeting | 01:38 | |
*** ntpttr has quit IRC | 01:39 | |
*** donghao has joined #openstack-meeting | 01:40 | |
*** ntpttr has joined #openstack-meeting | 01:40 | |
*** Xinran has quit IRC | 01:40 | |
*** gouthamr has quit IRC | 01:42 | |
*** Xinran has joined #openstack-meeting | 01:42 | |
*** rbak has joined #openstack-meeting | 01:44 | |
*** donghao has quit IRC | 01:45 | |
*** ntpttr has quit IRC | 01:45 | |
*** ntpttr has joined #openstack-meeting | 01:46 | |
*** litao has joined #openstack-meeting | 01:48 | |
*** trinaths has quit IRC | 01:48 | |
*** Xinran has quit IRC | 01:51 | |
*** Xinran has joined #openstack-meeting | 01:52 | |
*** chenying__ has joined #openstack-meeting | 01:55 | |
*** chenying_ has quit IRC | 01:55 | |
*** ntpttr has quit IRC | 01:56 | |
*** ntpttr has joined #openstack-meeting | 01:56 | |
*** rbak has quit IRC | 01:58 | |
*** Xinran has quit IRC | 01:59 | |
zhenguo | #startmeeting mogan | 02:00 |
openstack | Meeting 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 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 02:00 |
*** openstack changes topic to " (Meeting topic: mogan)" | 02:00 | |
openstack | The meeting name has been set to 'mogan' | 02:00 |
zhenguo | o/ | 02:01 |
*** ntpttr has quit IRC | 02:01 | |
liusheng | o/ | 02:01 |
zhangyang | o/ | 02:01 |
*** zhurong has joined #openstack-meeting | 02:02 | |
*** ntpttr has joined #openstack-meeting | 02:02 | |
zhenguo | as always, the agenda: | 02:02 |
zhenguo | #link https://wiki.openstack.org/wiki/Meetings/Mogan#Agenda_for_next_meeting | 02:02 |
zhenguo | let's jump in | 02:02 |
zhenguo | #topic announcements and reminders | 02:03 |
*** openstack changes topic to "announcements and reminders (Meeting topic: mogan)" | 02:03 | |
*** rkmrHonjo has joined #openstack-meeting | 02:03 | |
zhenguo | The coming bug smash: | 02:03 |
zhenguo | #link https://etherpad.openstack.org/p/OpenStack-Bug-Smash-Pike-Suzhou | 02:03 |
zhenguo | Really happy to see we got 6 mogan guys there :D | 02:03 |
*** Xinran has joined #openstack-meeting | 02:03 | |
zhenguo | maybe 7, luyao, I remember shaohe_feng said JF will send you there | 02:04 |
liusheng | :D | 02:04 |
*** prateek has joined #openstack-meeting | 02:04 | |
liusheng | may need to ping them all ? | 02:05 |
zhenguo | ok, seems luyao is not around, will confirm with her later | 02:05 |
zhenguo | First Mogan UI panel: | 02:05 |
zhenguo | #link http://pasteboard.co/99yjyKAoD.png | 02:05 |
*** ijw has joined #openstack-meeting | 02:05 | |
luyao | zhenguo, hah,i'm here,it seems uncertainty | 02:05 |
zhenguo | luyao: hah, hope you can go | 02:06 |
*** annegentle has quit IRC | 02:06 | |
liusheng | zhenguo: looks a great startup :P | 02:06 |
luyao | zhenguo, I hope so. :D | 02:06 |
*** huanxuan has joined #openstack-meeting | 02:07 | |
zhenguo | hah, ok, let's see have a look at the mogan ui | 02:07 |
*** ntpttr has quit IRC | 02:07 | |
zhenguo | You 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 :D | 02:07 |
zhenguo | Within the Bare Metal Compute, we will add servers, keypairs, and overview like Nova | 02:08 |
*** ntpttr has joined #openstack-meeting | 02:08 | |
liusheng | zhenguo: only need to enalbe mogan-ui and horizon in local.conf ? | 02:10 |
*** ijw has quit IRC | 02:10 | |
zhenguo | liusheng: enable mogan-ui plugin like how to enable mogan :D | 02:10 |
zhenguo | liusheng: yes, and enable horizon | 02:10 |
*** prateek has quit IRC | 02:11 | |
liusheng | zhenguo: ok, thanks, it is better to add a simple description about how to enable it | 02:11 |
zhenguo | liusheng: sure | 02:11 |
zhenguo | I will try to make it work before the bug smash, | 02:11 |
zhenguo | then we can show maybe with a physical env we are working on :D | 02:12 |
*** Xinran has quit IRC | 02:12 | |
zhenguo | ok, not much of announcements, anyone else have a thing here? | 02:13 |
*** unicell has quit IRC | 02:13 | |
zhenguo | if not, let's move on | 02:13 |
zhenguo | #topic task tracking | 02:13 |
*** openstack changes topic to "task tracking (Meeting topic: mogan)" | 02:13 | |
liusheng | that will be cool | 02:13 |
zhenguo | #link https://etherpad.openstack.org/p/mogan-task | 02:14 |
*** wxy has joined #openstack-meeting | 02:14 | |
zhenguo | liusheng: hah | 02:14 |
wanghao_ | hi guys | 02:14 |
wanghao_ | I'm here now | 02:14 |
zhenguo | wanghao_: o/ | 02:14 |
zhenguo | hah, so, let's talk about the releasenotes stuff :D | 02:15 |
*** ntpttr has quit IRC | 02:16 | |
wanghao_ | sure | 02:16 |
*** Xinran has joined #openstack-meeting | 02:16 | |
*** epico has joined #openstack-meeting | 02:16 | |
*** ntpttr has joined #openstack-meeting | 02:16 | |
zhenguo | when do you think we should add releasenotes for Mogan | 02:17 |
*** kota_ has left #openstack-meeting | 02:17 | |
zhenguo | as we don't have any release yet | 02:17 |
wanghao_ | well, I think Pike is good point. | 02:17 |
*** zhurong has quit IRC | 02:18 | |
wanghao_ | do we plan to release in Pike? | 02:18 |
zhenguo | yes, it's really helpful to track what we have done during Pike | 02:18 |
wanghao_ | yes | 02:18 |
zhenguo | yes, we should do release | 02:18 |
*** baoli has joined #openstack-meeting | 02:18 | |
zhenguo | so we should add important releasenotes in | 02:18 |
zhenguo | only for Pike? | 02:19 |
liusheng | don't we have a releasenot job ? | 02:19 |
zhenguo | or what we have done since the project creation | 02:19 |
zhenguo | liusheng: no | 02:19 |
wanghao_ | I think some feature before Pike could be there | 02:19 |
*** zul has quit IRC | 02:19 | |
wanghao_ | since this our first release from Pike, should let's user know what we have done from beginning. | 02:20 |
liusheng | yes, agreed, and it's better to add a releasenote job also | 02:20 |
zhenguo | +1 | 02:20 |
zhenguo | but seems only offical projects can add releasenotes job | 02:20 |
zhenguo | as it will publish releasenotes to docs.openstack.org | 02:20 |
zhenguo | like what api-ref job does | 02:21 |
*** epico has quit IRC | 02:21 | |
wanghao_ | so that ask us to check it manually when reviewing patch. | 02:22 |
zhenguo | yes, like api-ref | 02:22 |
*** Xinran_ has joined #openstack-meeting | 02:22 | |
wanghao_ | well, fine with me :) | 02:22 |
zhenguo | ok, thanks | 02:23 |
zhenguo | so we will add all releasenotes | 02:23 |
*** baoli has quit IRC | 02:23 | |
zhenguo | not only for Pike | 02:23 |
*** Xinran_ has quit IRC | 02:23 | |
*** ntpttr has quit IRC | 02:23 | |
zhenguo | ok, let's see our task list | 02:24 |
*** ntpttr has joined #openstack-meeting | 02:24 | |
zhenguo | #link https://etherpad.openstack.org/p/mogan-task | 02:25 |
* zhenguo gives folks a few minutes to review | 02:25 | |
*** iceyao has joined #openstack-meeting | 02:26 | |
zhenguo | I added some new tasks | 02:26 |
wanghao_ | the red task? | 02:27 |
zhenguo | wanghao_: yes | 02:28 |
wanghao_ | ok | 02:28 |
zhenguo | I have added keypairs support with configdrive | 02:29 |
liusheng | I can pick one :D | 02:29 |
zhenguo | liusheng: thanks | 02: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 |
zhenguo | wanghao_: yes | 02:30 |
wanghao_ | So mogan don't need to create it in Neutron. | 02:30 |
wanghao_ | okay, sounds cool, I can try it. | 02:30 |
liusheng | wanghao_: I just picked that, but you are welcome to pick it. lol | 02:31 |
zhenguo | lol | 02:31 |
wanghao_ | yeah, I see it... :_ | 02:31 |
liusheng | zhenguo: I will pick another one | 02:31 |
liusheng | hah | 02:31 |
wanghao_ | liusheng: haha, thanks God sheng. | 02:31 |
*** esberglu has joined #openstack-meeting | 02:31 | |
liusheng | wanghao_: np architect hao | 02:32 |
*** ntpttr has quit IRC | 02:32 | |
wanghao_ | change to my name ASAP, lol | 02:32 |
wanghao_ | ... | 02:32 |
*** mickeys has joined #openstack-meeting | 02:32 | |
*** ntpttr has joined #openstack-meeting | 02:32 | |
wanghao_ | it seems simple that no spec needed. | 02:33 |
*** hongbin has joined #openstack-meeting | 02:33 | |
*** epico has joined #openstack-meeting | 02:33 | |
zhenguo | yes, not need to add spec for such bps | 02:33 |
zhenguo | wrt specifying neutron port, we should take care of the MAC address | 02:34 |
*** reedip has joined #openstack-meeting | 02:34 | |
zhenguo | it must be same with ironic node's port mac | 02:34 |
*** mriedem has quit IRC | 02:34 | |
wanghao_ | yes, some validate need. | 02:35 |
zhenguo | yes | 02:35 |
zhenguo | and for port without MAC, we can update it with ironic port mac | 02:35 |
*** esberglu has quit IRC | 02:36 | |
wanghao_ | and port_type should be same too I think. | 02:36 |
wanghao_ | okay | 02:36 |
zhenguo | sure, | 02:36 |
shaohe_feng | zhenguo: Hi, I'm coming. | 02:36 |
zhenguo | shaohe_feng: o/ | 02:36 |
liusheng | zhenguo: if specify port when booting a server, does that mean booting server with node specified ? | 02:36 |
shaohe_feng | sorry for late | 02:36 |
*** thorst_afk has joined #openstack-meeting | 02:37 | |
liusheng | shaohe_feng: o/ | 02:37 |
zhenguo | shaohe_feng: np | 02:37 |
zhenguo | liusheng: if the specified port with MAC address, that means so | 02:37 |
*** ntpttr has quit IRC | 02:37 | |
zhenguo | liusheng: but if it just a neutron port without MAC address specified, it's not | 02:37 |
liusheng | zhenguo: port without node MAC specified can use by mogan server ? | 02:38 |
*** ntpttr has joined #openstack-meeting | 02:38 | |
zhenguo | liusheng: I mean neutron port instead of ironic port here | 02:39 |
luyao | a question,what's differences between neutron port and ironic port | 02:39 |
zhenguo | luyao: aha, ironic port is physical nic | 02:39 |
zhenguo | luyao: neutron port is logical port, or maybe switch port | 02:40 |
luyao | zhenguo, attach interface means attach neutron port, right? | 02:40 |
zhenguo | luyao: maybe this is easy for understanding, ironic port is server nic, neutron port is switch port | 02:40 |
liusheng | zhenguo: 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 |
zhenguo | luyao: yes | 02:41 |
*** thorst_afk has quit IRC | 02:41 | |
luyao | Xinran 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 |
zhenguo | liusheng: maybe we can support neutron port without mac specified, then update the selected node's mac to it | 02:42 |
wanghao_ | liusheng: that will be same with specified port with node's mac. | 02:42 |
liusheng | zhenguo: got it, but not sure if neutron has that plan :D | 02:42 |
zhenguo | luyao: yes, you should create a port, which means you get a port from virtual switch | 02:42 |
wanghao_ | liusheng: I'll ask hanzhan later :) | 02:43 |
zhenguo | liusheng, wanghao_: hah, yes, we should ask some network guys | 02:43 |
*** ntpttr has quit IRC | 02:43 | |
zhenguo | ok, let's move on | 02:44 |
*** zhurong has joined #openstack-meeting | 02:44 | |
zhenguo | besides the new tasks, seems things are moving along nicely | 02:44 |
*** ntpttr has joined #openstack-meeting | 02:44 | |
zhenguo | I just moved configdrive and keypairs tasks to Done | 02:45 |
zhenguo | and prioritized new flavor tasks :D | 02:46 |
zhenguo | luyao: instance faults is ready now, right? | 02:47 |
zhenguo | luyao: sorry, I don't get time to review it | 02:47 |
luyao | zhenguo, yes | 02:47 |
zhenguo | luyao: so, if the instance is not in error status, we return a None fault_info field? | 02:48 |
zhenguo | luyao: or just get rid of the field | 02:48 |
luyao | zhenguo, get rid of the field | 02:48 |
zhenguo | luyao: cool | 02:48 |
zhenguo | luayo: I see you update to add api-ref samples | 02:49 |
zhenguo | luyao: but seems it's better to also add this filed description in the Response section | 02:49 |
*** ricolin has joined #openstack-meeting | 02:49 | |
luyao | zhenguo, ok, i will update it soon | 02:50 |
*** reedip has quit IRC | 02:50 | |
zhenguo | luyao: thanks | 02:50 |
*** awaugama has joined #openstack-meeting | 02:51 | |
zhenguo | ok, 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 |
zhenguo | wanghao_: I can add a POC patch first | 02:51 |
zhenguo | wanghao_: before land it | 02:51 |
wanghao_ | zhenguo: Sure | 02:51 |
*** ntpttr has quit IRC | 02:51 | |
*** gouthamr has joined #openstack-meeting | 02:51 | |
zhenguo | aha, another thing | 02:52 |
zhenguo | I plan to get rid of instances and instance_types releated stuff in Mogan | 02:52 |
zhenguo | we will only have concepts of servers and flavors | 02:52 |
liusheng | zhenguo: yes, I will do that task | 02:52 |
zhenguo | liusheng: thanks | 02:52 |
*** ntpttr has joined #openstack-meeting | 02:52 | |
liusheng | zhenguo: and it is better to merge other changes firstly, since, this may cause many conflicts | 02:53 |
wanghao_ | cool | 02:53 |
zhenguo | liusheng: yes | 02:53 |
wanghao_ | I saw we have flavors already. | 02:53 |
zhenguo | I will try to clean up all instance types by this week | 02:53 |
zhenguo | wanghao_: hah | 02:53 |
wanghao_ | zhenguo: okay, I see, clean up the left. | 02:54 |
zhenguo | yes | 02:54 |
Xinran | zhenguo, for the detach interface part, it just need to detach from a specific port, no need to pass the network info right ? | 02:54 |
zhenguo | Xinran: seems yes | 02:55 |
zhenguo | Xinran: a port is enough :D | 02:55 |
zhenguo | ok, anything else here? | 02:56 |
wanghao_ | Just FYI,spec for managing bms has ready, welcome to review. | 02:56 |
Xinran | zhenguo, ok thx | 02:57 |
zhenguo | Xinran: np | 02:57 |
zhenguo | wanghao_: thanks very much | 02:57 |
wanghao_ | zhenguo: np | 02:57 |
*** ntpttr has quit IRC | 02:57 | |
zhenguo | a, liusheng's patch to add a tool for migrate instances from nova to mogan has been there for a long time | 02:58 |
zhenguo | hope you guys can help to review | 02:58 |
liusheng | yes, thanks | 02:58 |
*** ricolin_ has joined #openstack-meeting | 02:58 | |
zhenguo | I don't have a env for that recently, lol | 02:58 |
zhenguo | oh, it's almost time | 02:58 |
*** ntpttr has joined #openstack-meeting | 02:58 | |
wanghao_ | sure | 02:59 |
zhenguo | we still have another topic | 02:59 |
zhenguo | #topic open discussion | 02:59 |
*** openstack changes topic to "open discussion (Meeting topic: mogan)" | 02:59 | |
zhenguo | who's got a thing here... | 02:59 |
wanghao_ | time's up | 03:00 |
zhenguo | hah yes | 03:00 |
zhenguo | thanks y'all | 03:00 |
zhenguo | #endmeeting | 03:00 |
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings" | 03:00 | |
openstack | Meeting ended Thu Apr 27 03:00:32 2017 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 03:00 |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/mogan/2017/mogan.2017-04-27-02.00.html | 03:00 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/mogan/2017/mogan.2017-04-27-02.00.txt | 03:00 |
openstack | Log: http://eavesdrop.openstack.org/meetings/mogan/2017/mogan.2017-04-27-02.00.log.html | 03:00 |
*** ricolin has quit IRC | 03:01 | |
*** reedip has joined #openstack-meeting | 03:03 | |
*** ntpttr has quit IRC | 03:03 | |
*** ntpttr has joined #openstack-meeting | 03:04 | |
*** caowei has quit IRC | 03:06 | |
*** thorst_afk has joined #openstack-meeting | 03:08 | |
*** ntpttr has quit IRC | 03:09 | |
*** ntpttr has joined #openstack-meeting | 03:10 | |
*** jamesmca_ has joined #openstack-meeting | 03:12 | |
*** caowei has joined #openstack-meeting | 03:14 | |
*** jamesmca_ has quit IRC | 03:17 | |
*** ntpttr has quit IRC | 03:18 | |
*** ntpttr has joined #openstack-meeting | 03:19 | |
*** baoli has joined #openstack-meeting | 03:19 | |
*** huanxuan_ has joined #openstack-meeting | 03:20 | |
*** ricolin_ has quit IRC | 03:20 | |
*** ricolin has joined #openstack-meeting | 03:21 | |
*** huanxuan has quit IRC | 03:23 | |
*** ntpttr has quit IRC | 03:23 | |
*** baoli has quit IRC | 03:24 | |
*** ntpttr has joined #openstack-meeting | 03:25 | |
*** thorst_afk has quit IRC | 03:25 | |
*** fnaval has joined #openstack-meeting | 03:26 | |
*** reedip has quit IRC | 03:26 | |
*** armax has joined #openstack-meeting | 03:27 | |
*** awaugama has quit IRC | 03:28 | |
*** ntpttr has quit IRC | 03:29 | |
*** ntpttr has joined #openstack-meeting | 03:31 | |
*** xingchao has quit IRC | 03:32 | |
*** reedip has joined #openstack-meeting | 03:32 | |
*** ntpttr has quit IRC | 03:35 | |
*** ntpttr has joined #openstack-meeting | 03:37 | |
*** dimtruck is now known as zz_dimtruck | 03:37 | |
*** ijw has joined #openstack-meeting | 03:39 | |
*** ntpttr has quit IRC | 03:41 | |
*** donghao has joined #openstack-meeting | 03:42 | |
*** zhurong has quit IRC | 03:42 | |
*** ntpttr has joined #openstack-meeting | 03:43 | |
*** donghao has quit IRC | 03:46 | |
*** ntpttr has quit IRC | 03:47 | |
*** armax has quit IRC | 03:47 | |
*** ntpttr has joined #openstack-meeting | 03:48 | |
*** epico has quit IRC | 03:48 | |
*** ntpttr has quit IRC | 03:53 | |
*** ntpttr has joined #openstack-meeting | 03:54 | |
*** ijw has quit IRC | 03:58 | |
*** ntpttr has quit IRC | 03:59 | |
*** ntpttr has joined #openstack-meeting | 04:00 | |
*** reedip has quit IRC | 04:01 | |
*** gouthamr has quit IRC | 04:01 | |
*** kaisers has joined #openstack-meeting | 04:01 | |
*** aeng has quit IRC | 04:02 | |
*** ntpttr has quit IRC | 04:05 | |
*** AndyU has quit IRC | 04:06 | |
*** caowei has quit IRC | 04:06 | |
*** rarora has quit IRC | 04:06 | |
*** jamemcc has quit IRC | 04:06 | |
*** JillS has quit IRC | 04:06 | |
*** ntpttr has joined #openstack-meeting | 04:07 | |
*** jinli has quit IRC | 04:07 | |
*** eeiden has quit IRC | 04:08 | |
*** ntpttr has quit IRC | 04:11 | |
*** ntpttr has joined #openstack-meeting | 04:13 | |
*** epico has joined #openstack-meeting | 04:13 | |
*** ykatabam has quit IRC | 04:14 | |
*** jinli has joined #openstack-meeting | 04:18 | |
*** aeng has joined #openstack-meeting | 04:19 | |
*** rarora has joined #openstack-meeting | 04:19 | |
*** ntpttr has quit IRC | 04:20 | |
*** baoli has joined #openstack-meeting | 04:20 | |
*** ntpttr has joined #openstack-meeting | 04:20 | |
*** reedip has joined #openstack-meeting | 04:23 | |
*** ykatabam has joined #openstack-meeting | 04:24 | |
*** baoli has quit IRC | 04:25 | |
*** caowei has joined #openstack-meeting | 04:27 | |
*** ntpttr has quit IRC | 04:27 | |
*** iyamahat has joined #openstack-meeting | 04:28 | |
*** ntpttr has joined #openstack-meeting | 04:28 | |
*** anilvenkata has joined #openstack-meeting | 04:30 | |
*** unicell has joined #openstack-meeting | 04:31 | |
*** Sukhdev has quit IRC | 04:32 | |
*** eeiden has joined #openstack-meeting | 04:33 | |
*** ntpttr has quit IRC | 04:35 | |
*** markstur has joined #openstack-meeting | 04:35 | |
*** ntpttr has joined #openstack-meeting | 04:37 | |
*** hongbin has quit IRC | 04:37 | |
*** kaisers has quit IRC | 04:39 | |
*** trinaths has joined #openstack-meeting | 04:41 | |
*** ykatabam has quit IRC | 04:42 | |
*** yamahata_ has joined #openstack-meeting | 04:45 | |
*** zhhuabj has quit IRC | 04:46 | |
*** Sukhdev has joined #openstack-meeting | 04:48 | |
*** Sukhdev has quit IRC | 04:49 | |
*** salv-orlando has joined #openstack-meeting | 04:51 | |
*** jamemcc has joined #openstack-meeting | 04:51 | |
*** JillS has joined #openstack-meeting | 04:51 | |
*** ntpttr has quit IRC | 04:52 | |
*** Sukhdev has joined #openstack-meeting | 04:53 | |
*** ntpttr has joined #openstack-meeting | 04:55 | |
*** adisky_ has joined #openstack-meeting | 04:56 | |
*** ykatabam has joined #openstack-meeting | 04:57 | |
*** armax has joined #openstack-meeting | 04:57 | |
*** ijw has joined #openstack-meeting | 04:58 | |
*** ntpttr has quit IRC | 04:59 | |
*** ntpttr has joined #openstack-meeting | 05:01 | |
*** ijw has quit IRC | 05:04 | |
*** iceyao has quit IRC | 05:05 | |
*** aeng has quit IRC | 05:07 | |
*** AndyU has joined #openstack-meeting | 05:08 | |
*** kaisers has joined #openstack-meeting | 05:09 | |
*** galstrom_zzz is now known as galstrom | 05:09 | |
*** tobberydberg has joined #openstack-meeting | 05:11 | |
*** kaisers_ has joined #openstack-meeting | 05:14 | |
*** iceyao has joined #openstack-meeting | 05:14 | |
*** kaisers has quit IRC | 05:15 | |
*** esberglu has joined #openstack-meeting | 05:16 | |
*** esberglu has quit IRC | 05:16 | |
*** esberglu has joined #openstack-meeting | 05:17 | |
*** ayogi has joined #openstack-meeting | 05:17 | |
*** aeng has joined #openstack-meeting | 05:21 | |
*** henrynash has joined #openstack-meeting | 05:21 | |
*** baoli has joined #openstack-meeting | 05:21 | |
*** esberglu has quit IRC | 05:21 | |
*** iceyao has quit IRC | 05:21 | |
*** thorst_afk has joined #openstack-meeting | 05:22 | |
*** ntpttr has quit IRC | 05:24 | |
*** claudiub|3 has joined #openstack-meeting | 05:24 | |
*** ntpttr has joined #openstack-meeting | 05:25 | |
*** baoli has quit IRC | 05:25 | |
*** janki has joined #openstack-meeting | 05:31 | |
*** thorst_afk has quit IRC | 05:32 | |
*** ntpttr has quit IRC | 05:34 | |
*** iceyao has joined #openstack-meeting | 05:34 | |
*** ntpttr has joined #openstack-meeting | 05:37 | |
*** donghao has joined #openstack-meeting | 05:44 | |
*** unicell1 has joined #openstack-meeting | 05:44 | |
*** fnaval has quit IRC | 05:45 | |
*** unicell has quit IRC | 05:46 | |
*** fnaval has joined #openstack-meeting | 05:46 | |
*** ntpttr has quit IRC | 05:46 | |
*** ntpttr has joined #openstack-meeting | 05:48 | |
*** donghao has quit IRC | 05:48 | |
*** e0ne has joined #openstack-meeting | 05:49 | |
*** fnaval has quit IRC | 05:50 | |
*** janki has quit IRC | 05:51 | |
*** bkopilov has quit IRC | 05:52 | |
*** bkopilov has joined #openstack-meeting | 05:52 | |
*** e0ne has quit IRC | 05:55 | |
*** janki has joined #openstack-meeting | 05:56 | |
*** janki has quit IRC | 05:56 | |
*** janki has joined #openstack-meeting | 05:57 | |
*** prateek has joined #openstack-meeting | 05:59 | |
*** ijw has joined #openstack-meeting | 06:00 | |
*** ntpttr has quit IRC | 06:02 | |
*** ntpttr has joined #openstack-meeting | 06:03 | |
*** ltomasbo|away is now known as ltomasbo | 06:04 | |
*** ijw has quit IRC | 06:06 | |
*** reedip has quit IRC | 06:07 | |
*** zhurong has joined #openstack-meeting | 06:12 | |
*** rkmrHonjo has quit IRC | 06:15 | |
*** sridharg has joined #openstack-meeting | 06:18 | |
*** amotoki has quit IRC | 06:19 | |
*** aeng has quit IRC | 06:19 | |
*** andreas_s has joined #openstack-meeting | 06:19 | |
*** amotoki has joined #openstack-meeting | 06:20 | |
*** baoli has joined #openstack-meeting | 06:22 | |
*** vishnoianil has quit IRC | 06:24 | |
*** ricolin_ has joined #openstack-meeting | 06:26 | |
*** ntpttr has quit IRC | 06:26 | |
*** baoli has quit IRC | 06:26 | |
*** ntpttr has joined #openstack-meeting | 06:26 | |
*** ricolin has quit IRC | 06:27 | |
*** janki has quit IRC | 06:27 | |
*** nadya has joined #openstack-meeting | 06:27 | |
*** markstur has quit IRC | 06:28 | |
*** artom has quit IRC | 06:30 | |
*** nadya has quit IRC | 06:30 | |
*** artom has joined #openstack-meeting | 06:30 | |
*** janki has joined #openstack-meeting | 06:31 | |
*** ntpttr has quit IRC | 06:31 | |
*** ricolin__ has joined #openstack-meeting | 06:31 | |
*** galstrom is now known as galstrom_zzz | 06:31 | |
*** galstrom_zzz is now known as galstrom | 06:32 | |
*** artom has quit IRC | 06:32 | |
*** artom has joined #openstack-meeting | 06:32 | |
*** ntpttr has joined #openstack-meeting | 06:33 | |
*** rwsu has quit IRC | 06:33 | |
*** rwsu has joined #openstack-meeting | 06:34 | |
*** ricolin_ has quit IRC | 06:34 | |
*** nadya has joined #openstack-meeting | 06:35 | |
*** rbartal has joined #openstack-meeting | 06:35 | |
*** matrohon has joined #openstack-meeting | 06:35 | |
*** vishnoianil has joined #openstack-meeting | 06:36 | |
*** Sukhdev has quit IRC | 06:39 | |
*** ntpttr has quit IRC | 06:40 | |
*** jprovazn has joined #openstack-meeting | 06:40 | |
*** ntpttr has joined #openstack-meeting | 06:40 | |
*** bobmel has quit IRC | 06:43 | |
*** d0ugal has joined #openstack-meeting | 06:44 | |
*** pcaruana has joined #openstack-meeting | 06:44 | |
*** ntpttr has quit IRC | 06:45 | |
*** Julien-zte has quit IRC | 06:45 | |
*** rwsu has quit IRC | 06:45 | |
*** rwsu has joined #openstack-meeting | 06:46 | |
*** henrynash has quit IRC | 06:46 | |
*** Julien-zte has joined #openstack-meeting | 06:46 | |
*** ntpttr has joined #openstack-meeting | 06:46 | |
*** salv-orlando has quit IRC | 06:48 | |
*** ntpttr has quit IRC | 06:50 | |
*** ntpttr has joined #openstack-meeting | 06:52 | |
*** nadya has quit IRC | 06:54 | |
*** Julien-zte has quit IRC | 06:54 | |
*** Julien-zte has joined #openstack-meeting | 06:55 | |
*** ntpttr has quit IRC | 06:56 | |
*** ntpttr has joined #openstack-meeting | 06:59 | |
*** zhurong has quit IRC | 07:02 | |
*** ijw has joined #openstack-meeting | 07:02 | |
*** dtrainor has quit IRC | 07:03 | |
*** ykatabam has quit IRC | 07:05 | |
*** ntpttr has quit IRC | 07:05 | |
*** iyamahat has quit IRC | 07:06 | |
*** zhurong has joined #openstack-meeting | 07:06 | |
*** ntpttr has joined #openstack-meeting | 07:07 | |
*** salv-orlando has joined #openstack-meeting | 07:07 | |
*** ijw has quit IRC | 07:08 | |
*** Nakato has quit IRC | 07:08 | |
*** Nakato has joined #openstack-meeting | 07:08 | |
*** tesseract has joined #openstack-meeting | 07:09 | |
*** ntpttr has quit IRC | 07:11 | |
*** ntpttr has joined #openstack-meeting | 07:13 | |
*** Julien-zte has quit IRC | 07:17 | |
*** ntpttr has quit IRC | 07:17 | |
*** ntpttr has joined #openstack-meeting | 07:18 | |
*** Julien-zte has joined #openstack-meeting | 07:18 | |
*** ltomasbo is now known as ltomasbo|away | 07:18 | |
*** beagles has quit IRC | 07:19 | |
*** zhhuabj has joined #openstack-meeting | 07:20 | |
*** b3nt_pin has joined #openstack-meeting | 07:21 | |
*** armax has quit IRC | 07:21 | |
*** abalutoiu__ has quit IRC | 07:21 | |
*** baoli has joined #openstack-meeting | 07:22 | |
*** ntpttr has quit IRC | 07:23 | |
*** ntpttr has joined #openstack-meeting | 07:24 | |
*** baoli has quit IRC | 07:27 | |
*** Julien-zte has quit IRC | 07:28 | |
*** thorst_afk has joined #openstack-meeting | 07:28 | |
*** Julien-zte has joined #openstack-meeting | 07:29 | |
*** Nakato has quit IRC | 07:30 | |
*** phil_ has joined #openstack-meeting | 07:31 | |
*** phil_ is now known as Guest37977 | 07:31 | |
*** Nakato has joined #openstack-meeting | 07:31 | |
*** ntpttr has quit IRC | 07:33 | |
*** alexchadin has joined #openstack-meeting | 07:34 | |
*** ralonsoh has joined #openstack-meeting | 07:34 | |
*** ntpttr has joined #openstack-meeting | 07:35 | |
*** brault has joined #openstack-meeting | 07:37 | |
*** zhurong has quit IRC | 07:37 | |
*** ntpttr has quit IRC | 07:39 | |
*** egallen has joined #openstack-meeting | 07:40 | |
*** ntpttr has joined #openstack-meeting | 07:40 | |
*** ad_rien_ has quit IRC | 07:41 | |
*** toscalix has joined #openstack-meeting | 07:42 | |
*** abalutoiu has joined #openstack-meeting | 07:42 | |
*** ntpttr has quit IRC | 07:45 | |
*** matrohon has quit IRC | 07:46 | |
*** ntpttr has joined #openstack-meeting | 07:47 | |
*** mlakat_ has joined #openstack-meeting | 07:47 | |
*** mlakat has quit IRC | 07:47 | |
*** mlakat_ is now known as mlakat | 07:47 | |
*** thorst_afk has quit IRC | 07:48 | |
*** dbecker has joined #openstack-meeting | 07:49 | |
*** abalutoiu has quit IRC | 07:51 | |
*** ntpttr has quit IRC | 07:51 | |
*** e0ne has joined #openstack-meeting | 07:52 | |
*** ntpttr has joined #openstack-meeting | 07:53 | |
*** alexchadin has quit IRC | 07:56 | |
*** alexchadin has joined #openstack-meeting | 07:57 | |
*** ykatabam has joined #openstack-meeting | 07:57 | |
*** ntpttr has quit IRC | 07:57 | |
*** jchhatbar has joined #openstack-meeting | 07:58 | |
*** ntpttr has joined #openstack-meeting | 07:58 | |
*** Julien-zte has quit IRC | 08:00 | |
*** janki has quit IRC | 08:00 | |
*** Julien-zte has joined #openstack-meeting | 08:01 | |
*** alexchadin has quit IRC | 08:01 | |
*** ntpttr has quit IRC | 08:03 | |
*** cody-somerville has quit IRC | 08:03 | |
*** csomerville has joined #openstack-meeting | 08:03 | |
*** ntpttr has joined #openstack-meeting | 08:04 | |
*** janki has joined #openstack-meeting | 08:04 | |
*** ijw has joined #openstack-meeting | 08:04 | |
*** electrofelix has joined #openstack-meeting | 08:05 | |
*** jchhatbar has quit IRC | 08:05 | |
*** nadya has joined #openstack-meeting | 08:06 | |
*** mickeys has quit IRC | 08:06 | |
*** abalutoiu has joined #openstack-meeting | 08:07 | |
*** ntpttr has quit IRC | 08:09 | |
*** ijw has quit IRC | 08:09 | |
*** ntpttr has joined #openstack-meeting | 08:10 | |
*** iyamahat has joined #openstack-meeting | 08:11 | |
*** jamesmca_ has joined #openstack-meeting | 08:13 | |
*** jamesmca_ has quit IRC | 08:17 | |
*** henrynash has joined #openstack-meeting | 08:18 | |
*** ntpttr has quit IRC | 08:19 | |
*** zhurong has joined #openstack-meeting | 08:19 | |
*** ntpttr has joined #openstack-meeting | 08:20 | |
*** amotoki has quit IRC | 08:22 | |
*** bkopilov has quit IRC | 08:23 | |
*** iyamahat has quit IRC | 08:23 | |
*** zhhuabj has quit IRC | 08:23 | |
*** sheeprine has quit IRC | 08:23 | |
*** baoli has joined #openstack-meeting | 08:23 | |
*** trozet has joined #openstack-meeting | 08:24 | |
*** rossella_s has joined #openstack-meeting | 08:27 | |
*** sheeprine has joined #openstack-meeting | 08:27 | |
*** Julien-zte has quit IRC | 08:27 | |
*** baoli has quit IRC | 08:28 | |
*** Julien-zte has joined #openstack-meeting | 08:29 | |
*** andreas_s has quit IRC | 08:30 | |
*** ntpttr has quit IRC | 08:30 | |
*** Julien-zte has quit IRC | 08:31 | |
*** Julien-zte has joined #openstack-meeting | 08:32 | |
*** amotoki has joined #openstack-meeting | 08:32 | |
*** ntpttr has joined #openstack-meeting | 08:33 | |
*** lin_yang has quit IRC | 08:33 | |
*** ntpttr has quit IRC | 08:37 | |
*** galstrom is now known as galstrom_zzz | 08:37 | |
*** ntpttr has joined #openstack-meeting | 08:39 | |
*** jbadiapa has quit IRC | 08:39 | |
*** makowals_ has quit IRC | 08:39 | |
*** reedip has joined #openstack-meeting | 08:40 | |
*** ntpttr has quit IRC | 08:43 | |
*** ltomasbo|away is now known as ltomasbo | 08:43 | |
*** ntpttr has joined #openstack-meeting | 08:44 | |
*** jbadiapa has joined #openstack-meeting | 08:45 | |
*** d0ugal has quit IRC | 08:45 | |
*** Julien-zte has quit IRC | 08:45 | |
*** andreas_s has joined #openstack-meeting | 08:46 | |
*** martinkopec has joined #openstack-meeting | 08:46 | |
*** Julien-zte has joined #openstack-meeting | 08:46 | |
*** janki has quit IRC | 08:48 | |
*** e0ne has quit IRC | 08:48 | |
*** e0ne has joined #openstack-meeting | 08:49 | |
*** ntpttr has quit IRC | 08:49 | |
*** janki has joined #openstack-meeting | 08:50 | |
*** lpetrut has joined #openstack-meeting | 08:50 | |
*** ntpttr has joined #openstack-meeting | 08:51 | |
*** bkopilov has joined #openstack-meeting | 08:52 | |
*** makowals has joined #openstack-meeting | 08:52 | |
*** samP has joined #openstack-meeting | 08:53 | |
*** esberglu has joined #openstack-meeting | 08:54 | |
*** esberglu has quit IRC | 08:54 | |
*** ntpttr has quit IRC | 08:55 | |
*** ntpttr has joined #openstack-meeting | 08:57 | |
*** reedip has quit IRC | 09:02 | |
*** Julien-zte has quit IRC | 09:03 | |
*** makowals has quit IRC | 09:04 | |
*** Julien-zte has joined #openstack-meeting | 09:04 | |
*** d0ugal has joined #openstack-meeting | 09:04 | |
*** d0ugal has quit IRC | 09:04 | |
*** d0ugal has joined #openstack-meeting | 09:04 | |
*** ntpttr has quit IRC | 09:04 | |
*** samP has quit IRC | 09:05 | |
*** ntpttr has joined #openstack-meeting | 09:05 | |
*** ijw has joined #openstack-meeting | 09:06 | |
*** mickeys has joined #openstack-meeting | 09:07 | |
*** henrynash has quit IRC | 09:08 | |
*** Julien-zte has quit IRC | 09:09 | |
*** Julien-zte has joined #openstack-meeting | 09:10 | |
*** Julien-zte has quit IRC | 09:11 | |
*** ijw has quit IRC | 09:11 | |
*** mickeys has quit IRC | 09:12 | |
*** Julien-zte has joined #openstack-meeting | 09:13 | |
*** alexchadin has joined #openstack-meeting | 09:14 | |
*** aarefiev_afk is now known as aarefiev | 09:16 | |
*** AndyU has quit IRC | 09:18 | |
*** eeiden has quit IRC | 09:18 | |
*** rarora has quit IRC | 09:18 | |
*** jamemcc has quit IRC | 09:19 | |
*** JillS has quit IRC | 09:19 | |
*** jinli has quit IRC | 09:19 | |
*** msimonin has joined #openstack-meeting | 09:20 | |
*** amotoki has quit IRC | 09:21 | |
*** sambetts|afk is now known as sambetts | 09:21 | |
*** ntpttr has quit IRC | 09:22 | |
*** amotoki has joined #openstack-meeting | 09:22 | |
*** ntpttr has joined #openstack-meeting | 09:23 | |
*** amotoki has quit IRC | 09:23 | |
*** baoli has joined #openstack-meeting | 09:24 | |
*** Julien-zte has quit IRC | 09:25 | |
*** Julien-zte has joined #openstack-meeting | 09:27 | |
*** JillS has joined #openstack-meeting | 09:27 | |
*** ntpttr has quit IRC | 09:28 | |
*** baoli has quit IRC | 09:29 | |
*** ntpttr has joined #openstack-meeting | 09:29 | |
*** jamemcc has joined #openstack-meeting | 09:29 | |
*** e0ne has quit IRC | 09:30 | |
*** ntpttr has quit IRC | 09:33 | |
*** jinli has joined #openstack-meeting | 09:35 | |
*** ntpttr has joined #openstack-meeting | 09:35 | |
*** eeiden has joined #openstack-meeting | 09:35 | |
*** e0ne has joined #openstack-meeting | 09:36 | |
*** ntpttr has quit IRC | 09:39 | |
*** ntpttr has joined #openstack-meeting | 09:41 | |
*** amotoki has joined #openstack-meeting | 09:41 | |
*** thorst_afk has joined #openstack-meeting | 09:45 | |
*** andreas_s has quit IRC | 09:46 | |
*** ntpttr has quit IRC | 09:48 | |
*** esberglu has joined #openstack-meeting | 09:48 | |
*** ntpttr has joined #openstack-meeting | 09:49 | |
*** salv-orl_ has joined #openstack-meeting | 09:49 | |
*** thorst_afk has quit IRC | 09:50 | |
*** esberglu has quit IRC | 09:52 | |
*** salv-orlando has quit IRC | 09:52 | |
*** lpetrut_ has joined #openstack-meeting | 09:58 | |
*** Julien-zte has quit IRC | 09:59 | |
*** ociuhandu has quit IRC | 09:59 | |
*** lpetrut has quit IRC | 10:00 | |
*** ricolin__ has quit IRC | 10:01 | |
*** d0ugal has quit IRC | 10:01 | |
*** nadya has quit IRC | 10:01 | |
*** ricolin has joined #openstack-meeting | 10:02 | |
*** ntpttr has quit IRC | 10:02 | |
*** alexchadin has quit IRC | 10:04 | |
*** ntpttr has joined #openstack-meeting | 10:05 | |
*** iceyao has quit IRC | 10:05 | |
*** ijw has joined #openstack-meeting | 10:07 | |
*** d0ugal has joined #openstack-meeting | 10:07 | |
*** mickeys has joined #openstack-meeting | 10:08 | |
*** zul has joined #openstack-meeting | 10:09 | |
*** ntpttr has quit IRC | 10:09 | |
*** iceyao has joined #openstack-meeting | 10:10 | |
*** ntpttr has joined #openstack-meeting | 10:10 | |
*** trinaths has left #openstack-meeting | 10:11 | |
*** ijw has quit IRC | 10:12 | |
*** iceyao has quit IRC | 10:13 | |
*** andreas_s has joined #openstack-meeting | 10:13 | |
*** mickeys has quit IRC | 10:15 | |
*** ntpttr has quit IRC | 10:15 | |
*** AndyU has joined #openstack-meeting | 10:15 | |
*** ntpttr has joined #openstack-meeting | 10:16 | |
*** kevinz has quit IRC | 10:19 | |
*** zhurong has quit IRC | 10:20 | |
*** cloud-liang has joined #openstack-meeting | 10:21 | |
*** ntpttr has quit IRC | 10:21 | |
*** d0ugal has quit IRC | 10:21 | |
*** cloud-liang has quit IRC | 10:22 | |
*** cloud-liang has joined #openstack-meeting | 10:22 | |
*** ntpttr has joined #openstack-meeting | 10:22 | |
*** baoli has joined #openstack-meeting | 10:25 | |
*** mlakat has quit IRC | 10:26 | |
*** d0ugal has joined #openstack-meeting | 10:26 | |
*** ntpttr has quit IRC | 10:27 | |
*** huanxuan_ has quit IRC | 10:27 | |
*** zhurong has joined #openstack-meeting | 10:28 | |
*** ntpttr has joined #openstack-meeting | 10:28 | |
*** amotoki has quit IRC | 10:28 | |
*** yangyape_ has joined #openstack-meeting | 10:29 | |
*** epico has quit IRC | 10:29 | |
*** rarora has joined #openstack-meeting | 10:29 | |
*** baoli has quit IRC | 10:30 | |
*** iceyao has joined #openstack-meeting | 10:30 | |
*** nadya has joined #openstack-meeting | 10:32 | |
*** nadya has quit IRC | 10:32 | |
*** ntpttr has quit IRC | 10:32 | |
*** iceyao has quit IRC | 10:35 | |
*** ntpttr has joined #openstack-meeting | 10:35 | |
*** yangyape_ has quit IRC | 10:37 | |
*** jkilpatr has quit IRC | 10:38 | |
*** salv-orl_ has quit IRC | 10:38 | |
*** yangyapeng has quit IRC | 10:38 | |
*** yangyapeng has joined #openstack-meeting | 10:39 | |
*** yolkfull has quit IRC | 10:43 | |
*** yangyapeng has quit IRC | 10:43 | |
*** nadya has joined #openstack-meeting | 10:44 | |
*** d0ugal has quit IRC | 10:45 | |
*** thorst_afk has joined #openstack-meeting | 10:46 | |
*** ntpttr has quit IRC | 10:47 | |
*** ntpttr has joined #openstack-meeting | 10:49 | |
*** thorst_afk has quit IRC | 10:51 | |
*** ntpttr has quit IRC | 10:53 | |
*** ntpttr has joined #openstack-meeting | 10:54 | |
*** caowei has quit IRC | 10:57 | |
*** caowei has joined #openstack-meeting | 10:57 | |
*** ntpttr has quit IRC | 10:59 | |
*** ntpttr has joined #openstack-meeting | 11:01 | |
*** sdague has joined #openstack-meeting | 11:04 | |
*** d0ugal has joined #openstack-meeting | 11:05 | |
*** jkilpatr has joined #openstack-meeting | 11:08 | |
*** ijw has joined #openstack-meeting | 11:09 | |
*** ntpttr has quit IRC | 11:10 | |
*** markvoelker_ has joined #openstack-meeting | 11:11 | |
*** markvoelker has quit IRC | 11:12 | |
*** ntpttr has joined #openstack-meeting | 11:12 | |
*** ijw has quit IRC | 11:14 | |
*** makowals has joined #openstack-meeting | 11:16 | |
*** ntpttr has quit IRC | 11:17 | |
*** ansmith has quit IRC | 11:18 | |
*** ntpttr has joined #openstack-meeting | 11:18 | |
*** caowei has quit IRC | 11:18 | |
*** cloud-liang has quit IRC | 11:18 | |
*** zhonghua has quit IRC | 11:23 | |
*** zhonghua has joined #openstack-meeting | 11:23 | |
*** ntpttr has quit IRC | 11:26 | |
*** ntpttr has joined #openstack-meeting | 11:27 | |
*** kaisers_ has quit IRC | 11:29 | |
*** kaisers has joined #openstack-meeting | 11:30 | |
*** iceyao has joined #openstack-meeting | 11:30 | |
*** prateek has quit IRC | 11:30 | |
*** ntpttr has quit IRC | 11:32 | |
*** ntpttr has joined #openstack-meeting | 11:33 | |
*** anilvenkata has quit IRC | 11:34 | |
*** kaisers has quit IRC | 11:34 | |
*** yangyapeng has joined #openstack-meeting | 11:36 | |
*** markvoelker_ has quit IRC | 11:38 | |
*** prateek has joined #openstack-meeting | 11:41 | |
*** kaisers has joined #openstack-meeting | 11:41 | |
*** donghao has joined #openstack-meeting | 11:42 | |
*** ntpttr has quit IRC | 11:45 | |
*** amotoki has joined #openstack-meeting | 11:45 | |
*** donghao has quit IRC | 11:47 | |
*** ntpttr has joined #openstack-meeting | 11:47 | |
*** prateek_ has joined #openstack-meeting | 11:48 | |
*** thorst_afk has joined #openstack-meeting | 11:51 | |
*** askb has quit IRC | 11:51 | |
*** andreas_s has quit IRC | 11:51 | |
*** prateek has quit IRC | 11:51 | |
*** ntpttr has quit IRC | 11:54 | |
*** ntpttr has joined #openstack-meeting | 11:54 | |
*** dprince has joined #openstack-meeting | 11:55 | |
*** amotoki has quit IRC | 11:58 | |
*** julim has quit IRC | 12:00 | |
*** amotoki has joined #openstack-meeting | 12:01 | |
*** pchavva has joined #openstack-meeting | 12:01 | |
*** dgonzalez has quit IRC | 12:02 | |
*** ntpttr has quit IRC | 12:02 | |
*** pradk has joined #openstack-meeting | 12:06 | |
*** ntpttr has joined #openstack-meeting | 12:07 | |
*** dgonzalez has joined #openstack-meeting | 12:07 | |
*** rfolco has joined #openstack-meeting | 12:08 | |
*** zhonghua has quit IRC | 12:09 | |
*** zhonghua has joined #openstack-meeting | 12:10 | |
*** xiaohhui has quit IRC | 12:10 | |
*** ijw has joined #openstack-meeting | 12:10 | |
*** ntpttr has quit IRC | 12:11 | |
*** annegentle has joined #openstack-meeting | 12:13 | |
*** ntpttr has joined #openstack-meeting | 12:13 | |
*** jamesmca_ has joined #openstack-meeting | 12:14 | |
*** ijw has quit IRC | 12:16 | |
*** ad_rien_ has joined #openstack-meeting | 12:16 | |
*** thorst_a_ has joined #openstack-meeting | 12:17 | |
*** ntpttr has quit IRC | 12:18 | |
*** jamesmca_ has quit IRC | 12:18 | |
*** thorst_afk has quit IRC | 12:19 | |
*** ntpttr has joined #openstack-meeting | 12:19 | |
*** amotoki has quit IRC | 12:19 | |
*** jaypipes has joined #openstack-meeting | 12:23 | |
*** ntpttr has quit IRC | 12:24 | |
*** zhurong has quit IRC | 12:25 | |
*** ntpttr has joined #openstack-meeting | 12:25 | |
*** ociuhandu has joined #openstack-meeting | 12:25 | |
*** amotoki has joined #openstack-meeting | 12:25 | |
*** matrohon has joined #openstack-meeting | 12:29 | |
*** ntpttr has quit IRC | 12:32 | |
*** esberglu has joined #openstack-meeting | 12:32 | |
*** esberglu has quit IRC | 12:32 | |
*** ntpttr has joined #openstack-meeting | 12:33 | |
*** amotoki has quit IRC | 12:34 | |
*** markvoelker has joined #openstack-meeting | 12:35 | |
*** cloud-liang has joined #openstack-meeting | 12:41 | |
*** annegentle has quit IRC | 12:41 | |
*** ntpttr has quit IRC | 12:42 | |
*** mlakat has joined #openstack-meeting | 12:42 | |
*** ntpttr has joined #openstack-meeting | 12:43 | |
*** ansmith has joined #openstack-meeting | 12:45 | |
*** mickeys has joined #openstack-meeting | 12:47 | |
*** ntpttr has quit IRC | 12:47 | |
*** tobberyd_ has joined #openstack-meeting | 12:48 | |
*** ntpttr has joined #openstack-meeting | 12:49 | |
*** mickeys has quit IRC | 12:51 | |
*** tobberydberg has quit IRC | 12:52 | |
*** bobh has joined #openstack-meeting | 12:52 | |
*** zhonghua has quit IRC | 12:53 | |
*** ntpttr has quit IRC | 12:53 | |
*** zhonghua has joined #openstack-meeting | 12:53 | |
*** ntpttr has joined #openstack-meeting | 12:55 | |
*** amotoki has joined #openstack-meeting | 12:55 | |
*** zhurong has joined #openstack-meeting | 12:58 | |
*** nadya_ has joined #openstack-meeting | 12:59 | |
*** ayogi has quit IRC | 12:59 | |
*** nadya has quit IRC | 12:59 | |
*** trinaths has joined #openstack-meeting | 13:02 | |
*** tobberyd_ has quit IRC | 13:03 | |
*** d0ugal has quit IRC | 13:04 | |
*** wanghao has joined #openstack-meeting | 13:04 | |
*** trinaths has quit IRC | 13:04 | |
*** tobberydberg has joined #openstack-meeting | 13:04 | |
*** wanghao has quit IRC | 13:05 | |
*** ayoung has joined #openstack-meeting | 13:06 | |
*** prateek_ has quit IRC | 13:06 | |
*** mriedem has joined #openstack-meeting | 13:06 | |
*** julim has joined #openstack-meeting | 13:06 | |
*** tobberydberg has quit IRC | 13:07 | |
*** wanghao_ has quit IRC | 13:07 | |
*** tobberydberg has joined #openstack-meeting | 13:07 | |
*** ntpttr has quit IRC | 13:08 | |
*** julim has quit IRC | 13:09 | |
*** julim has joined #openstack-meeting | 13:09 | |
*** Guest94155 has quit IRC | 13:10 | |
*** ntpttr has joined #openstack-meeting | 13:11 | |
*** prateek has joined #openstack-meeting | 13:12 | |
*** VW has joined #openstack-meeting | 13:12 | |
*** ijw has joined #openstack-meeting | 13:12 | |
*** salv-orlando has joined #openstack-meeting | 13:12 | |
*** anilvenkata has joined #openstack-meeting | 13:14 | |
*** zhhuabj has joined #openstack-meeting | 13:15 | |
*** janki is now known as janki|afk | 13:16 | |
*** ijw has quit IRC | 13:17 | |
*** nadya_ has quit IRC | 13:17 | |
*** thorst_a_ is now known as thorst | 13:19 | |
*** d0ugal has joined #openstack-meeting | 13:20 | |
*** Julien-zte has joined #openstack-meeting | 13:20 | |
*** spzala has joined #openstack-meeting | 13:22 | |
*** baoli has joined #openstack-meeting | 13:22 | |
*** baoli has quit IRC | 13:23 | |
*** ntpttr has quit IRC | 13:24 | |
*** ntpttr has joined #openstack-meeting | 13:25 | |
*** Julien-zte has quit IRC | 13:26 | |
*** baoli has joined #openstack-meeting | 13:26 | |
*** chandankumar is now known as chkumar|off | 13:26 | |
*** Julien-zte has joined #openstack-meeting | 13:27 | |
*** Julien-zte has quit IRC | 13:28 | |
*** Julien-zte has joined #openstack-meeting | 13:29 | |
*** Julien-zte has quit IRC | 13:30 | |
*** iceyao has quit IRC | 13:30 | |
*** Julien-zte has joined #openstack-meeting | 13:31 | |
*** iceyao has joined #openstack-meeting | 13:31 | |
*** iceyao has quit IRC | 13:31 | |
*** esberglu has joined #openstack-meeting | 13:32 | |
*** esberglu has quit IRC | 13:32 | |
*** esberglu has joined #openstack-meeting | 13:33 | |
*** VW has quit IRC | 13:33 | |
*** VW has joined #openstack-meeting | 13:34 | |
*** martinkopec has quit IRC | 13:34 | |
*** ntpttr has quit IRC | 13:35 | |
*** ntpttr has joined #openstack-meeting | 13:35 | |
*** jaugustine has joined #openstack-meeting | 13:36 | |
*** Julien-zte has quit IRC | 13:37 | |
*** Julien-zte has joined #openstack-meeting | 13:38 | |
*** VW has quit IRC | 13:38 | |
*** eharney has joined #openstack-meeting | 13:38 | |
*** ntpttr has quit IRC | 13:42 | |
*** ntpttr has joined #openstack-meeting | 13:43 | |
*** janki|afk is now known as janki | 13:46 | |
*** diablo_rojo has joined #openstack-meeting | 13:46 | |
*** lamt has joined #openstack-meeting | 13:49 | |
*** adisky_ has quit IRC | 13:49 | |
*** ntpttr has quit IRC | 13:50 | |
*** ntpttr has joined #openstack-meeting | 13:51 | |
*** kevinz has joined #openstack-meeting | 13:53 | |
*** ntpttr has quit IRC | 13:56 | |
*** ntpttr has joined #openstack-meeting | 13:57 | |
*** nadya has joined #openstack-meeting | 13:59 | |
*** kevinz has quit IRC | 13:59 | |
*** dtrainor has joined #openstack-meeting | 14:00 | |
*** kevinz has joined #openstack-meeting | 14:00 | |
*** annegentle has joined #openstack-meeting | 14:03 | |
*** ntpttr has quit IRC | 14:03 | |
*** ntpttr has joined #openstack-meeting | 14:05 | |
*** rbak has joined #openstack-meeting | 14:07 | |
*** ntpttr has quit IRC | 14:10 | |
*** ntpttr has joined #openstack-meeting | 14:11 | |
*** hongbin has joined #openstack-meeting | 14:13 | |
*** zz_dimtruck is now known as dimtruck | 14:13 | |
*** ijw has joined #openstack-meeting | 14:13 | |
*** ntpttr has quit IRC | 14:18 | |
*** ijw has quit IRC | 14:19 | |
*** ntpttr has joined #openstack-meeting | 14:19 | |
*** claudiub|3 has quit IRC | 14:19 | |
*** iceyao has joined #openstack-meeting | 14:19 | |
*** felipemonteiro__ has joined #openstack-meeting | 14:21 | |
*** electrofelix has quit IRC | 14:21 | |
*** ad_rien_ has quit IRC | 14:22 | |
*** cloudrancher has joined #openstack-meeting | 14:23 | |
*** felipemonteiro_ has joined #openstack-meeting | 14:23 | |
*** salv-orlando has quit IRC | 14:23 | |
*** ntpttr has quit IRC | 14:24 | |
*** ntpttr has joined #openstack-meeting | 14:25 | |
*** prateek has quit IRC | 14:26 | |
*** felipemonteiro__ has quit IRC | 14:27 | |
*** diablo_rojo has quit IRC | 14:27 | |
*** yangyape_ has joined #openstack-meeting | 14:27 | |
*** d0ugal has quit IRC | 14:28 | |
*** fnaval has joined #openstack-meeting | 14:29 | |
*** ataraday_ has joined #openstack-meeting | 14:30 | |
*** yangyapeng has quit IRC | 14:30 | |
*** gouthamr has joined #openstack-meeting | 14:31 | |
*** d0ugal has joined #openstack-meeting | 14:32 | |
*** felipemonteiro has joined #openstack-meeting | 14:33 | |
*** jchhatbar has joined #openstack-meeting | 14:35 | |
*** felipemonteiro_ has quit IRC | 14:35 | |
*** janki has quit IRC | 14:36 | |
*** ntpttr has quit IRC | 14:36 | |
*** anilvenkata has quit IRC | 14:37 | |
*** ntpttr has joined #openstack-meeting | 14:37 | |
*** salv-orlando has joined #openstack-meeting | 14:38 | |
*** zhurong has quit IRC | 14:39 | |
*** d0ugal has quit IRC | 14:39 | |
*** lpetrut_ has quit IRC | 14:40 | |
*** cloudrancher has quit IRC | 14:41 | |
*** awaugama has joined #openstack-meeting | 14:42 | |
*** ntpttr has quit IRC | 14:42 | |
*** ltomasbo is now known as ltomasbo|away | 14:42 | |
*** donghao has joined #openstack-meeting | 14:42 | |
*** darrenc has quit IRC | 14:43 | |
*** ntpttr has joined #openstack-meeting | 14:43 | |
*** tobberyd_ has joined #openstack-meeting | 14:47 | |
*** d0ugal has joined #openstack-meeting | 14:47 | |
*** ntpttr has quit IRC | 14:50 | |
*** tobberydberg has quit IRC | 14:51 | |
*** ntpttr has joined #openstack-meeting | 14:51 | |
*** jamesdenton has joined #openstack-meeting | 14:51 | |
*** tobberyd_ has quit IRC | 14:52 | |
*** armax has joined #openstack-meeting | 14:52 | |
*** ralonsoh_ has joined #openstack-meeting | 14:55 | |
*** ntpttr has quit IRC | 14:55 | |
*** d0ugal has quit IRC | 14:56 | |
*** ralonsoh has quit IRC | 14:57 | |
*** ntpttr has joined #openstack-meeting | 14:57 | |
*** sridharg has quit IRC | 14:58 | |
*** fnaval has quit IRC | 14:58 | |
*** fnaval has joined #openstack-meeting | 14:59 | |
*** Kevin_Zheng has joined #openstack-meeting | 14:59 | |
*** cloudrancher has joined #openstack-meeting | 14:59 | |
*** ralonsoh has joined #openstack-meeting | 15:02 | |
*** ralonsoh_ has quit IRC | 15:02 | |
*** fnaval has quit IRC | 15:03 | |
*** iceyao has quit IRC | 15:05 | |
*** pcaruana has quit IRC | 15:05 | |
*** claudiub has joined #openstack-meeting | 15:07 | |
*** iyamahat has joined #openstack-meeting | 15:07 | |
*** zhonghua has quit IRC | 15:07 | |
*** kevinz has quit IRC | 15:07 | |
*** zhonghua has joined #openstack-meeting | 15:08 | |
*** ntpttr has quit IRC | 15:10 | |
*** rbartal has quit IRC | 15:10 | |
*** mlakat has quit IRC | 15:11 | |
*** mickeys has joined #openstack-meeting | 15:11 | |
*** ntpttr has joined #openstack-meeting | 15:11 | |
*** zigo has quit IRC | 15:17 | |
*** ltomasbo|away is now known as ltomasbo | 15:18 | |
*** fnaval has joined #openstack-meeting | 15:18 | |
*** ntpttr has quit IRC | 15:20 | |
*** msimonin has quit IRC | 15:20 | |
*** d0ugal has joined #openstack-meeting | 15:21 | |
*** ntpttr has joined #openstack-meeting | 15:21 | |
*** armax has quit IRC | 15:23 | |
*** jamesmca_ has joined #openstack-meeting | 15:25 | |
*** iceyao has joined #openstack-meeting | 15:25 | |
*** chyka has joined #openstack-meeting | 15:26 | |
*** Guest37977 has quit IRC | 15:26 | |
*** pnavarro has joined #openstack-meeting | 15:28 | |
*** iceyao has quit IRC | 15:30 | |
*** markvoelker has quit IRC | 15:30 | |
*** markvoelker has joined #openstack-meeting | 15:31 | |
*** ijw has joined #openstack-meeting | 15:33 | |
*** msimonin has joined #openstack-meeting | 15:35 | |
*** aarefiev is now known as aarefiev_afk | 15:35 | |
*** SpamapS has quit IRC | 15:37 | |
*** SpamapS has joined #openstack-meeting | 15:37 | |
*** VW has joined #openstack-meeting | 15:39 | |
*** dprince has quit IRC | 15:41 | |
*** unicell has joined #openstack-meeting | 15:44 | |
*** unicell1 has quit IRC | 15:44 | |
*** ntpttr has quit IRC | 15:47 | |
*** ntpttr has joined #openstack-meeting | 15:48 | |
*** yamahata_ has quit IRC | 15:48 | |
*** iyamahat has quit IRC | 15:49 | |
*** kevinz has joined #openstack-meeting | 15:49 | |
*** salv-orl_ has joined #openstack-meeting | 15:50 | |
*** makowals has quit IRC | 15:50 | |
*** pradk has quit IRC | 15:52 | |
*** msimonin has quit IRC | 15:52 | |
*** salv-orlando has quit IRC | 15:52 | |
*** msimonin has joined #openstack-meeting | 15:52 | |
*** jchhatbar has quit IRC | 15:53 | |
*** msimonin has quit IRC | 15:53 | |
*** msimonin has joined #openstack-meeting | 15:53 | |
*** ntpttr has quit IRC | 15:53 | |
*** kevinz has quit IRC | 15:54 | |
*** msimonin has quit IRC | 15:54 | |
*** Apoorva has joined #openstack-meeting | 15:54 | |
*** msimonin has joined #openstack-meeting | 15:54 | |
*** msimonin has quit IRC | 15:55 | |
*** ntpttr has joined #openstack-meeting | 15:55 | |
*** msimonin has joined #openstack-meeting | 15:55 | |
*** msimonin has quit IRC | 15:55 | |
*** msimonin has joined #openstack-meeting | 15:55 | |
*** msimonin has quit IRC | 15:56 | |
*** msimonin has joined #openstack-meeting | 15:56 | |
*** msimonin has quit IRC | 15:57 | |
*** e0ne has quit IRC | 15:57 | |
*** ad_rien_ has joined #openstack-meeting | 15:59 | |
*** Julien-zte has quit IRC | 15:59 | |
oomichi | #startmeeting qa | 16:00 |
openstack | Meeting 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 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 16:00 |
*** openstack changes topic to " (Meeting topic: qa)" | 16:00 | |
openstack | The meeting name has been set to 'qa' | 16:00 |
oomichi | hi, who are joining to the meeting today? | 16:00 |
clarkb | I am sort of around | 16:01 |
oomichi | andreaf: is on the air now today | 16:01 |
*** Julien-zte has joined #openstack-meeting | 16:01 | |
oomichi | clarkb: o/ | 16:01 |
oomichi | mtreinish: sdague: afazekas: ping | 16:02 |
mtreinish | o/ | 16:02 |
*** Julien-zte has quit IRC | 16:02 | |
afazekas | o/ | 16:02 |
*** ayogi has joined #openstack-meeting | 16:02 | |
oomichi | ok, let's start a meeting | 16:02 |
*** Patifa has joined #openstack-meeting | 16:02 | |
*** lamt has quit IRC | 16:03 | |
oomichi | #link https://wiki.openstack.org/w/index.php?title=Meetings/QATeamMeeting#Agenda_for_April_27th_2017_.281700_UTC.29 | 16:03 |
oomichi | ^^^ today agenda | 16:03 |
oomichi | from the previous meeting | 16:03 |
oomichi | "ACTION: andreaf to setup etherpad for Forum session" | 16:03 |
oomichi | andreaf: is preparing the above and we will be able to see it soon | 16:04 |
*** iyamahat has joined #openstack-meeting | 16:04 | |
oomichi | "ACTION: gmann to add periodic job status tracking on bug triage etherpad" | 16:04 |
oomichi | I tried to reach gmann about this but could not get status about that | 16:04 |
oomichi | #topic The Forum, Boston | 16:05 |
*** openstack changes topic to "The Forum, Boston (Meeting topic: qa)" | 16:05 | |
oomichi | We have onboarding forum May 8(Mon), 16:40 | 16:05 |
*** nadya has quit IRC | 16:05 | |
oomichi | I guess that could be like upstream training for new contributors | 16:05 |
*** eharney has quit IRC | 16:05 | |
*** makowals has joined #openstack-meeting | 16:06 | |
oomichi | but I am not getting how to make process for this meetup yet, do someone have idea for that? | 16:06 |
*** Ak13 has joined #openstack-meeting | 16:06 | |
*** ntpttr has quit IRC | 16:06 | |
mtreinish | oomichi: it is, the idea is to get people started contributing to qa projects | 16:06 |
mtreinish | give them a detailed introduction to the project, etc | 16:06 |
*** galstrom_zzz is now known as galstrom | 16:07 | |
oomichi | mtreinish: yeah, we had this kind of meetup in HPE office before | 16:07 |
*** ntpttr has joined #openstack-meeting | 16:07 | |
*** Julien-zte has joined #openstack-meeting | 16:07 | |
oomichi | maybe we will separate groups into some interested topics | 16:07 |
mtreinish | oomichi: we did? | 16:08 |
* mtreinish doesn't rememeber | 16:08 | |
*** pewp has quit IRC | 16:08 | |
oomichi | mtreinish: you made the mid-cycle meetup at HP office when you were PTL | 16:08 |
*** pewp has joined #openstack-meeting | 16:08 | |
oomichi | mtreinish: I cannot remember the place nam.. | 16:09 |
oomichi | name | 16:09 |
mtreinish | I did that a few times (it was easy to organize that way) But I don't remember having one to onboard new people | 16:09 |
mtreinish | the only time we did that which I remember was in Darmstadt with a combine infra/qa midcycle | 16:09 |
mtreinish | but anyway this is separate, and not important :) | 16:09 |
oomichi | hehe, ok anyways it would be nice to have some etherpads how to make it | 16:10 |
oomichi | another forum is May 11(Thurs), 9:00 | 16:10 |
oomichi | #link https://www.openstack.org/summit/boston-2017/summit-schedule/events/18777/users-operators-adoption-of-qa-tools-plugins | 16:11 |
oomichi | andreaf: is preparing for it | 16:11 |
oomichi | do we have items need to discuss Forum at this time? | 16:11 |
oomichi | #topic Outreachy intern | 16:11 |
*** openstack changes topic to "Outreachy intern (Meeting topic: qa)" | 16:11 | |
oomichi | I guess rodrigods's turn for this | 16:12 |
*** ntpttr has quit IRC | 16:12 | |
*** cloud-liang has quit IRC | 16:12 | |
oomichi | rodrigods: ping | 16:12 |
rodrigods | sorry | 16:13 |
rodrigods | so... | 16:13 |
rodrigods | this is more a fyi | 16:13 |
*** ntpttr has joined #openstack-meeting | 16:13 | |
rodrigods | we are going to have an Outreachy intern that will work to add jobs where keystone will run against LDAP as identity backend | 16:13 |
rodrigods | once the proper announces are made, i'll introduce the intern to you, probably in this meeting :) | 16:14 |
mtreinish | rodrigods: ok, cool | 16:14 |
*** makowals has quit IRC | 16:14 | |
mtreinish | rodrigods: that does sound like a good job to add to the gate too | 16:14 |
rodrigods | mtreinish, exactly :) | 16:14 |
*** ltosky[m] has joined #openstack-meeting | 16:14 | |
rodrigods | so i guess she will be more present in the -qa site than in -keystone :) | 16:15 |
rodrigods | side* | 16:15 |
oomichi | rodrigods: good, does he have some patches already ? | 16:15 |
*** makowals has joined #openstack-meeting | 16:15 | |
rodrigods | let me take a look | 16:15 |
rodrigods | only general patches, not related to the project yet | 16:15 |
oomichi | rodrigods: ok, thanks for the info. That is good for us :) | 16:16 |
rodrigods | oomichi, ++ | 16:16 |
oomichi | #topic Gate Stability - status update | 16:16 |
*** openstack changes topic to "Gate Stability - status update (Meeting topic: qa)" | 16:16 | |
*** cloud-liang has joined #openstack-meeting | 16:16 | |
oomichi | #link https://goo.gl/ptPgEw | 16:16 |
oomichi | #link http://status.openstack.org/elastic-recheck/gate.html | 16:16 |
oomichi | the above pages show it seems good status | 16:17 |
*** makowals has quit IRC | 16:17 | |
oomichi | do we have some topics about gate status? | 16:17 |
mtreinish | oomichi: you should also probably link to: http://status.openstack.org/elastic-recheck/data/integrated_gate.html | 16:17 |
mtreinish | which shows the failures we're not tracking yet | 16:18 |
*** ntpttr has quit IRC | 16:18 | |
oomichi | #link http://status.openstack.org/elastic-recheck/data/integrated_gate.html | 16:18 |
*** eharney has joined #openstack-meeting | 16:18 | |
oomichi | mtreinish: yeah, that seems useful | 16:19 |
*** ntpttr has joined #openstack-meeting | 16:19 | |
clarkb | so 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, whatever | 16:20 |
oomichi | clarkb: mtreinish: the page shows only general jobs or including periodic jobs and non-voting jobs? | 16:21 |
*** matrohon has quit IRC | 16:22 | |
mtreinish | clarkb: it's kinda hard to do that though | 16:22 |
clarkb | my understanding is that integrated_gate is just gate jobs for the "integrated" pipeline | 16:22 |
mtreinish | like how can we tell if the code is slow vs the guest is running on the same node as someone running mprime | 16:22 |
mtreinish | oomichi: yeah what clarkb said | 16:22 |
*** tobberydberg has joined #openstack-meeting | 16:22 | |
oomichi | clarkb: cool, that is helpful | 16:23 |
clarkb | mtreinish: one example would be if devstack takes an hour thats likely a slow node | 16:23 |
clarkb | whereas random dsvm job with default timeout of 40 minutes is just slow code against to short a timeout | 16:23 |
*** cdub has joined #openstack-meeting | 16:23 | |
*** donghao has quit IRC | 16:23 | |
clarkb | (I don't actually know if thats how it will shake out) | 16:24 |
*** trozet has quit IRC | 16:25 | |
oomichi | ok, it would be nice to check this status also every week for selecting which issue should be concentrated anyways | 16:26 |
*** galstrom is now known as galstrom_zzz | 16:26 | |
oomichi | #topic Spec reviews | 16:26 |
*** openstack changes topic to "Spec reviews (Meeting topic: qa)" | 16:26 | |
*** ntpttr has quit IRC | 16:26 | |
*** abalutoiu has quit IRC | 16:26 | |
mtreinish | clarkb: maybe, or maybe someone introduced a bad db migration and caused devstack to time out | 16:26 |
*** tobberydberg has quit IRC | 16:27 | |
mtreinish | clarkb: but I agree categorizing them is at least something to start with | 16:27 |
mtreinish | and we can analyze from there | 16:27 |
oomichi | +1 | 16:27 |
*** ntpttr has joined #openstack-meeting | 16:27 | |
oomichi | #link https://review.openstack.org/#/q/status:open+project:openstack/qa-specs,n,z | 16:28 |
oomichi | #link https://review.openstack.org/#/c/443504/ is only active spec for HA testing | 16:28 |
*** dprince has joined #openstack-meeting | 16:28 | |
oomichi | I put some comments before and it is good to get more feedback | 16:29 |
oomichi | we can move if not having more items on spec | 16:29 |
Ak13 | is someone still working on this https://review.openstack.org/#/c/255023/ | 16:29 |
oomichi | #topic Tempest | 16:29 |
*** openstack changes topic to "Tempest (Meeting topic: qa)" | 16:29 | |
*** msimonin has joined #openstack-meeting | 16:30 | |
oomichi | Ak13: I guess nowbody | 16:30 |
oomichi | nobody | 16:30 |
oomichi | Ak13: are you interested in? | 16:30 |
*** armax has joined #openstack-meeting | 16:31 | |
*** jimbaker has left #openstack-meeting | 16:31 | |
*** gouthamr has quit IRC | 16:31 | |
Ak13 | oomichi: yes I would be | 16:31 |
*** ntpttr has quit IRC | 16:32 | |
oomichi | mtreinish: you did put -2 about that long-time ago | 16:32 |
mtreinish | oomichi: yeah, because tempest isn't in place where it can do what was described in the spec | 16:33 |
mtreinish | oomichi: and it still isn't | 16:33 |
mtreinish | I outlined the reasons why pretty clearly in the review comment | 16:33 |
*** ntpttr has joined #openstack-meeting | 16:33 | |
*** toscalix has quit IRC | 16:33 | |
mtreinish | and the resources.yaml work never went anywhere | 16:33 |
oomichi | mtreinish: yeah, I see the point | 16:34 |
oomichi | Ak13: did you see https://review.openstack.org/#/c/173334/ instead? | 16:34 |
oomichi | that could be replacement | 16:34 |
oomichi | I just need to make it move forward | 16:35 |
* mtreinish is still waiting for oomichi on that one | 16:35 | |
Ak13 | looking at it now | 16:35 |
oomichi | #action oomichi update https://review.openstack.org/#/c/173334/ | 16:35 |
*** matrohon has joined #openstack-meeting | 16:35 | |
*** salv-orl_ has quit IRC | 16:36 | |
oomichi | Ak13: that is a little long spec, it would be nice to discuss later after reading | 16:36 |
oomichi | #topic Tempest | 16:36 |
*** openstack changes topic to "Tempest (Meeting topic: qa)" | 16:36 | |
Ak13 | oomichi: Agreed, I will need time to digest it | 16:36 |
oomichi | Ak13: thanks | 16:37 |
oomichi | I did bug triage at this turn | 16:37 |
oomichi | #link https://etherpad.openstack.org/p/tempest-weekly-bug-report | 16:37 |
Ak13 | oomichi: Is it ok if I get in touch with you later with any questions about that one | 16:37 |
oomichi | Ak13: yeah | 16:38 |
*** ntpttr has quit IRC | 16:38 | |
*** ayogi has quit IRC | 16:38 | |
oomichi | I just bring #link https://review.openstack.org/#/c/455319 for closing a bug more | 16:38 |
oomichi | the bug status itself seems good, New bugs are only 4 | 16:38 |
oomichi | In-progress bugs are 50, not so bad | 16:39 |
*** ntpttr has joined #openstack-meeting | 16:39 | |
oomichi | do someone have items necessary to discuss Tempest? | 16:40 |
mtreinish | oomichi: what happened to the bug graphs? :) | 16:40 |
*** gouthamr has joined #openstack-meeting | 16:40 | |
oomichi | mtreinish: oh, keen point.. I didn't want to talk about that TBH :-( | 16:40 |
oomichi | mtreinish: the periodic job was dead in my vacation, and I could not get the data before this meeting | 16:41 |
oomichi | mtreinish: I will be able to report it next meeting | 16:41 |
mtreinish | oomichi: heh, no worries | 16:41 |
oomichi | ok, lets move on | 16:42 |
oomichi | #topic Patrole | 16:42 |
*** openstack changes topic to "Patrole (Meeting topic: qa)" | 16:42 | |
*** dustins has joined #openstack-meeting | 16:42 | |
oomichi | do we have discussion items about patrole today? | 16:42 |
oomichi | ok, lets move on | 16:44 |
oomichi | #topic DevStack | 16:44 |
*** openstack changes topic to "DevStack (Meeting topic: qa)" | 16:44 | |
*** ntpttr has quit IRC | 16:44 | |
oomichi | do we have discussion items about devstack today? | 16:44 |
oomichi | #topic Upgrade Testing | 16:45 |
*** openstack changes topic to "Upgrade Testing (Meeting topic: qa)" | 16:45 | |
*** knangia has joined #openstack-meeting | 16:45 | |
*** ntpttr has joined #openstack-meeting | 16:45 | |
oomichi | do we have discussion items about upgrade testing today? | 16:45 |
oomichi | I could not know "Rolling upgrade" before the meeting TBH | 16:46 |
mtreinish | oomichi: oh, I had a devstack thing, but it can wait till critical reviews | 16:46 |
mtreinish | because it's just a review | 16:46 |
oomichi | mtreinish: ok :) | 16:47 |
mtreinish | rolling upgrades was the thing castulo and luzC were working on | 16:47 |
*** rossella_s has quit IRC | 16:47 | |
oomichi | that soulds cool, thanks castulo and luzC | 16:47 |
oomichi | wasn't it affected with OSIC thing? | 16:48 |
mtreinish | yes, it was | 16:48 |
*** lamt has joined #openstack-meeting | 16:48 | |
*** ltomasbo is now known as ltomasbo|away | 16:48 | |
*** ociuhandu has quit IRC | 16:48 | |
oomichi | mtreinish: oh, ok. maybe we need to find more members if we need to keep it, right? | 16:48 |
mtreinish | yep, but given the lack of general contribution in this space it's probably unlikely at this point | 16:49 |
oomichi | yeah, I agree. that could be discussed at the next summit, that is soon | 16:50 |
oomichi | ok, lets move on | 16:50 |
*** ntpttr has quit IRC | 16:50 | |
oomichi | #topic OpenStack-Health, Stackviz | 16:50 |
*** openstack changes topic to "OpenStack-Health, Stackviz (Meeting topic: qa)" | 16:50 | |
oomichi | someone has items for OpenStack-Health, Stackviz ? | 16:50 |
*** ralonsoh has quit IRC | 16:51 | |
*** ntpttr has joined #openstack-meeting | 16:51 | |
oomichi | #topic Critical Reviews | 16:51 |
*** openstack changes topic to "Critical Reviews (Meeting topic: qa)" | 16:51 | |
mtreinish | nothing from me | 16:52 |
mtreinish | #link https://review.openstack.org/435106 | 16:52 |
oomichi | mtreinish: you can bring yours now | 16:52 |
mtreinish | that fix is neeed to avoid the gate breakage oomichi introduced last night by approving a newton backport in devstack | 16:52 |
mtreinish | the 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 |
oomichi | mtreinish: hehe, yeah I know I did some wrong thing | 16:53 |
oomichi | ok, let me have it as priority one | 16:53 |
*** darvon has quit IRC | 16:54 | |
oomichi | are there more patches to be reviewed? | 16:55 |
oomichi | #topic Documentation | 16:55 |
*** openstack changes topic to "Documentation (Meeting topic: qa)" | 16:56 | |
mtreinish | oomichi: https://review.openstack.org/#/q/owner:treinish+status:open | 16:56 |
mtreinish | :) | 16:56 |
*** ntpttr has quit IRC | 16:56 | |
*** darvon has joined #openstack-meeting | 16:56 | |
oomichi | mtreinish: hehe, you need to select important ones :) | 16:56 |
oomichi | I know everyone wants to say "my all patches are important" | 16:56 |
mtreinish | I definitely don't say that | 16:57 |
mtreinish | some of those patches are garbage | 16:57 |
*** dpaterson_ has joined #openstack-meeting | 16:57 | |
*** ntpttr has joined #openstack-meeting | 16:57 | |
oomichi | mtreinish: haha, yeah it is nice to do cleanup at some points | 16:57 |
oomichi | re: Documentation | 16:58 |
oomichi | I am not sure this topic TBH | 16:58 |
*** blancos has joined #openstack-meeting | 16:58 | |
oomichi | do we have some topics about doc thing? | 16:58 |
*** baoli has quit IRC | 16:58 | |
oomichi | #Open Discussion | 16:59 |
*** trinaths has joined #openstack-meeting | 16:59 | |
*** litao has quit IRC | 16:59 | |
oomichi | do someone has topics need to be discussed | 16:59 |
oomichi | ? | 16:59 |
clarkb | I'm going to try and pick up tls enabled by default in devstack after the summit | 16:59 |
clarkb | is that something that should have a spec? | 16:59 |
oomichi | clarkb: I don't think we need a spec | 17:00 |
mtreinish | clarkb: just flip the switch | 17:00 |
oomichi | oh, sorry tome is comming | 17:00 |
oomichi | #endmeeting | 17:00 |
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings" | 17:00 | |
clarkb | ok thanks | 17:00 |
openstack | Meeting ended Thu Apr 27 17:00:28 2017 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 17:00 |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-04-27-16.00.html | 17:00 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-04-27-16.00.txt | 17:00 |
openstack | Log: http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-04-27-16.00.log.html | 17:00 |
oomichi | lets discuss more on -qa | 17:00 |
*** salv-orlando has joined #openstack-meeting | 17:01 | |
*** unicell has quit IRC | 17:01 | |
*** jprovazn has quit IRC | 17:01 | |
*** trinaths has quit IRC | 17:03 | |
*** ntpttr has quit IRC | 17:04 | |
*** yangyape_ has quit IRC | 17:05 | |
*** ntpttr has joined #openstack-meeting | 17:05 | |
*** ijw has quit IRC | 17:06 | |
*** harlowja has quit IRC | 17:08 | |
*** cloudrancher has quit IRC | 17:08 | |
*** baoli has joined #openstack-meeting | 17:09 | |
*** cloudrancher has joined #openstack-meeting | 17:09 | |
*** ntpttr has quit IRC | 17:10 | |
*** Ak13 has quit IRC | 17:10 | |
*** pchavva1 has joined #openstack-meeting | 17:10 | |
*** pchavva1 has quit IRC | 17:10 | |
*** ntpttr has joined #openstack-meeting | 17:11 | |
*** blancos has left #openstack-meeting | 17:12 | |
*** gman-tx has joined #openstack-meeting | 17:13 | |
*** gman-tx has quit IRC | 17:13 | |
*** trinaths has joined #openstack-meeting | 17:14 | |
*** cloudrancher has quit IRC | 17:15 | |
*** makowals has joined #openstack-meeting | 17:15 | |
*** ntpttr has quit IRC | 17:16 | |
*** jamesmca_ has quit IRC | 17:16 | |
*** abalutoiu has joined #openstack-meeting | 17:16 | |
*** ntpttr has joined #openstack-meeting | 17:17 | |
*** jamesmca_ has joined #openstack-meeting | 17:18 | |
*** makowals has quit IRC | 17:19 | |
*** ntpttr has quit IRC | 17:22 | |
*** ntpttr has joined #openstack-meeting | 17:23 | |
*** donghao has joined #openstack-meeting | 17:24 | |
*** ricolin has quit IRC | 17:26 | |
*** cloudrancher has joined #openstack-meeting | 17:26 | |
*** trinaths has left #openstack-meeting | 17:27 | |
*** ntpttr has quit IRC | 17:27 | |
*** donghao has quit IRC | 17:29 | |
*** ntpttr has joined #openstack-meeting | 17:29 | |
*** iceyao has joined #openstack-meeting | 17:31 | |
*** baoli_ has joined #openstack-meeting | 17:31 | |
*** jamesmca_ has quit IRC | 17:32 | |
*** amotoki has quit IRC | 17:32 | |
*** baoli has quit IRC | 17:33 | |
*** ansmith has quit IRC | 17:34 | |
*** unicell has joined #openstack-meeting | 17:34 | |
*** iceyao has quit IRC | 17:35 | |
*** ntpttr has quit IRC | 17:36 | |
*** ntpttr has joined #openstack-meeting | 17:37 | |
*** ijw has joined #openstack-meeting | 17:39 | |
*** tongli has joined #openstack-meeting | 17:41 | |
*** ntpttr has quit IRC | 17:41 | |
*** rbak has quit IRC | 17:42 | |
*** baoli_ has quit IRC | 17:42 | |
*** ntpttr has joined #openstack-meeting | 17:43 | |
*** gyee has joined #openstack-meeting | 17:43 | |
*** baoli has joined #openstack-meeting | 17:45 | |
*** msimonin has quit IRC | 17:46 | |
*** msimonin has joined #openstack-meeting | 17:47 | |
*** cloudrancher has quit IRC | 17:47 | |
*** msimonin has quit IRC | 17:47 | |
*** msimonin has joined #openstack-meeting | 17:47 | |
*** ntpttr has quit IRC | 17:47 | |
*** cloudrancher has joined #openstack-meeting | 17:48 | |
*** msimonin has quit IRC | 17:48 | |
*** msimonin has joined #openstack-meeting | 17:48 | |
*** ntpttr has joined #openstack-meeting | 17:48 | |
*** msimonin has quit IRC | 17:49 | |
*** msimonin has joined #openstack-meeting | 17:49 | |
*** ansmith has joined #openstack-meeting | 17:49 | |
*** msimonin has quit IRC | 17:50 | |
*** msimonin has joined #openstack-meeting | 17:50 | |
*** msimonin has quit IRC | 17:50 | |
*** harlowja has joined #openstack-meeting | 17:51 | |
*** msimonin has joined #openstack-meeting | 17:51 | |
*** msimonin has quit IRC | 17:51 | |
*** msimonin has joined #openstack-meeting | 17:51 | |
*** pewp has quit IRC | 17:51 | |
*** pewp has joined #openstack-meeting | 17:52 | |
*** msimonin has quit IRC | 17:52 | |
*** ntpttr has quit IRC | 17:53 | |
*** ntpttr has joined #openstack-meeting | 17:55 | |
*** Kevin_Zheng has quit IRC | 17:57 | |
*** erlon has joined #openstack-meeting | 17:57 | |
*** SumitNaiksatam has joined #openstack-meeting | 18:00 | |
*** ntpttr has quit IRC | 18:00 | |
*** ntpttr has joined #openstack-meeting | 18:01 | |
*** jdurgin has joined #openstack-meeting | 18:03 | |
*** ntpttr has quit IRC | 18:05 | |
*** yangyapeng has joined #openstack-meeting | 18:06 | |
*** tongli has quit IRC | 18:06 | |
*** ntpttr has joined #openstack-meeting | 18:07 | |
*** yangyapeng has quit IRC | 18:10 | |
*** ntpttr has quit IRC | 18:12 | |
*** ntpttr has joined #openstack-meeting | 18:13 | |
*** spzala has quit IRC | 18:15 | |
*** claudiub has quit IRC | 18:18 | |
*** dustins has quit IRC | 18:18 | |
*** ntpttr has quit IRC | 18:20 | |
*** ntpttr has joined #openstack-meeting | 18:21 | |
*** VW has quit IRC | 18:23 | |
*** VW has joined #openstack-meeting | 18:23 | |
*** ntpttr has quit IRC | 18:25 | |
*** Sukhdev has joined #openstack-meeting | 18:26 | |
*** ntpttr has joined #openstack-meeting | 18:27 | |
*** Sukhdev has quit IRC | 18:27 | |
*** salv-orlando has quit IRC | 18:27 | |
*** e0ne has joined #openstack-meeting | 18:29 | |
*** ntpttr has quit IRC | 18:31 | |
*** ansmith has quit IRC | 18:31 | |
*** ekcs_ has joined #openstack-meeting | 18:34 | |
*** claudiub has joined #openstack-meeting | 18:36 | |
*** Daviey_ has joined #openstack-meeting | 18:38 | |
*** igordcar1 has joined #openstack-meeting | 18:38 | |
*** Daviey has quit IRC | 18:38 | |
*** annegentle has quit IRC | 18:38 | |
*** eglute has quit IRC | 18:38 | |
*** dhellmann has quit IRC | 18:38 | |
*** tris has quit IRC | 18:38 | |
*** ekcs has quit IRC | 18:38 | |
*** igordcard has quit IRC | 18:38 | |
*** eglute has joined #openstack-meeting | 18:39 | |
*** dhellmann has joined #openstack-meeting | 18:39 | |
*** ntpttr has joined #openstack-meeting | 18:39 | |
*** tris has joined #openstack-meeting | 18:39 | |
*** jamesmca_ has joined #openstack-meeting | 18:41 | |
*** ntpttr has quit IRC | 18:43 | |
*** ntpttr has joined #openstack-meeting | 18:44 | |
*** donghao has joined #openstack-meeting | 18:44 | |
*** ansmith has joined #openstack-meeting | 18:47 | |
*** donghao has quit IRC | 18:49 | |
*** ntpttr has quit IRC | 18:49 | |
*** Sukhdev has joined #openstack-meeting | 18:51 | |
*** ntpttr has joined #openstack-meeting | 18:51 | |
*** SumitNaiksatam has quit IRC | 18:54 | |
*** rbak has joined #openstack-meeting | 18:54 | |
*** annegentle has joined #openstack-meeting | 18:57 | |
*** ntpttr has quit IRC | 18:58 | |
*** ntpttr has joined #openstack-meeting | 18:59 | |
*** jaugustine has quit IRC | 18:59 | |
*** jaugustine has joined #openstack-meeting | 19:00 | |
dtroyer | Anyone here to talk OSC? | 19:00 |
*** cloudrancher has quit IRC | 19:01 | |
* mordred hands dtroyer a pie | 19:03 | |
*** ntpttr has quit IRC | 19:04 | |
mordred | wanna hear a funny? | 19:04 |
mordred | dtroyer: yesterday's occ release actually broke nodepool's gate jobs - but it wasn't that we let an occ bug slip through | 19:04 |
mordred | dtroyer: the removal of the keystoneclient fallback caused a test in nodepool that should have been failing but was silently failing open to start correctly failing | 19:05 |
dtroyer | oh? | 19:05 |
dtroyer | ya, I had a few of those too :) | 19:05 |
*** ntpttr has joined #openstack-meeting | 19:05 | |
*** timello has joined #openstack-meeting | 19:05 | |
dtroyer | that's why OSC's -tips job was red for so long | 19:05 |
mordred | I mean - there was literally no auth information in the test at all - no parameters, no clouds.yaml, no env vars | 19:05 |
mordred | :) | 19:06 |
dtroyer | that's exactly one reason I put in the bits to skip validating until much later in the process | 19:06 |
dtroyer | things you want with no auth aren't done yet | 19:06 |
*** yangyapeng has joined #openstack-meeting | 19:07 | |
dtroyer | so 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/460711 | 19:08 |
*** felipemonteiro has quit IRC | 19:08 | |
dtroyer | anyone else here for OSC? If not we'll skip again | 19:11 |
*** jaugustine has quit IRC | 19:11 | |
*** yangyapeng has quit IRC | 19:11 | |
*** egallen_ has joined #openstack-meeting | 19:12 | |
*** ntpttr has quit IRC | 19:12 | |
*** ntpttr has joined #openstack-meeting | 19:13 | |
*** egallen has quit IRC | 19:13 | |
*** egallen_ is now known as egallen | 19:13 | |
*** ntpttr has quit IRC | 19:18 | |
*** ntpttr has joined #openstack-meeting | 19:19 | |
*** ijw has quit IRC | 19:21 | |
*** ntpttr has quit IRC | 19:26 | |
*** ntpttr has joined #openstack-meeting | 19:27 | |
*** salv-orlando has joined #openstack-meeting | 19:30 | |
*** ntpttr has quit IRC | 19:32 | |
*** ntpttr has joined #openstack-meeting | 19:33 | |
*** awaugama has quit IRC | 19:34 | |
*** pradk has joined #openstack-meeting | 19:34 | |
*** kaisers has quit IRC | 19:41 | |
*** kaisers has joined #openstack-meeting | 19:42 | |
*** spzala has joined #openstack-meeting | 19:43 | |
*** ntpttr has quit IRC | 19:43 | |
*** ntpttr has joined #openstack-meeting | 19:43 | |
*** cloudrancher has joined #openstack-meeting | 19:44 | |
*** cloudrancher has quit IRC | 19:44 | |
*** kaisers has quit IRC | 19:46 | |
*** kaisers has joined #openstack-meeting | 19:48 | |
*** ntpttr has quit IRC | 19:48 | |
*** ntpttr has joined #openstack-meeting | 19:49 | |
*** knangia has quit IRC | 19:51 | |
*** ntpttr has quit IRC | 19:54 | |
*** ntpttr has joined #openstack-meeting | 19:55 | |
*** dbecker has quit IRC | 19:58 | |
*** pchavva has quit IRC | 20:02 | |
*** ntpttr has quit IRC | 20:02 | |
*** ntpttr has joined #openstack-meeting | 20:03 | |
*** e0ne has quit IRC | 20:03 | |
*** felipemonteiro has joined #openstack-meeting | 20:03 | |
*** yangyapeng has joined #openstack-meeting | 20:08 | |
*** felipemonteiro_ has joined #openstack-meeting | 20:08 | |
*** ntpttr has quit IRC | 20:10 | |
*** e0ne has joined #openstack-meeting | 20:10 | |
*** ntpttr has joined #openstack-meeting | 20:11 | |
*** felipemonteiro has quit IRC | 20:11 | |
*** makowals has joined #openstack-meeting | 20:11 | |
*** yangyapeng has quit IRC | 20:12 | |
*** sambetts is now known as sambetts|afk | 20:14 | |
*** ntpttr has quit IRC | 20:15 | |
*** ntpttr has joined #openstack-meeting | 20:17 | |
*** eharney has quit IRC | 20:17 | |
*** liusheng has quit IRC | 20:17 | |
*** liusheng has joined #openstack-meeting | 20:18 | |
*** iceyao has joined #openstack-meeting | 20:18 | |
*** ijw has joined #openstack-meeting | 20:18 | |
*** jaugustine has joined #openstack-meeting | 20:19 | |
*** iceyao has quit IRC | 20:23 | |
*** Cibo_ has joined #openstack-meeting | 20:23 | |
*** ntpttr has quit IRC | 20:24 | |
*** ntpttr has joined #openstack-meeting | 20:25 | |
*** jkilpatr has quit IRC | 20:29 | |
*** ntpttr has quit IRC | 20:29 | |
*** ntpttr has joined #openstack-meeting | 20:31 | |
*** Sukhdev has quit IRC | 20:32 | |
*** makowals has quit IRC | 20:33 | |
*** e0ne has quit IRC | 20:34 | |
*** ansmith has quit IRC | 20:35 | |
*** ntpttr has quit IRC | 20:35 | |
*** dimtruck is now known as zz_dimtruck | 20:37 | |
*** ntpttr has joined #openstack-meeting | 20:37 | |
*** kaisers has quit IRC | 20:38 | |
*** salv-orlando has quit IRC | 20:39 | |
*** salv-orlando has joined #openstack-meeting | 20:39 | |
*** ntpttr has quit IRC | 20:42 | |
*** ntpttr has joined #openstack-meeting | 20:43 | |
*** jkilpatr has joined #openstack-meeting | 20:43 | |
*** hferenc_ has joined #openstack-meeting | 20:44 | |
*** rfolco has quit IRC | 20:46 | |
*** ntpttr has quit IRC | 20:48 | |
*** ntpttr has joined #openstack-meeting | 20:49 | |
*** awaugama has joined #openstack-meeting | 20:50 | |
*** pvaneck has joined #openstack-meeting | 20:52 | |
*** takashin has joined #openstack-meeting | 20:53 | |
*** mickeys has quit IRC | 20:54 | |
*** ijw has quit IRC | 20:55 | |
*** ijw has joined #openstack-meeting | 20:55 | |
*** dfisher has joined #openstack-meeting | 20:56 | |
*** thorst has quit IRC | 20:56 | |
*** jkilpatr has quit IRC | 20:57 | |
*** Sukhdev has joined #openstack-meeting | 20:58 | |
*** tongli has joined #openstack-meeting | 20:59 | |
*** ijw has quit IRC | 20:59 | |
*** ijw has joined #openstack-meeting | 21:00 | |
*** trozet has joined #openstack-meeting | 21:00 | |
mriedem | #startmeeting nova | 21:00 |
openstack | Meeting 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 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 21:00 |
*** openstack changes topic to " (Meeting topic: nova)" | 21:00 | |
openstack | The meeting name has been set to 'nova' | 21:00 |
mriedem | howdy pardners | 21:00 |
efried | o/ | 21:00 |
*** ijw has quit IRC | 21:00 | |
takashin | o/ | 21:00 |
gibi | o. | 21:00 |
melwitt | o/ | 21:00 |
edleafe | \o | 21:00 |
*** ykatabam has quit IRC | 21:01 | |
hferenc_ | \o/ | 21:01 |
* bauzas waves | 21:01 | |
*** jamesmca_ has quit IRC | 21:01 | |
mriedem | ok we can get started | 21:01 |
mriedem | #link agenda https://wiki.openstack.org/wiki/Meetings/Nova#Agenda_for_next_meeting | 21:01 |
mriedem | #topic release news | 21: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_Schedule | 21:02 |
mriedem | next big thing in the scheduler is the summit in a little more than 1 week | 21:02 |
*** Vek has joined #openstack-meeting | 21:02 | |
mriedem | *schedule | 21:02 |
mriedem | :) | 21:02 |
mriedem | next milestone is p-2 on June 8th | 21:02 |
mriedem | #info Blueprints: 70 targeted, 65 approved, 8 completed, 11 not started | 21:03 |
mriedem | #link pike-1 recap and pike-2 focus: http://lists.openstack.org/pipermail/openstack-dev/2017-April/115700.html | 21:03 |
mriedem | #help There are still some approved blueprints looking for owners: http://lists.openstack.org/pipermail/openstack-dev/2017-April/115899.html | 21:03 |
mriedem | questions about the release? | 21:03 |
efried | mriedem 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 |
mriedem | the service token one? | 21:04 |
efried | yah | 21:04 |
*** jamesdenton has quit IRC | 21:04 | |
mriedem | ok. i think some of that is already done | 21:04 |
mriedem | but ok | 21:04 |
*** ntpttr has quit IRC | 21:04 | |
mriedem | #topic bugs | 21:04 |
*** openstack changes topic to "bugs (Meeting topic: nova)" | 21:04 | |
mriedem | no critical bugs | 21:04 |
mriedem | #link check queue gate status http://status.openstack.org/elastic-recheck/index.html | 21:05 |
mriedem | gate has been ok | 21:05 |
mriedem | #link 3rd party CI status http://ci-watch.tintri.com/project?project=nova&time=7+days | 21:05 |
mriedem | i don't have any news about 3rd party ci | 21:05 |
mriedem | anything for bugs? | 21:05 |
*** ntpttr has joined #openstack-meeting | 21:05 | |
mriedem | #topic reminders | 21:05 |
*** openstack changes topic to "reminders (Meeting topic: nova)" | 21:05 | |
*** timello has quit IRC | 21:06 | |
mriedem | #link Pike Review Priorities etherpad: https://etherpad.openstack.org/p/pike-nova-priorities-tracking | 21:06 |
mriedem | continue updating ^ as your changes progress | 21:06 |
mriedem | and subteams review things | 21:06 |
mriedem | #link Forum planning: https://wiki.openstack.org/wiki/Forum/Boston2017 | 21:06 |
mriedem | #info Start creating etherpads for your sessions. There is an optional template: http://lists.openstack.org/pipermail/openstack-dev/2017-April/115972.html | 21:06 |
mriedem | the 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 IRC | 21:07 | |
mriedem | i saw in the ML today that there are going to be some reservable rooms, | 21:07 |
mriedem | but i don't know if we have space in the schedule for anything that requires that | 21:07 |
efried | #link https://ethercalc.openstack.org/Boston_Forum_Hacking_Rooms | 21:07 |
mriedem | or any topics that aren't already covered in forum sessions | 21:08 |
mriedem | yeah, | 21:08 |
mriedem | personally i've found i don't have much in the way of free time given the sessions i'm already going to | 21:08 |
*** yangyapeng has joined #openstack-meeting | 21:08 | |
mriedem | if anyone can think of a major nova issue we need to discuss that isn't already covered in a session let me know | 21:09 |
mriedem | and we can see if there is a slot we need | 21:09 |
mriedem | #info Forum sessions: https://www.openstack.org/summit/boston-2017/summit-schedule/global-search?t=forum | 21:09 |
mriedem | anything about the forum? | 21:09 |
mriedem | #topic Stable branch status | 21:09 |
*** openstack changes topic to "Stable branch status (Meeting topic: nova)" | 21:09 | |
mriedem | stable/ocata: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/ocata,n,z | 21:09 |
mriedem | stable/newton: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/newton,n,z | 21:09 |
mriedem | we're working some fixes through those and then i'll be looking to do a patch release next week | 21:10 |
mriedem | i also need to check that for novaclient on stable | 21:10 |
mriedem | i have requested a 1.4.1 os-vif release for ocata this week | 21:10 |
*** ntpttr has quit IRC | 21:10 | |
mriedem | not merged yet | 21:10 |
mriedem | #topic subteam highlights | 21:10 |
*** openstack changes topic to "subteam highlights (Meeting topic: nova)" | 21:10 | |
mriedem | i'm filling in for cells v2 | 21:10 |
mriedem | major review focus is on two things | 21:11 |
mriedem | 1. quotas https://review.openstack.org/#/c/446239/ | 21:11 |
mriedem | 2. multicell https://review.openstack.org/#/c/458634/ | 21:11 |
mriedem | a good chunk of the latter has merged | 21:11 |
mriedem | that's about it | 21:11 |
*** ntpttr has joined #openstack-meeting | 21:11 | |
mriedem | edleafe: scheduler? | 21:11 |
edleafe | Short meeting this week, as nothing contentious was under discussion. | 21:12 |
edleafe | We got an update on the status of various placement specs and patches, and things seem to be moving along well. | 21:12 |
edleafe | cdent wished for additional help harassing jaypipes during his upcoming talk in Boston. | 21:12 |
edleafe | That's it! | 21:12 |
mriedem | talk(s) | 21:12 |
mriedem | there are multiple opportunities to ruin his day | 21:12 |
edleafe | I'm counting you to help with that, mriedem | 21:12 |
*** dprince has quit IRC | 21:12 | |
mriedem | i don't imagine tdurakov is around for live migration updates | 21:12 |
mriedem | there is a live migratoin related bp that's looking for an owner | 21:13 |
mriedem | and another that's looking for someone to take over the patches | 21:13 |
mriedem | https://blueprints.launchpad.net/nova/+spec/live-migration-force-after-timeout | 21:13 |
mriedem | https://blueprints.launchpad.net/nova/+spec/live-migration-per-instance-timeout | 21:13 |
mriedem | api meeting highlights | 21:13 |
mriedem | i was there but can't really remember | 21:14 |
mriedem | :/ | 21:14 |
mriedem | we talked about something for an inordinate amount of time | 21:14 |
mriedem | on the upside, microversions 2.43, 2.44 and 2.45 are merged now | 21:14 |
mriedem | gibi: notifications meeting highlights? | 21:15 |
*** yangyapeng has quit IRC | 21:15 | |
gibi | It was a sort meeting this week | 21:15 |
gibi | Focus is on two things in the subteam | 21:15 |
gibi | 1) https://review.openstack.org/#/q/status:open+topic:bp/additional-notification-fields-for-searchlight | 21:15 |
gibi | 2) instance.volume_attach, the patch series starts here: https://review.openstack.org/#/c/401992/ | 21:15 |
gibi | that is all | 21:15 |
mriedem | gibi: köszönöm | 21:15 |
mriedem | yeah? | 21:16 |
gibi | szivesen | 21:16 |
gibi | :) | 21:16 |
mriedem | efried: powervm? | 21:16 |
efried | Great 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 IRC | 21:16 | |
efried | That's it from me, unless any questions/concerns. | 21:16 |
mriedem | ok | 21:16 |
mriedem | cool | 21:16 |
mriedem | for nova/cinder this week, | 21:17 |
mriedem | Review focus is on the new detach flow: https://review.openstack.org/#/c/456896/ | 21:17 |
*** msimonin has joined #openstack-meeting | 21:17 | |
mriedem | i've got a series up through swap volume, needs some tweaking, | 21:17 |
*** ntpttr has joined #openstack-meeting | 21:17 | |
mriedem | others have some patches up for other operations dealing with detach, like instance delete | 21:17 |
*** iyamahat has quit IRC | 21:18 | |
mriedem | and i think someone (ildikov?) is going to work on resurrecting the attach patch with the new flow that makes everything go | 21:18 |
*** jamesmca_ has joined #openstack-meeting | 21:18 | |
mriedem | #topic stuck reviews | 21:18 |
*** openstack changes topic to "stuck reviews (Meeting topic: nova)" | 21:18 | |
mriedem | there was nothing on the agenda, | 21:18 |
mriedem | anyone have anything to bring up here? | 21:18 |
mriedem | #topic open discussion | 21:19 |
*** openstack changes topic to "open discussion (Meeting topic: nova)" | 21:19 | |
mriedem | Special scenario/filter tests: http://lists.openstack.org/pipermail/openstack-dev/2017-April/115800.html (hferenc) | 21:19 |
mriedem | gibi: coworker of yours? | 21:19 |
mriedem | hferenc_: ^? | 21:19 |
gibi | mriedem: yes | 21:19 |
hferenc_ | yes | 21:19 |
hferenc_ | thx | 21: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-meeting | 21:19 | |
*** zz_dimtruck is now known as dimtruck | 21: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-meeting | 21:20 | |
mriedem | hferenc_: so why can't we test this with in-tree functional tests? | 21:20 |
mriedem | using fixtures | 21:20 |
bauzas | wouldn't it be possible to use functional tests in-tree ? | 21:20 |
bauzas | meh | 21:20 |
bauzas | jinx | 21:20 |
Vek | bauzas: great minds think alike, right? :) | 21:20 |
bauzas | :p | 21:21 |
mriedem | https://review.openstack.org/#/c/315786/ is something that you need devstack for https://review.openstack.org/#/c/315786/ | 21:21 |
mriedem | oops | 21:21 |
hferenc_ | It would be ok these with functional tests - i'm also working on that | 21:21 |
mriedem | i think the scheduler filters could be tested in tree | 21:21 |
mriedem | https://review.openstack.org/#/c/315786/ couldn't be | 21:21 |
bauzas | sure thing, we already have some | 21:21 |
hferenc_ | but functional tests cannot be run against deployments | 21:21 |
*** thorst has joined #openstack-meeting | 21:21 | |
mriedem | hferenc_: it depends on what you need to test | 21:22 |
*** tongli has quit IRC | 21:22 | |
mriedem | if 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 fine | 21:22 |
mriedem | if you're testing actual hypervisor features, then yes you need an openstack deployment | 21:22 |
*** ntpttr has quit IRC | 21:22 | |
mriedem | we have talked in the past about having a dsvm-integration suite of tests in-tree that relies on a backing devstack installation | 21:22 |
*** jamesmca_ has quit IRC | 21:22 | |
mriedem | for testing things like libvirt | 21:23 |
mriedem | tempest is really about testing the apis | 21:23 |
mriedem | so https://review.openstack.org/#/c/315786/ doesn't really make sense in a tempest plugin imo | 21:23 |
*** ntpttr has joined #openstack-meeting | 21:23 | |
mriedem | i 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 evacuate | 21:23 |
*** iceyao has quit IRC | 21:24 | |
mriedem | i guess your watchdog test goes through the api b/c of the flavor setup | 21:24 |
gibi | so this dsvm-integration suite would spin a devstack but it would run some functional test instead of tempest | 21:25 |
mriedem | so that could probably actually be a tempest plugin test | 21:25 |
mriedem | gibi: yes | 21:25 |
*** thorst has quit IRC | 21:25 | |
mriedem | gibi: i think of it like the functional tests in novaclient | 21:26 |
gibi | is there any example for that in other modules we can copy? | 21:26 |
mriedem | those rely on a devstack | 21:26 |
gibi | ohh | 21:26 |
mriedem | and they run novaclient CLIs against that devstack | 21:26 |
mriedem | so it's not tempest | 21:26 |
mriedem | but it's not a fake env either | 21:26 |
gibi | sounds interesting | 21:26 |
mriedem | i think we can test scheduler filters using functional tests in tree with fixtures, | 21:26 |
mriedem | and things like this watchdog action test could be done via a tempest plugin, or in-tree integration tests (like novaclient), | 21:27 |
gibi | for the placement test, we have some requirement to prove the tenant separation works against a deployment (like user acceptance tests) | 21:27 |
mriedem | like we'd probably have a dsvm-integration-libvirt, dsvm-integration-ironic, something like that | 21:27 |
*** julim has quit IRC | 21:27 | |
gibi | so we made those filter tests in tempest to be able to used against a deployment | 21:28 |
gibi | and we would like to share it :) | 21:28 |
mriedem | gibi: it's a very narrow and specific deployment is the problem | 21:28 |
*** ntpttr has quit IRC | 21:28 | |
mriedem | you can get the same thing using the in-tree functional tests | 21:28 |
mriedem | which run actual services and populate the database | 21:28 |
mriedem | they just don't use real cinder/neutron/virt driver, but you don't need those for scheduler placement tests | 21:29 |
*** msimonin1 has joined #openstack-meeting | 21:29 | |
mriedem | for example https://github.com/openstack/nova/blob/master/nova/tests/functional/regressions/test_bug_1671648.py | 21:29 |
gibi | sure for the functional validation the current functional test env is ok | 21:29 |
*** ntpttr has joined #openstack-meeting | 21:29 | |
gibi | but for user acceptance it isn't | 21:30 |
mriedem | ^ tests that if we fail to build on a compute, we properly retry on another compute | 21:30 |
gibi | but I feel we wont solve the user acceptance test problem in nova :) | 21:30 |
mriedem | what i'm hearing is you guys have an internal business process dictating how you do your testing | 21:30 |
mriedem | which, whatever, that's fine | 21:30 |
mriedem | i 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 test | 21:31 |
mriedem | when you can do it in-tree to test the same thing | 21:31 |
mriedem | if your job could reconfigure itself on the fly so it can test multiple scenarios, that's a different story | 21:32 |
mriedem | that's what our live migration job does | 21:32 |
*** zigo has joined #openstack-meeting | 21:32 | |
mriedem | https://github.com/openstack/nova/blob/master/nova/tests/live_migration/hooks/run_tests.sh | 21:32 |
gibi | most probably we want to much as a first step :) | 21:32 |
gibi | I think we can look into the dsvm-integration thing for the watchdog test | 21:32 |
mriedem | so maybe we take this to the mailing list, i can dump some comments there | 21:33 |
gibi | mriedem: sure | 21:33 |
mriedem | i'm not sure if there is anything you really need from me here, | 21:33 |
*** msimonin has quit IRC | 21:33 | |
mriedem | you guys have a requirement and you've delivered on it for your corporate overlords | 21:33 |
gibi | thanks for the feedback | 21:33 |
mriedem | in general i'm always happy with more testing, so +++ there | 21:33 |
mriedem | ok, anything else for open discussion? | 21:33 |
*** ntpttr has quit IRC | 21:34 | |
hferenc_ | mriedem: thank you | 21:34 |
mriedem | yw | 21:34 |
mriedem | alright let's wrap it up, thanks everyone | 21:34 |
mriedem | #endmeeting | 21:34 |
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings" | 21:34 | |
openstack | Meeting ended Thu Apr 27 21:34:30 2017 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 21:34 |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-04-27-21.00.html | 21:34 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-04-27-21.00.txt | 21:34 |
openstack | Log: http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-04-27-21.00.log.html | 21:34 |
*** slaweq has joined #openstack-meeting | 21:34 | |
*** dfisher has left #openstack-meeting | 21:35 | |
*** hichihara has joined #openstack-meeting | 21:35 | |
*** pradk has quit IRC | 21:35 | |
*** takashin has left #openstack-meeting | 21:35 | |
*** Vek has left #openstack-meeting | 21:35 | |
*** ntpttr has joined #openstack-meeting | 21:35 | |
*** yamahata_ has joined #openstack-meeting | 21:37 | |
*** hferenc_ has quit IRC | 21:40 | |
*** bobh has quit IRC | 21:42 | |
*** ntpttr has quit IRC | 21:42 | |
*** ntpttr has joined #openstack-meeting | 21:43 | |
*** dewanee_ has quit IRC | 21:43 | |
*** iceyao has joined #openstack-meeting | 21:47 | |
*** ntpttr has quit IRC | 21:47 | |
*** jaugustine has quit IRC | 21:49 | |
*** ntpttr has joined #openstack-meeting | 21:49 | |
*** salv-orl_ has joined #openstack-meeting | 21:50 | |
*** kbyrne has quit IRC | 21:50 | |
*** Nakato has quit IRC | 21:52 | |
*** iceyao has quit IRC | 21:52 | |
*** salv-orlando has quit IRC | 21:52 | |
*** Nakato has joined #openstack-meeting | 21:53 | |
*** designbybeck has quit IRC | 21:54 | |
*** kbyrne has joined #openstack-meeting | 21:54 | |
*** mickeys has joined #openstack-meeting | 21:56 | |
*** ijw has joined #openstack-meeting | 21:56 | |
*** yushiro has joined #openstack-meeting | 21:56 | |
*** ijw has quit IRC | 21:56 | |
*** ijw has joined #openstack-meeting | 21:56 | |
*** trevormc has joined #openstack-meeting | 21:58 | |
*** mlavalle has joined #openstack-meeting | 21:59 | |
*** ntpttr has quit IRC | 21:59 | |
*** maeca1 has joined #openstack-meeting | 21:59 | |
*** ihrachys has joined #openstack-meeting | 22:00 | |
*** boden has joined #openstack-meeting | 22:00 | |
*** annegentle has quit IRC | 22:00 | |
*** annegentle has joined #openstack-meeting | 22:01 | |
*** salv-orl_ has quit IRC | 22:01 | |
yushiro | Hi, good morning(from Tokyo timezone) | 22:01 |
kevinbenton | hello | 22:01 |
slaweq | hi | 22:01 |
*** Apoorva_ has joined #openstack-meeting | 22:01 | |
hichihara | hi | 22:01 |
mlavalle | o/ | 22:01 |
*** ntpttr has joined #openstack-meeting | 22:01 | |
ihrachys | o/ | 22:01 |
kevinbenton | armax, ihrachys: ping | 22:02 |
*** mickeys has quit IRC | 22:02 | |
*** maeca1 has quit IRC | 22:02 | |
trevormc | o/ | 22:03 |
kevinbenton | #startmeeting neutron_drivers | 22:03 |
openstack | Meeting 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 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 22:03 |
*** openstack changes topic to " (Meeting topic: neutron_drivers)" | 22:03 | |
openstack | The meeting name has been set to 'neutron_drivers' | 22:03 |
*** Apoorva has quit IRC | 22:04 | |
*** Sukhdev_ has joined #openstack-meeting | 22:05 | |
kevinbenton | let's go over some stuff that has been approved but is sitting in spec phase | 22:05 |
kevinbenton | #link https://review.openstack.org/#/q/project:openstack/neutron-specs+is:open | 22:05 |
*** annegentle has quit IRC | 22:06 | |
kevinbenton | #link https://review.openstack.org/#/c/396297/ | 22:06 |
*** ntpttr has quit IRC | 22:06 | |
kevinbenton | rfe-approved for this one | 22:06 |
kevinbenton | but ajo has changed focus IIRC | 22:06 |
mlavalle | I have been following that one | 22:07 |
ihrachys | yes | 22:07 |
*** VW has quit IRC | 22:07 | |
*** ntpttr has joined #openstack-meeting | 22:07 | |
kevinbenton | i think we need a blueprint for this one to track priority | 22:07 |
mlavalle | In fact, I am listed in that spec to implement part of it | 22:07 |
slaweq | I think that ralonsoh is now on it (but You should ask him) | 22:07 |
kevinbenton | mlavalle: can you file a quick blueprint for it that links to the RFE and the spec? | 22:08 |
mlavalle | kevinbenton: yes I will | 22:08 |
mlavalle | Just to let you know, I am attending the QoS meeting regularly | 22:08 |
kevinbenton | ok and i see you're reviewing the spec so it's getting attention | 22:09 |
kevinbenton | let's move onto the next one | 22:09 |
mlavalle | trying to fill the void left by ajo and give the a core that follows the regularly | 22:09 |
mlavalle | them and them ^^^^ | 22:09 |
kevinbenton | mlavalle: i can help with reviews for the code as well when it comes time for the implementation | 22:09 |
mlavalle | cool! | 22:09 |
kevinbenton | #link https://review.openstack.org/#/c/333993/ | 22:09 |
ihrachys | I am reviewing that one | 22:10 |
ihrachys | I think there are several outstanding issues around API uris | 22:10 |
ihrachys | it made a long way | 22:10 |
ihrachys | and I think we are close to getting it in | 22:10 |
kevinbenton | ok, there is one other issue that Igor had reached out to me about | 22:10 |
ihrachys | at which point kevinbenton will probably work with folks to get them +2s in the repo | 22:10 |
kevinbenton | the repo | 22:11 |
kevinbenton | did they get it figured out if the old code was just going to be deleted? | 22:11 |
ihrachys | deleted | 22:11 |
ihrachys | minus maybe some scaffolding | 22:11 |
kevinbenton | ok | 22:11 |
kevinbenton | ihrachys: can you file a shim blueprint for that one as well? | 22:11 |
ihrachys | will do | 22:12 |
*** yangyapeng has joined #openstack-meeting | 22:12 | |
*** ijw has quit IRC | 22:12 | |
*** cburgess has quit IRC | 22:12 | |
kevinbenton | I'll defer https://review.openstack.org/#/c/456394/ until we are discussing rfes | 22:12 |
*** ijw has joined #openstack-meeting | 22:13 | |
*** erlon has quit IRC | 22:13 | |
*** abramley has quit IRC | 22:13 | |
kevinbenton | #link https://review.openstack.org/#/c/452677/ | 22:13 |
*** ianw has quit IRC | 22:13 | |
kevinbenton | i need to review that one | 22:13 |
kevinbenton | nothing the team needs to discuss there | 22:14 |
*** raj_sing- has joined #openstack-meeting | 22:14 | |
*** ntpttr has quit IRC | 22:14 | |
kevinbenton | #link https://review.openstack.org/#/c/203509/ | 22:14 |
*** jungleboyj has quit IRC | 22:14 | |
*** mrmartin has quit IRC | 22:14 | |
*** peterstac has quit IRC | 22:14 | |
*** harlowja has quit IRC | 22:14 | |
*** raj_singh has quit IRC | 22:14 | |
*** tnarg has quit IRC | 22:14 | |
kevinbenton | i think we're short an approver on this one | 22:15 |
kevinbenton | it's currently assigned to Rossella | 22:15 |
yushiro | kevinbenton, yes. | 22:15 |
*** ijw has quit IRC | 22:15 | |
*** ijw has joined #openstack-meeting | 22:15 | |
yushiro | kevinbenton, she just asked me 1 question about a result of PTG discussion. | 22:15 |
*** mrmartin has joined #openstack-meeting | 22:15 | |
*** ntpttr has joined #openstack-meeting | 22:15 | |
yushiro | I just replied to her earlier this week. | 22:16 |
kevinbenton | yushiro: ok, have we finally reached a point where we have general agreement on the API? | 22:16 |
*** cburgess has joined #openstack-meeting | 22:16 | |
yushiro | kevinbenton, sure. Regarding an API design, rossella agreed with our one. | 22:17 |
*** nikhil has quit IRC | 22:17 | |
*** blair has quit IRC | 22:17 | |
*** xgerman has quit IRC | 22:17 | |
*** sweston has quit IRC | 22:17 | |
*** ALUVial has quit IRC | 22:17 | |
*** SWDevAngel__ has quit IRC | 22:17 | |
*** tdurakov has quit IRC | 22:17 | |
*** tlbr has quit IRC | 22:17 | |
*** hazmat has quit IRC | 22:17 | |
ihrachys | I 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 IRC | 22:17 | |
yushiro | ihrachys, sure. In my understanding, QoS has implemented a validation logic. | 22:17 |
*** ianw has joined #openstack-meeting | 22:18 | |
ihrachys | I see yushiro refers to qos patch, but that's not directly applicable to the proposed feature | 22:18 |
*** izaakk has quit IRC | 22:18 | |
*** soren has quit IRC | 22:18 | |
ihrachys | that would require quite some generalization to make it applicable | 22:18 |
yushiro | ihrachys, aha. OK. I understand that is not generic approach now. https://github.com/openstack/neutron/blob/master/neutron/services/qos/qos_plugin.py#L48-L55 | 22:19 |
ihrachys | so 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 |
kevinbenton | ihrachys: i have a qos question | 22:19 |
ihrachys | I think armax had strong feelings about it in the past. | 22:19 |
kevinbenton | ihrachys: how do you know which driver will be required to support a policy applied to a network? | 22:19 |
*** tlbr has joined #openstack-meeting | 22:20 | |
*** ntpttr has quit IRC | 22:20 | |
*** heyongli has quit IRC | 22:20 | |
slaweq | kevinbenton: in qos validation it checks if each port in network can support rules from such policy | 22:20 |
ihrachys | I don't remember details. maybe slaweq has an answer? | 22:20 |
*** trevormc has quit IRC | 22:20 | |
yushiro | ihrachys, 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-meeting | 22:21 | |
ihrachys | slaweq, ...unless ports have overridden policies I believe | 22:21 |
*** heyongli has joined #openstack-meeting | 22:21 | |
slaweq | ihrachys: yes | 22:21 |
*** ALUVial has joined #openstack-meeting | 22:21 | |
*** sweston has joined #openstack-meeting | 22:21 | |
*** ntpttr has joined #openstack-meeting | 22:21 | |
kevinbenton | but what happens if a port is added later? | 22:22 |
ihrachys | yushiro, 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-meeting | 22:22 | |
kevinbenton | do you cause a binding failure? | 22:22 |
slaweq | kevinbenton: it also validate on port create event | 22:22 |
kevinbenton | slaweq: ok | 22:22 |
slaweq | so it will fail if driver can't support QoS rules | 22:23 |
kevinbenton | makes sense | 22:23 |
ihrachys | and when you bind. the idea is not getting into that db state in the first place. | 22:23 |
kevinbenton | so we will need to do the same here | 22:23 |
kevinbenton | since port can be associated with sg group before it is associated with a driver | 22:23 |
ihrachys | right. and I guess there could be some space for code reuse, just not as-is, would need some refactoring. | 22:24 |
yushiro | ihrachys, currently, I don't have generic solution. Is it necessary during Pike cycle? | 22:24 |
ihrachys | I 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 |
kevinbenton | i'm okay if we don't have a generic solution and just validate similar to qos | 22:24 |
ihrachys | + | 22:25 |
kevinbenton | having two different use cases can make it easier to visualize a generic framework later | 22:25 |
mlavalle | yep | 22:25 |
yushiro | kevinbenton, aha, Sure. So, in this cycle, Logging API will refer QoS solution. | 22:25 |
*** SWDevAngel__ has joined #openstack-meeting | 22:25 | |
kevinbenton | right | 22:25 |
ihrachys | yushiro, yeah. reuse code where possible. | 22:25 |
*** ansmith has joined #openstack-meeting | 22:25 | |
kevinbenton | yushiro: can you update the spec summarizing our commentary here? | 22:26 |
*** baoli has quit IRC | 22:26 | |
*** nikhil has joined #openstack-meeting | 22:26 | |
yushiro | kevinbenton, Of course. After that, can we approve one? | 22:26 |
kevinbenton | yushiro: once rossella is happy with it, I can take over as approver for helping review code and getting other volunteers for components | 22:26 |
*** soren has joined #openstack-meeting | 22:26 | |
*** tdurakov has joined #openstack-meeting | 22:26 | |
kevinbenton | reviews are much easier for me once we've all agreed on the API :) | 22:26 |
yushiro | kevinbenton, I understood. I'll tell her ultra super ASAP. | 22:27 |
yushiro | :) | 22:27 |
kevinbenton | yushiro: thanks :) | 22:27 |
*** ijw has quit IRC | 22:27 | |
kevinbenton | ok | 22:27 |
kevinbenton | #link https://review.openstack.org/#/c/374506/ | 22:27 |
*** awaugama has quit IRC | 22:27 | |
kevinbenton | this looks like rfe isn't approved yet | 22:27 |
*** rbak has quit IRC | 22:27 | |
kevinbenton | #link https://bugs.launchpad.net/neutron/+bug/1596611 | 22:28 |
openstack | Launchpad 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-meeting | 22:28 | |
*** rbak has joined #openstack-meeting | 22:28 | |
*** felipemonteiro_ has quit IRC | 22:28 | |
kevinbenton | ihrachys: are you familiar with where this one is at? | 22:28 |
*** ntpttr has quit IRC | 22:28 | |
*** trevormc has joined #openstack-meeting | 22:29 | |
ihrachys | I haven't reviewed the spec | 22:29 |
ihrachys | I know what's that about | 22:29 |
kevinbenton | ok | 22:29 |
ihrachys | the complexity of this thing would be enormous I suspect | 22:29 |
*** ntpttr has joined #openstack-meeting | 22:29 | |
ihrachys | gotta look at proposal | 22:29 |
kevinbenton | i'll put back into triaged | 22:30 |
kevinbenton | so we can review with other RFE's | 22:30 |
ihrachys | I will have a look next week | 22:30 |
kevinbenton | #link https://review.openstack.org/#/c/452032/ | 22:30 |
kevinbenton | this is vpnaas assessment | 22:30 |
kevinbenton | I'll work with armax on reviewing this one | 22:30 |
kevinbenton | #link https://review.openstack.org/#/c/454788/ | 22:30 |
kevinbenton | this says don't review | 22:30 |
kevinbenton | so don't look at it | 22:30 |
*** blair has joined #openstack-meeting | 22:31 | |
mlavalle | LOL | 22:31 |
kevinbenton | #link https://review.openstack.org/#/c/445762/ | 22:31 |
ihrachys | oh now my eyes, they are burning, why have you sent it my way! | 22:31 |
kevinbenton | this still needs rfe review #link https://bugs.launchpad.net/neutron/+bug/1505627 | 22:31 |
openstack | Launchpad bug 1505627 in neutron "[RFE] QoS Explicit Congestion Notification (ECN) Support" [Wishlist,Triaged] - Assigned to Reedip (reedip-banerjee) | 22:31 |
kevinbenton | ah | 22:31 |
kevinbenton | #link https://review.openstack.org/#/c/320439/ | 22:31 |
kevinbenton | I think this needed a new approver as well | 22:32 |
kevinbenton | #link https://blueprints.launchpad.net/neutron/+spec/l2-api-extensions | 22:32 |
*** iceyao has joined #openstack-meeting | 22:32 | |
kevinbenton | ihrachys: i had suggested the author reach out to Jakub, do you know if he is available? | 22:32 |
*** ijw has quit IRC | 22:32 | |
*** ijw has joined #openstack-meeting | 22:33 | |
ihrachys | kevinbenton, for doing that work? I really doubt it. | 22:33 |
kevinbenton | ihrachys: being approver | 22:33 |
kevinbenton | not implementing | 22:33 |
ihrachys | yeah, but even then, I know that Kuba will take care about e.g. multiple port bindings, also some ovsfw bits... | 22:33 |
ihrachys | I don't think he is avail for that | 22:33 |
kevinbenton | ok | 22:33 |
ihrachys | you can try to reach out, but I would suggest we don't have resources to make it happen. | 22:34 |
*** ntpttr has quit IRC | 22:34 | |
kevinbenton | ack | 22:34 |
kevinbenton | i'll remove ajo from the approver field | 22:34 |
kevinbenton | so it's clear | 22:34 |
kevinbenton | #link https://review.openstack.org/#/c/445771/ | 22:35 |
kevinbenton | there was an RFE for this i recall | 22:35 |
kevinbenton | but it's not linked here | 22:35 |
*** ntpttr has joined #openstack-meeting | 22:35 | |
*** abramley has joined #openstack-meeting | 22:36 | |
kevinbenton | i will -1 and ask to link to rfe | 22:36 |
*** ijw has quit IRC | 22:36 | |
*** tnarg has joined #openstack-meeting | 22:37 | |
*** iceyao has quit IRC | 22:37 | |
mlavalle | yeah, that's the easiest thing to do | 22:37 |
kevinbenton | #link https://review.openstack.org/#/c/236840/ | 22:37 |
*** salv-orlando has joined #openstack-meeting | 22:37 | |
*** peterstac has joined #openstack-meeting | 22:37 | |
ihrachys | that smells orchestration | 22:37 |
*** egallen has quit IRC | 22:38 | |
kevinbenton | #link https://bugs.launchpad.net/neutron/+bug/1657084 | 22:38 |
openstack | Launchpad bug 1657084 in neutron "[RFE]Add time period attribute to firewall_rule" [Wishlist,Incomplete] | 22:38 |
ihrachys | and it seems like the bug is Incomplete | 22:38 |
kevinbenton | rfe sounds like similar conclusion | 22:38 |
ihrachys | which makes sense | 22:38 |
ihrachys | so be it | 22:38 |
*** kaisers has joined #openstack-meeting | 22:38 | |
ihrachys | let's just -2 | 22:38 |
kevinbenton | i'll -2 pending RFE | 22:38 |
ihrachys | + | 22:38 |
*** ijw has joined #openstack-meeting | 22:39 | |
*** ijw has quit IRC | 22:39 | |
kevinbenton | #link https://review.openstack.org/#/c/446111/ | 22:39 |
*** ijw has joined #openstack-meeting | 22:39 | |
kevinbenton | #link https://bugs.launchpad.net/neutron/+bug/1673210 | 22:39 |
openstack | Launchpad bug 1673210 in neutron "Enable MySQL Cluster Support" [Wishlist,Confirmed] - Assigned to Octave Orgeron (octave-orgeron) | 22:39 |
mlavalle | I think he even has a patch with the implementation | 22:40 |
kevinbenton | yes, i remember reviewing it | 22:40 |
kevinbenton | I don't think there is too much to discuss as a drivers team for this one | 22:40 |
*** ntpttr has quit IRC | 22:40 | |
mlavalle | https://review.openstack.org/#/c/446136/ | 22:40 |
kevinbenton | as RFE indicates it's a few minor fixes | 22:40 |
ihrachys | I read the spec real quick. does it suggest we reduce the size of .e.g names nad description for all resources?.. | 22:40 |
kevinbenton | oh | 22:40 |
ihrachys | line 82+ | 22:41 |
*** Patifa has quit IRC | 22:41 | |
*** ntpttr has joined #openstack-meeting | 22:41 | |
kevinbenton | yeah | 22:42 |
kevinbenton | that will need some explanation | 22:42 |
mlavalle | it seems like that to me | 22:42 |
kevinbenton | sounds like we can lose data | 22:42 |
ihrachys | and break api-ref conformity | 22:42 |
*** Patifa has joined #openstack-meeting | 22:42 | |
kevinbenton | the other problematic thing is in the patch here: https://review.openstack.org/#/c/446136/7/neutron/db/api.py@237 | 22:42 |
kevinbenton | apparently no savepoint support | 22:42 |
*** kaisers has quit IRC | 22:42 | |
mlavalle | it would be interesting to see how other projects are reacting to this | 22:43 |
mlavalle | he has similar patches with Nova, Cinder, etc | 22: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 |
kevinbenton | ok, let's let it sit. i will also continue to ask questions on the patch | 22:44 |
kevinbenton | #link https://review.openstack.org/#/c/362008/ | 22:45 |
kevinbenton | #link https://bugs.launchpad.net/neutron/+bug/1561824 | 22:45 |
openstack | Launchpad bug 1561824 in neutron "[RFE] Enhance BGP Dynamic Routing driver with Quagga suppport" [Wishlist,Triaged] - Assigned to Steve Ruan (ruansx) | 22:45 |
kevinbenton | this is rfe-approved | 22:45 |
*** ntpttr has quit IRC | 22:46 | |
kevinbenton | but hasn't be reproposed to pike | 22:46 |
ihrachys | I see lately there is not much work happening on the repo so is it even realistic? | 22:46 |
kevinbenton | I think i will just abandon and ask to repropose it for pike | 22:46 |
kevinbenton | it's from IBM | 22:47 |
mlavalle | he used to attend the L3 meeting, with tidwellr was astill around | 22:47 |
kevinbenton | so they may have been moved off | 22:47 |
mlavalle | yeah | 22:47 |
*** boden has left #openstack-meeting | 22:47 | |
*** ntpttr has joined #openstack-meeting | 22:47 | |
kevinbenton | #link https://review.openstack.org/#/c/388398/ | 22:48 |
mlavalle | that sounded like being with IBM is a stigma LOL | 22:48 |
kevinbenton | mlavalle: nah | 22:48 |
mlavalle | kevinbenton: just teasing | 22:49 |
kevinbenton | mlavalle: :) | 22:49 |
kevinbenton | #link https://bugs.launchpad.net/neutron/+bug/1633280 | 22:49 |
openstack | Launchpad bug 1633280 in neutron "[RFE]need a way to disable anti-spoofing rules and yet keep security groups" [Wishlist,Incomplete] | 22:49 |
kevinbenton | this is pending feedback on rfe | 22:49 |
kevinbenton | i'll put -2 for now | 22:49 |
mlavalle | nothing has really happened since October | 22:49 |
mlavalle | thats more than 6 months ago | 22:50 |
kevinbenton | yeah | 22:50 |
kevinbenton | #link https://review.openstack.org/#/c/391654/ | 22:50 |
ihrachys | that one also didn't have much traction to say the least. | 22:50 |
kevinbenton | #link https://bugs.launchpad.net/neutron/+bug/1592028 | 22:50 |
openstack | Launchpad bug 1592028 in neutron "[RFE] Support security-group-rule creation with address-groups" [Wishlist,Triaged] - Assigned to Roey Chen (roeyc) | 22:50 |
kevinbenton | i'll -2 pending RFE approval | 22:50 |
mlavalle | pretty much the same story, well one month younger | 22:51 |
kevinbenton | #link https://review.openstack.org/#/c/392023/ | 22:51 |
kevinbenton | #link https://bugs.launchpad.net/neutron/+bug/1505631 | 22:51 |
openstack | Launchpad bug 1505631 in neutron "[RFE] QoS VLAN 802.1p Support" [Wishlist,Confirmed] - Assigned to Reedip (reedip-banerjee) | 22:51 |
kevinbenton | so this is rfe-postponed | 22:52 |
*** ntpttr has quit IRC | 22:52 | |
kevinbenton | mlavalle: do you know if anyone is trying to work on this for qos? | 22:52 |
ihrachys | do we have some seasoned qos contributors like slaweq interested in following it through? | 22:53 |
mlavalle | kevinbenton: I don't think it has been mentioned lately in the meetings | 22:53 |
slaweq | no, AFAIR it wasn't discussed on last few QoS meetings | 22:53 |
*** jkilpatr has joined #openstack-meeting | 22:53 | |
*** jkilpatr has quit IRC | 22:53 | |
*** ntpttr has joined #openstack-meeting | 22:53 | |
*** jkilpatr has joined #openstack-meeting | 22:54 | |
kevinbenton | ok, i'll put a -2 pending rfe revival | 22:54 |
slaweq | and if I'm right it was not clear what reedip excactly wants there | 22:54 |
mlavalle | ralonsoh is very thorough following up with the rfe's, bugs and patches | 22:54 |
ihrachys | there are already dscp marks for prioritization, it doesn't cover all infrastructures, but good enough for some. | 22:54 |
mlavalle | so if he hasn't mentioned it in the meetings, it's not in any radar screen | 22:54 |
kevinbenton | ok | 22:54 |
ihrachys | + for letting it die in LP | 22:54 |
kevinbenton | that was everything in the open state on neutron-specs | 22:55 |
kevinbenton | does anyone have anything to bring up in the last 5 mins | 22:55 |
kevinbenton | #topic open discussion | 22:55 |
*** openstack changes topic to "open discussion (Meeting topic: neutron_drivers)" | 22:55 | |
ihrachys | I think slaweq had something to raise, and I feel like it's worth giving him the chance | 22:55 |
kevinbenton | slaweq: go ahead | 22:55 |
slaweq | thx | 22:55 |
slaweq | I wanted to talk about https://bugs.launchpad.net/neutron/+bug/1686035 | 22:55 |
openstack | Launchpad bug 1686035 in neutron "[RFE] More detailed reporting of available QoS rules" [Medium,Triaged] - Assigned to Slawek Kaplonski (slaweq) | 22:55 |
slaweq | but I don't know if we will have time now | 22:55 |
ihrachys | on first sight, it looks like now we are in the business of API discovery | 22:56 |
slaweq | basically I think that we should change way how available rule types are "calculated" | 22:56 |
kevinbenton | slaweq: makes sense | 22:56 |
kevinbenton | slaweq: but is this operator only? | 22:56 |
ihrachys | slaweq, wouldn't making it just a concatenation of all supported rules be good enough? | 22:57 |
ihrachys | and then allowing users to hit validation? | 22:57 |
ihrachys | (more of a strawman) | 22:57 |
slaweq | ihrachys: exactly that's what I want to do | 22:57 |
kevinbenton | that sounds good | 22:57 |
kevinbenton | but if this is user facing | 22:57 |
kevinbenton | you can't show driver | 22:57 |
ihrachys | slaweq, but I see supported parameters mentioned in the desc? | 22:57 |
slaweq | now it get common subset of rules supported by all loaded drivers | 22:57 |
slaweq | but IMHO it should returns all rule types supported by at least one driver | 22:58 |
ihrachys | kevinbenton, existing api is definitely user available (assuming ops allowed that in policy, which is not an unreal situation) | 22:58 |
slaweq | later when rule/policy will be applied to port there will be validation done for this port | 22:58 |
*** ntpttr has quit IRC | 22:58 | |
ihrachys | slaweq, ok then if that's all you want, maybe remove driver notion from the description? also parameters? | 22:59 |
slaweq | so that's what I want to change in first point described there and IMO it's quite easy to do | 22:59 |
kevinbenton | ihrachys: existing api is leaking driver name to users? | 22:59 |
ihrachys | basically, same API, just different result? | 22:59 |
slaweq | but there is also second part | 22:59 |
ihrachys | kevinbenton, I don't think so. it's just a list of rule type names | 22:59 |
slaweq | and second part is to add new API call to display details of each rule type | 22:59 |
kevinbenton | slaweq: what is second part? | 22:59 |
ihrachys | slaweq, maybe split? I am ready to +2 a patch for the first part as a simple bug fix. | 22:59 |
*** ntpttr has joined #openstack-meeting | 22:59 | |
kevinbenton | +1 | 23:00 |
kevinbenton | first part is super easy | 23:00 |
slaweq | ihrachys: ok so I will propose patch for first part | 23:00 |
kevinbenton | we're out of time | 23:00 |
ihrachys | slaweq, so the 2nd part is tricky; it's api discovery, and you suggest to leak cloud infra details (drivers) | 23:00 |
slaweq | and what about second one? should I write some specs? | 23:00 |
kevinbenton | slaweq: another RFE | 23:00 |
kevinbenton | or update this one | 23:00 |
*** dimtruck is now known as zz_dimtruck | 23:00 | |
kevinbenton | for clear use case and who its visible to, etc | 23:00 |
kevinbenton | we can discuss next drivers meeting | 23:01 |
kevinbenton | thanks everyone! | 23:01 |
slaweq | kevinbenton: ok, I will update this rfe to only second part :) | 23:01 |
slaweq | thx | 23:01 |
mlavalle | o/ | 23:01 |
kevinbenton | #endmeeting | 23:01 |
*** daniel_X has joined #openstack-meeting | 23:01 | |
hichihara | Drivers: Please look at https://bugs.launchpad.net/neutron/+bug/1682775 when you have time | 23:01 |
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings" | 23:01 | |
slaweq | bye | 23:01 |
ihrachys | o/ | 23:01 |
hichihara | bye | 23:01 |
openstack | Meeting ended Thu Apr 27 23:01:13 2017 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 23:01 |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-04-27-22.03.html | 23:01 |
kevinbenton | hichihara: ack | 23:01 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-04-27-22.03.txt | 23:01 |
ihrachys | slaweq, thanks for joining | 23:01 |
openstack | Log: http://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-04-27-22.03.log.html | 23:01 |
openstack | Launchpad bug 1682775 in neutron "[RFE] Tag mechanism supports all resouces with standard attribute." [Wishlist,Triaged] - Assigned to Hirofumi Ichihara (ichihara-hirofumi) | 23:01 |
hichihara | kevinbenton: thanks :) | 23:01 |
daniel_X | wtf is going on here | 23:01 |
kevinbenton | hichihara: yeah, i'll circle back to RFE's next week | 23:01 |
mlavalle | slaweq: yeah, it's a little late for you. Thanks | 23:01 |
yushiro | thanks | 23:02 |
slaweq | no problem for me :) | 23:02 |
slaweq | thx a lot | 23:02 |
*** mlavalle has left #openstack-meeting | 23:02 | |
*** diablo_rojo has joined #openstack-meeting | 23:03 | |
*** rbak has quit IRC | 23:04 | |
*** daniel_X has left #openstack-meeting | 23:04 | |
*** ntpttr has quit IRC | 23:04 | |
*** zz_dimtruck is now known as dimtruck | 23:04 | |
*** ntpttr has joined #openstack-meeting | 23:05 | |
*** Sukhdev has quit IRC | 23:06 | |
*** slaweq has quit IRC | 23:06 | |
*** salv-orlando has quit IRC | 23:08 | |
*** trozet has quit IRC | 23:08 | |
*** sdague has quit IRC | 23:08 | |
*** hichihara has quit IRC | 23:08 | |
*** askb has joined #openstack-meeting | 23:09 | |
*** lamt has quit IRC | 23:09 | |
*** ihrachys has quit IRC | 23:09 | |
*** ntpttr has quit IRC | 23:10 | |
*** ntpttr has joined #openstack-meeting | 23:11 | |
*** trevormc has quit IRC | 23:12 | |
*** Kevin_Zheng has joined #openstack-meeting | 23:13 | |
*** ntpttr has quit IRC | 23:16 | |
*** fnaval has quit IRC | 23:16 | |
*** diablo_rojo has quit IRC | 23:17 | |
*** ntpttr has joined #openstack-meeting | 23:17 | |
*** Patifa has quit IRC | 23:20 | |
*** tesseract has quit IRC | 23:20 | |
*** ijw has quit IRC | 23:21 | |
*** ntpttr has quit IRC | 23:22 | |
*** ijw has joined #openstack-meeting | 23:22 | |
*** dimtruck is now known as zz_dimtruck | 23:22 | |
*** ntpttr has joined #openstack-meeting | 23:23 | |
*** harlowja has joined #openstack-meeting | 23:23 | |
*** ijw has quit IRC | 23:26 | |
*** chyka has quit IRC | 23:26 | |
*** chyka has joined #openstack-meeting | 23:27 | |
*** liusheng has quit IRC | 23:27 | |
*** ntpttr has quit IRC | 23:27 | |
*** liusheng has joined #openstack-meeting | 23:27 | |
*** hongbin has quit IRC | 23:29 | |
*** ntpttr has joined #openstack-meeting | 23:29 | |
*** mriedem has quit IRC | 23:30 | |
*** mriedem has joined #openstack-meeting | 23:30 | |
*** liusheng has quit IRC | 23:32 | |
*** liusheng has joined #openstack-meeting | 23:32 | |
*** chyka has quit IRC | 23:33 | |
*** ntpttr has quit IRC | 23:33 | |
*** chyka has joined #openstack-meeting | 23:34 | |
*** imcsk8_ has quit IRC | 23:34 | |
*** imcsk8 has joined #openstack-meeting | 23:34 | |
*** cloud-liang has quit IRC | 23:34 | |
*** Douhet has quit IRC | 23:34 | |
*** Julien-zte has quit IRC | 23:34 | |
*** Douhet has joined #openstack-meeting | 23:35 | |
*** jamesmca_ has joined #openstack-meeting | 23:35 | |
*** ntpttr has joined #openstack-meeting | 23:36 | |
*** yangyapeng has joined #openstack-meeting | 23:37 | |
*** chyka has quit IRC | 23:38 | |
*** Apoorva_ has quit IRC | 23:38 | |
*** Apoorva has joined #openstack-meeting | 23:39 | |
*** jamesmca_ has quit IRC | 23:39 | |
*** ntpttr has quit IRC | 23:40 | |
*** markvoelker has quit IRC | 23:40 | |
*** ntpttr has joined #openstack-meeting | 23:41 | |
*** cody-somerville has joined #openstack-meeting | 23:41 | |
*** cody-somerville has quit IRC | 23:41 | |
*** cody-somerville has joined #openstack-meeting | 23:41 | |
*** yangyapeng has quit IRC | 23:42 | |
*** csomerville has quit IRC | 23:44 | |
*** ntpttr has quit IRC | 23:45 | |
*** ntpttr has joined #openstack-meeting | 23:48 | |
*** thorst has joined #openstack-meeting | 23:54 | |
*** jungleboyj has joined #openstack-meeting | 23:55 | |
*** ijw has joined #openstack-meeting | 23:56 | |
*** ntpttr has quit IRC | 23:57 | |
*** ntpttr has joined #openstack-meeting | 23:58 | |
*** mickeys has quit IRC | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!