Thursday, 2016-07-21

thinrichscourtesy ping: ekcs, aimeeu, ramineni, masahito00:00
thinrichs#startmeeting CongressTeamMeeting00:00
openstackMeeting started Thu Jul 21 00:00:34 2016 UTC and is due to finish in 60 minutes.  The chair is thinrichs. Information about MeetBot at http://wiki.debian.org/MeetBot.00:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.00:00
ekcshi all00:00
*** openstack changes topic to " (Meeting topic: CongressTeamMeeting)"00:00
openstackThe meeting name has been set to 'congressteammeeting'00:00
aimeeuhelloooo00:00
thinrichshi00:00
*** ninag has joined #openstack-meeting00:00
*** ninag has quit IRC00:01
*** zhurong has quit IRC00:01
masahitohi00:01
*** sdague has quit IRC00:02
*** Patifa has quit IRC00:02
*** david-lyle has joined #openstack-meeting00:02
*** shaohe_feng has quit IRC00:02
thinrichsAgenda for today...00:02
*** toddjohn has quit IRC00:02
*** claudiub has quit IRC00:02
*** Swami has quit IRC00:02
thinrichs1. Status updates00:02
thinrichs2. Mascots00:02
thinrichsAnything else?00:02
*** efried has quit IRC00:02
*** shaohe_feng has joined #openstack-meeting00:03
*** mtanino has quit IRC00:03
thinrichs#topic Status updates00:03
*** openstack changes topic to "Status updates (Meeting topic: CongressTeamMeeting)"00:03
thinrichsekcs: want to start the status updates?00:03
ekcssure.00:04
*** ijw has joined #openstack-meeting00:04
ekcsapi routing patch in review. will rebase today. #link https://review.openstack.org/#/c/341904/00:04
ekcslocal leader for replicated PE merged. Thanks!00:05
ekcsthreod safety review ready to merge. #link https://review.openstack.org/#/c/335721/00:05
ekcsworking on persisting pushed data. it’s not completely straight forward because schemas can change a lot from DS to DS. My plan right now is to use a single table to store all pushed data from all tables in all DS.00:07
thinrichsDoes our push driver even accept arbitrary schemas?  Last time I worked on it, it didn't00:07
ekcseach DS-table data is a row in the DB data stored as json. downside is can’t take as much advantage of differential update.00:07
ekcsthat’s all my updates.00:08
*** gyee has quit IRC00:09
ekcsit doesn’t. but new drivers can have arbitrary schema. it becomes very messy and hacky to all new tables through sqlalchemy say whenever someone wants to use a custom DSD.00:09
ekcsor changes the tables of an existing DSD.00:09
ekcss/to all new tables/to add new tables00:09
ekcshappy to hear more thoughts on it!00:09
thinrichsekcs: agreed that we should handle it all at once.  More just remembering that we need to enhance the push driver00:10
thinrichsNot sure what else we can do in terms of differential updates since the underlying DB doesn't support JSON structured data.00:10
*** karthikp_ has joined #openstack-meeting00:11
thinrichsOr…can we persist the translated version of the data, so that it's all relational?00:11
ekcsyea. initially i thought it would be great for each DS table to be a DB table. but that doesn’t seem like a great idea.00:11
thinrichsB/c then we're creating/deleting tables in the DB all the time?00:11
ekcsthat IS what i’m planning to do. persist the tranaslated version. but yea then we’re adding and deleting tables all the time. there are hacky python blackmagic ways set DB schema based dynamically on DSD classes, but not sure that’s a good idea.00:12
*** shaohe_feng has quit IRC00:12
*** aprice has joined #openstack-meeting00:12
thinrichsSo it's a sqlalchemy problem?  The DB itself has no problem creating/deleting tables.00:13
*** shaohe_feng has joined #openstack-meeting00:13
*** irenab has quit IRC00:13
ekcsmaybe.00:14
ekcsat least partly sqlalchemy problem.00:14
ekcsmostly I think.00:14
thinrichsWithout looking at SQLAlchemy, I'd have guessed we would take a prefix like 'dsd' and then every time a push datasource named P gets created we create the table 'dsd.P' in the database.00:15
ekcsbut not going through sqlalchemy loses DB compatibilty.00:15
*** sindhude has quit IRC00:15
*** JRobinson__ has quit IRC00:15
ekcsthinrichs: yea something like that.00:15
thinrichsSo SQLAlchemy has no way to create tables?00:16
ekcsthere may be. I may need to look deeper at that because it’s a different side of sqlalchemy than what we’ve been using (ORM).00:16
masahitooslo db supports creating db with ORM.00:17
masahitos/creating db/creating table/00:17
thinrichshttp://stackoverflow.com/questions/973481/dynamic-table-creation-and-orm-mapping-in-sqlalchemy00:17
ekcsdo you think it’s a good idea to dynamically extract from a DSD class the schema (including types) of the table and create DB tables?00:17
*** JRobinson__ has joined #openstack-meeting00:18
*** david-lyle has quit IRC00:18
thinrichsWe could just require the PushDrivers to declare types.  In fact, we already have some mechanism for doing that, I think.00:18
ekcsthinrichs: yea I read that thread, which seems to point people to sql soup as another layer over sqlalchemy, in order to do that.00:18
masahitoI don't think it's good idea to add dynamically table.00:18
thinrichsmasahito: why?00:19
masahitoFor upgrading.00:19
masahitooslo db manages the table schema for online schema upgrade now.00:20
thinrichsekcs: the top-rated answer on the SO message looks straightforward00:20
*** eharney has joined #openstack-meeting00:20
ekcsthinrichs: no actually that answer just tells you to structure it so you add rows not tables.00:21
masahitoI thought if we added a dynamic table oslo db couldn't manage it.00:21
*** aprice has quit IRC00:21
ekcsmasahito: hmm interesting i’ll need to look more at that. I would’ve thought we could just delete all the persisted push data on upgrades.00:22
*** shaohe_feng has quit IRC00:22
*** shaohe_feng has joined #openstack-meeting00:23
thinrichsekcs: last line says "That's it, you now have a your player table."  Seems like it's creating a new table with Python code by declaring the types of the columns and mapping it to a Python class.  We'd need to run similar code every time a datasource was instantiated.  (Not sure about the Class though).00:23
masahitoekcs: oh. I didn't have the idea. If we can do it, there is no problem.00:23
thinrichsmasahito: upgrade is an interesting case.  If we're upgrading in place, we wouldn't want to throw away all the pushed data.00:24
thinrichsWhat I don't know is whether oslo-db handles dynamic tables.00:24
thinrichsFor upgrade we should think thru that.  Those dynamically generated tables probably just wouldn't ever need to be changed (since if they did, the data would need to be transformed anyhow).00:25
thinrichsAnd the name of the table is based on an entry from a separate table in the DB.00:26
thinrichsSo as long as the migration script didn't delete them, they should be fine.00:26
thinrichsAnyway, this is an interesting topic.  I think we've got a few of the issues at least identified now.00:27
thinrichsThanks for taking this on ekcs!00:27
ekcsyus.00:29
ekcsyu.s00:29
ekcsyups00:29
*** spzala has joined #openstack-meeting00:29
*** spzala has quit IRC00:29
*** spzala_ has joined #openstack-meeting00:29
thinrichsOne last thought…I guess the downside to putting all the data into a single row is that it will be expensive to read/write.  I have no idea how expensive.00:29
thinrichsWriting happens on every push; reading happens only when restarting Congress.00:29
thinrichsUnless there's something else on this topic, aimeeu: want to give a status update?00:30
aimeeusure00:30
ekcsyup. depends on how big the table is I guess.00:30
aimeeuI'm stuck for now on the horizon plugin bug #link https://bugs.launchpad.net/congress/+bug/1602837 Spent 3 days on this and00:30
aimeeufinally hit a wall. Looked through lots of code and read lots of documentation. Earlier today I sent an email to [openstack-dev][Congress] but have not pushed a patch set yet. I'd appreciate it if you all could read the email when you have time and offer suggestions. I'm not giving up, just putting it aside for a day or two.00:30
openstackLaunchpad bug 1602837 in congress "Policy UI (Horizon): Unable to get policies list (devstack)" [High,Confirmed] - Assigned to Aimee Ukasick (aimeeu)00:30
*** lblanchard has joined #openstack-meeting00:30
aimeeuPicked up the HAHT overview and deployment guide documentation tasks.00:31
aimeeu#link https://bugs.launchpad.net/congress/+bug/160001600:31
aimeeu#link https://bugs.launchpad.net/congress/+bug/160001700:31
aimeeuAlso after I've finished the guides, I'd like to try the tempest tests, basic - #link https://bugs.launchpad.net/congress/+bug/160002100:31
aimeeuAlso trying to keep up with code reviews. I do look at the more complicated ones but don't  understand enough yet to +/- 100:31
openstackLaunchpad bug 1600016 in congress "HAHT - overview guide" [Low,New] - Assigned to Aimee Ukasick (aimeeu)00:31
openstackLaunchpad bug 1600017 in congress "HAHT - Deployment guide" [Medium,New] - Assigned to Aimee Ukasick (aimeeu)00:31
openstackLaunchpad bug 1600021 in congress "HAHT - tempest tests, basic" [Medium,New] - Assigned to Aimee Ukasick (aimeeu)00:31
*** cknight has quit IRC00:32
aimeeuThat's all for me. Feeling a bit frustrated by my lack of progress but I am learning a lot.00:32
thinrichsDoes the congress python client support keystone v3?00:32
aimeeuI thought it did00:32
aimeeuI'll double check00:33
*** shaohe_feng has quit IRC00:33
thinrichsramineni knows best, I think00:33
thinrichsSeem to remember that it does, but worth double-checking00:33
*** shaohe_feng has joined #openstack-meeting00:33
aimeeukeystoneauth1>=2.7.000:33
*** cdelatte has quit IRC00:34
thinrichsaimeeu: just a word of caution: tempest tests can be difficult because they get run in an environment that's not always easy to replicate00:35
aimeeuthinrichs: OK. I'll keep that in mind and will not be offended if somebody else wants to take that task.00:35
thinrichsSounds like you've been busy!  Great!00:36
*** banix has joined #openstack-meeting00:36
aimeeuthinrichs: yes, and learning tons - it will all click soon00:36
thinrichsaimeeu: let us know how we can help.  We all know how hard starting a new project can be.00:37
*** dimtruck is now known as zz_dimtruck00:37
thinrichsmasahito: want to do a status update?00:37
masahitosure00:37
*** mbound has joined #openstack-meeting00:38
masahitocustom resource agent and its guide are in review. #link https://review.openstack.org/#/c/342853/00:38
*** Suyi_ has joined #openstack-meeting00:38
*** sindhude has joined #openstack-meeting00:39
*** karthikp_ has quit IRC00:39
masahitoAnd I started to implement the lazy datasource function though the spec hasn't been approval yet.00:39
masahitothat's from my side00:39
*** torgomatic has left #openstack-meeting00:39
*** JRobinson__ has quit IRC00:41
thinrichsmasahito: looks like ekcs has another question or two on the spec00:41
ekcsthinrichs: just clarification questions.00:41
masahitoI think yes is answer for both questions.00:42
*** amitgandhinz has joined #openstack-meeting00:42
*** hoangcx has joined #openstack-meeting00:42
*** shaohe_feng has quit IRC00:43
thinrichsThis is the one where we're (i) adding configuration to each datasource that records laziness for each table and (ii) adds an API call that updates the datasource config.  Right?00:43
*** mbound has quit IRC00:43
*** hoangcx has left #openstack-meeting00:43
masahitoright.00:43
*** shaohe_feng has joined #openstack-meeting00:44
ekcsgreat.00:44
thinrichsWhy would we need a new update_from_datasource method then?00:44
*** Liuqing has joined #openstack-meeting00:45
thinrichsWouldn't we just modify the one that exists (for each datasource, perhaps) so that it only runs the translators that it needs to?00:45
ekcsyes I think we are saying the same thing differently.00:45
masahitooh, a new update_from_datasource means modify the method.00:46
thinrichsekcs: ok.  Just wanted to make sure we were all on the same page00:46
thinrichsmasahito: great00:46
thinrichsekcs: are you happy with that spec now?  Shall we merge it after the meeting?00:46
ekcsyup.00:46
thinrichsSounds good.00:47
*** amitgandhinz has quit IRC00:47
*** JRobinson__ has joined #openstack-meeting00:47
thinrichsNo ramineni today, so I'm the last for the status update.00:47
thinrichsI pushed a patch that makes distributed_architecture true by default00:48
thinrichsMoved all the tests2 over to tests00:48
thinrichsRemoved all the code using distributed_arch00:48
thinrichs#link https://review.openstack.org/#/c/344551/00:48
thinrichsStill need to remove original dse/ folder.00:48
thinrichsSeem to be some tests that are still importing it.00:49
ekcsawesome.00:49
thinrichsThe good news is that all the unit tests pass00:49
thinrichspy34 and py2700:49
thinrichsThe new_arch unit tests fail b/c there's no test200:49
*** beagles_l8r is now known as beagles00:49
thinrichsI think I saw the devstack tests pass00:49
thinrichsThe new_arch devstack tests failed, but I haven't figured out why.  Looks to be a super-slow node.00:50
thinrichsDoes anyone know what the new_arch devstack tests are actually doing?00:50
thinrichsAre they running all the same tempest tests but with distributed_arch set to true?00:50
masahitoyes, the test runs same tempest tests.00:51
ekcsthinrichs: I think so. with one or two disabled that we haven’t got around to supporting yet.00:51
thinrichsOkay, so as long as the regular devstack tests pass, we should be good to go.00:51
masahitothe difference is only the flag of distributed architecture.00:51
*** zzxwill has joined #openstack-meeting00:52
*** nbogdanov has joined #openstack-meeting00:52
thinrichsI think ramineni may have re-enabled all those tempest tests in the new_arch00:52
*** shu-mutou-AFK is now known as shu-mutou00:52
ekcsok00:52
*** nbogdanov has quit IRC00:53
*** shaohe_feng has quit IRC00:53
thinrichsI need to rebase b/c of a merge conflict, and then I'll have gerrit rerun the devstack stacks00:53
thinrichsI'll add tests2 back, so the new_arch unit tests will pass.00:54
thinrichsHopefully then everything will be passing.00:54
*** wanghao_ has joined #openstack-meeting00:54
thinrichsIt's a large change set, but it's all superficial changes00:54
*** toddjohn has joined #openstack-meeting00:55
ekcsgreat.00:55
thinrichsIt'd be fine to split it up amongst everyone, so at least someone has looked at everything.00:55
thinrichsRunning short on time… one more agenda item.00:56
*** shaohe_feng has joined #openstack-meeting00:56
thinrichs#topic Mascots00:56
*** openstack changes topic to "Mascots (Meeting topic: CongressTeamMeeting)"00:56
thinrichsRemember that we need to pick out mascots.00:56
*** gongysh has joined #openstack-meeting00:56
thinrichsekcs: thanks for posting a suggestion...00:56
thinrichs#link http://lists.openstack.org/pipermail/openstack-dev/2016-July/099413.html00:56
thinrichsOur list so far is … Areopagus, salamander, raven, baboon00:57
*** shashank_hegde has quit IRC00:57
thinrichsekcs and I seem to be in agreement that salamander is the best of the animal choices, followed by raven, followed by baboon.00:57
*** ijw has quit IRC00:57
thinrichsAreopagus is a big rock (right ekcs?)00:57
masahitothinrichs: I agree the order.00:58
thinrichswith a rich history and quite good choice for Congress00:58
*** ijw has joined #openstack-meeting00:58
thinrichsDownside is that it's hard to spell and I'd never heard of it00:58
aimeeuthinrichs: I as well on the order. I like Areopagus00:58
ekcsthinrichs: right.00:58
*** zhhuabj has quit IRC00:59
thinrichsAlso, having a hard time imagining the logo (though isn't there some insurance company in the US with a large rock as its logo?)00:59
aimeeuPrudential00:59
thinrichs#link https://www.prudential.com/01:00
thinrichsCheck out upper-left corner (probably better images somewhere)01:00
thinrichsaimeeu: thanks!01:00
thinrichsIf we have any other ideas, add them to the mailing list.01:00
thinrichsBut for now we seem to have concensus on the order above.01:00
thinrichsOut of time.01:01
thinrichsThanks all!01:01
thinrichs#endmeeting01:01
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"01:01
openstackMeeting ended Thu Jul 21 01:01:18 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)01:01
openstackMinutes:        http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-07-21-00.00.html01:01
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-07-21-00.00.txt01:01
openstackLog:            http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-07-21-00.00.log.html01:01
masahitothank all.01:01
*** ijw has quit IRC01:03
*** shaohe_feng has quit IRC01:03
*** shaohe_feng has joined #openstack-meeting01:04
*** thinrichs has left #openstack-meeting01:04
*** hongbin has joined #openstack-meeting01:10
*** zhurong has joined #openstack-meeting01:10
*** khushbu_ has joined #openstack-meeting01:10
*** banix has quit IRC01:11
*** toddjohn has quit IRC01:11
*** zhhuabj has joined #openstack-meeting01:11
*** shaohe_feng has quit IRC01:14
*** zhhuabj_ has joined #openstack-meeting01:14
*** sindhude has quit IRC01:14
*** gongysh has quit IRC01:14
*** shaohe_feng has joined #openstack-meeting01:15
*** mtanino has joined #openstack-meeting01:17
*** zhhuabj has quit IRC01:18
*** sindhude has joined #openstack-meeting01:19
*** davechen has joined #openstack-meeting01:23
*** shaohe_feng has quit IRC01:24
*** sindhude has quit IRC01:24
*** shaohe_feng has joined #openstack-meeting01:25
*** Sukhdev has quit IRC01:30
*** fnaval has quit IRC01:30
*** sindhude has joined #openstack-meeting01:31
*** s3wong has quit IRC01:32
*** hongbin has quit IRC01:33
*** shaohe_feng has quit IRC01:34
*** shaohe_feng has joined #openstack-meeting01:35
*** harlowja has joined #openstack-meeting01:35
*** harlowja has quit IRC01:35
*** pvaneck has quit IRC01:35
*** harlowja has joined #openstack-meeting01:36
*** fnaval has joined #openstack-meeting01:37
*** maishsk has joined #openstack-meeting01:38
*** Daisy has joined #openstack-meeting01:39
*** piet_ has quit IRC01:40
*** spzala_ has quit IRC01:40
*** spzala has joined #openstack-meeting01:41
*** amitgandhinz has joined #openstack-meeting01:43
*** shaohe_feng has quit IRC01:44
*** vishnoianil has quit IRC01:45
*** spzala has quit IRC01:45
*** shaohe_feng has joined #openstack-meeting01:45
*** piet_ has joined #openstack-meeting01:46
*** sindhude has quit IRC01:47
*** amitgandhinz has quit IRC01:47
*** ljxiash has joined #openstack-meeting01:50
*** masahito has quit IRC01:51
*** ljxiash_ has joined #openstack-meeting01:51
*** ljxiash_ has quit IRC01:52
*** ljxiash has quit IRC01:52
*** nbogdanov has joined #openstack-meeting01:52
*** nbogdanov has quit IRC01:54
*** shaohe_feng has quit IRC01:55
*** shaohe_feng has joined #openstack-meeting01:55
*** bobh has joined #openstack-meeting01:57
*** woodster_ has quit IRC01:59
*** piet_ has quit IRC01:59
*** maishsk_ has joined #openstack-meeting02:01
*** salv-orl_ has joined #openstack-meeting02:02
*** salv-orl_ has quit IRC02:02
*** salv-orl_ has joined #openstack-meeting02:03
*** maishsk has quit IRC02:03
*** maishsk_ is now known as maishsk02:03
*** salv-orlando has quit IRC02:05
*** shaohe_feng has quit IRC02:05
*** uxdanielle has joined #openstack-meeting02:05
*** shaohe_feng has joined #openstack-meeting02:06
*** uxdanielle has quit IRC02:09
*** salv-orl_ has quit IRC02:11
*** toddjohn has joined #openstack-meeting02:11
*** priteau has joined #openstack-meeting02:13
*** unicell has quit IRC02:14
*** rajinir has quit IRC02:15
*** Daisy has quit IRC02:15
*** shaohe_feng has quit IRC02:15
*** Daisy has joined #openstack-meeting02:15
*** shaohe_feng has joined #openstack-meeting02:16
*** toddjohn has quit IRC02:16
*** priteau has quit IRC02:18
*** zz_dimtruck is now known as dimtruck02:21
*** Daisy has quit IRC02:22
*** Daisy has joined #openstack-meeting02:22
*** lblanchard has quit IRC02:22
*** bobh has quit IRC02:23
*** nk2527 has quit IRC02:23
*** david-lyle has joined #openstack-meeting02:24
*** Daisy_ has joined #openstack-meeting02:24
*** Daisy has quit IRC02:25
*** shaohe_feng has quit IRC02:25
*** shaohe_feng has joined #openstack-meeting02:26
*** Daisy has joined #openstack-meeting02:28
*** david-lyle has quit IRC02:29
*** Daisy_ has quit IRC02:31
*** bobh has joined #openstack-meeting02:35
*** shaohe_feng has quit IRC02:36
*** Daisy has quit IRC02:36
*** shaohe_feng has joined #openstack-meeting02:36
*** Daisy has joined #openstack-meeting02:37
*** Daisy has quit IRC02:37
*** Daisy has joined #openstack-meeting02:37
*** shashank_hegde has joined #openstack-meeting02:38
*** epico has joined #openstack-meeting02:38
*** weshay has quit IRC02:40
*** amitgandhinz has joined #openstack-meeting02:44
*** hongbin has joined #openstack-meeting02:44
*** yamahata has quit IRC02:44
*** hongbin has quit IRC02:44
*** iyamahat has quit IRC02:45
*** shaohe_feng has quit IRC02:46
*** yamamoto_ has joined #openstack-meeting02:46
*** harlowja has quit IRC02:46
*** yuanying has quit IRC02:46
*** shaohe_feng has joined #openstack-meeting02:47
*** bobh has quit IRC02:47
*** amitgandhinz has quit IRC02:49
*** lblanchard has joined #openstack-meeting02:49
*** Daisy has quit IRC02:51
*** Daisy has joined #openstack-meeting02:52
*** Daisy_ has joined #openstack-meeting02:53
*** nbogdanov has joined #openstack-meeting02:53
*** lblanchard has quit IRC02:54
*** Daisy has quit IRC02:54
*** Daisy_ has quit IRC02:55
*** nbogdanov has quit IRC02:55
*** Daisy has joined #openstack-meeting02:55
*** shaohe_feng has quit IRC02:56
*** shaohe_feng has joined #openstack-meeting02:56
*** gongysh has joined #openstack-meeting02:57
*** Daisy has quit IRC03:00
*** spzala has joined #openstack-meeting03:01
*** spzala has quit IRC03:06
*** shashank_hegde has quit IRC03:06
*** shaohe_feng has quit IRC03:06
*** shaohe_feng has joined #openstack-meeting03:07
*** maishsk_ has joined #openstack-meeting03:07
*** maishsk has quit IRC03:07
*** maishsk_ is now known as maishsk03:07
*** amotoki has quit IRC03:08
*** shashank_hegde has joined #openstack-meeting03:09
*** salv-orlando has joined #openstack-meeting03:09
*** toddjohn has joined #openstack-meeting03:12
*** zhhuabj_ has quit IRC03:14
*** maishsk has quit IRC03:14
*** shashank_hegde has quit IRC03:15
*** maishsk has joined #openstack-meeting03:16
*** shashank_hegde has joined #openstack-meeting03:17
*** toddjohn has quit IRC03:17
*** shaohe_feng has quit IRC03:17
*** shaohe_feng has joined #openstack-meeting03:17
*** salv-orlando has quit IRC03:19
*** maishsk has quit IRC03:20
*** amotoki has joined #openstack-meeting03:22
*** Daisy has joined #openstack-meeting03:24
*** piet_ has joined #openstack-meeting03:24
*** Daisy has quit IRC03:26
*** Daisy has joined #openstack-meeting03:26
*** gabriel-bezerra has quit IRC03:27
*** ericksonsantos has quit IRC03:27
*** shaohe_feng has quit IRC03:27
*** shaohe_feng has joined #openstack-meeting03:27
*** clenimar has quit IRC03:28
*** davechen has left #openstack-meeting03:28
*** gabriel-bezerra has joined #openstack-meeting03:30
*** amotoki has quit IRC03:30
*** csomerville has quit IRC03:30
*** ericksonsantos has joined #openstack-meeting03:31
*** yamamoto_ has quit IRC03:31
*** zhhuabj_ has joined #openstack-meeting03:31
*** julim has quit IRC03:31
*** cody-somerville has joined #openstack-meeting03:31
*** clenimar has joined #openstack-meeting03:32
*** amotoki has joined #openstack-meeting03:35
*** gongysh has quit IRC03:37
*** ijw has joined #openstack-meeting03:37
*** shaohe_feng has quit IRC03:37
*** shaohe_feng has joined #openstack-meeting03:38
*** sindhude has joined #openstack-meeting03:39
*** maishsk has joined #openstack-meeting03:40
*** llu has quit IRC03:41
*** ijw has quit IRC03:41
*** llu_ is now known as llu03:42
*** huanxie has quit IRC03:43
*** julim has joined #openstack-meeting03:44
*** larainema has quit IRC03:45
*** amitgandhinz has joined #openstack-meeting03:46
*** ijw has joined #openstack-meeting03:46
*** larainema has joined #openstack-meeting03:46
*** shaohe_feng has quit IRC03:47
*** yuanying has joined #openstack-meeting03:48
*** shaohe_feng has joined #openstack-meeting03:48
*** ijw_ has joined #openstack-meeting03:48
*** amitgandhinz has quit IRC03:50
*** rcarrillocruz has quit IRC03:51
*** ijw has quit IRC03:52
*** rcarrillocruz has joined #openstack-meeting03:53
*** nbogdanov has joined #openstack-meeting03:54
*** nbogdanov has quit IRC03:56
*** shaohe_feng has quit IRC03:58
*** shaohe_feng has joined #openstack-meeting03:58
*** mickeys has quit IRC04:00
*** mickeys has joined #openstack-meeting04:00
*** gnuoy has quit IRC04:00
*** jamespage has quit IRC04:01
*** dimtruck is now known as zz_dimtruck04:01
*** jamespage has joined #openstack-meeting04:01
*** spzala has joined #openstack-meeting04:02
*** yuanying_ has joined #openstack-meeting04:03
*** gabriel-bezerra has quit IRC04:04
*** clenimar has quit IRC04:04
*** ericksonsantos has quit IRC04:04
*** mickeys has quit IRC04:05
*** Ravikiran_K has joined #openstack-meeting04:05
*** julim has quit IRC04:05
*** yuanying has quit IRC04:06
*** spzala has quit IRC04:07
*** khushbu_ has quit IRC04:07
*** shaohe_feng has quit IRC04:08
*** shaohe_feng has joined #openstack-meeting04:09
*** gabriel-bezerra has joined #openstack-meeting04:09
*** ericksonsantos has joined #openstack-meeting04:09
*** clenimar has joined #openstack-meeting04:10
*** piet_ has quit IRC04:10
*** piet_ has joined #openstack-meeting04:11
*** shashank_hegde has quit IRC04:11
*** sindhude has quit IRC04:13
*** toddjohn has joined #openstack-meeting04:13
*** shashank_hegde has joined #openstack-meeting04:14
*** sdague has joined #openstack-meeting04:17
*** salv-orlando has joined #openstack-meeting04:18
*** toddjohn has quit IRC04:18
*** shaohe_feng has quit IRC04:18
*** amotoki has quit IRC04:18
*** shashank_hegde has quit IRC04:18
*** shaohe_feng has joined #openstack-meeting04:19
*** roxanaghe has joined #openstack-meeting04:24
*** salv-orlando has quit IRC04:28
*** shaohe_feng has quit IRC04:28
*** yamamoto_ has joined #openstack-meeting04:29
*** shaohe_feng has joined #openstack-meeting04:29
*** liusheng has quit IRC04:33
*** liusheng has joined #openstack-meeting04:34
*** amotoki has joined #openstack-meeting04:35
*** Liuqing has quit IRC04:36
*** Liuqing has joined #openstack-meeting04:36
*** amotoki_ has joined #openstack-meeting04:36
*** khushbu_ has joined #openstack-meeting04:38
*** vishwanathj is now known as vishwanathj_zzz04:39
*** shaohe_feng has quit IRC04:39
*** shashank_hegde has joined #openstack-meeting04:39
*** shaohe_feng has joined #openstack-meeting04:39
*** amotoki has quit IRC04:40
*** emagana has joined #openstack-meeting04:41
*** Daisy_ has joined #openstack-meeting04:43
*** piet_ has quit IRC04:45
*** ekcs has quit IRC04:45
*** Daisy has quit IRC04:45
*** amitgandhinz has joined #openstack-meeting04:46
*** thorst_ has joined #openstack-meeting04:47
*** Sukhdev has joined #openstack-meeting04:47
*** Ravikiran_K has left #openstack-meeting04:49
*** shaohe_feng has quit IRC04:49
*** shaohe_feng has joined #openstack-meeting04:50
*** sdague has quit IRC04:51
*** amitgandhinz has quit IRC04:51
*** aranjan has joined #openstack-meeting04:53
*** nbogdanov has joined #openstack-meeting04:55
*** d0ugal has quit IRC04:56
*** nbogdanov has quit IRC04:57
*** d0ugal has joined #openstack-meeting04:57
*** aeng has quit IRC04:57
*** yamahata has joined #openstack-meeting04:57
*** aeng has joined #openstack-meeting04:58
*** salv-orlando has joined #openstack-meeting04:59
*** shaohe_feng has quit IRC04:59
*** AmitGalitz has joined #openstack-meeting04:59
*** shaohe_feng has joined #openstack-meeting05:00
*** JRobinson__ is now known as JRobinson__afk05:01
*** lamt has quit IRC05:01
*** spzala has joined #openstack-meeting05:01
*** wbhuber has quit IRC05:02
*** yuanying has joined #openstack-meeting05:03
*** emagana has quit IRC05:05
*** yuanying_ has quit IRC05:06
*** lpetrut has joined #openstack-meeting05:06
*** thorst_ has quit IRC05:07
*** spzala has quit IRC05:08
*** puiterwijk has quit IRC05:08
*** thorst_ has joined #openstack-meeting05:08
*** shaohe_feng has quit IRC05:09
*** shaohe_feng has joined #openstack-meeting05:10
*** roxanaghe has quit IRC05:10
*** kaminohana has joined #openstack-meeting05:11
*** flwang1 has quit IRC05:11
*** csomerville has joined #openstack-meeting05:11
*** cody-somerville has quit IRC05:14
*** toddjohn has joined #openstack-meeting05:15
*** Daisy_ has quit IRC05:19
*** Daisy has joined #openstack-meeting05:19
*** gyee has joined #openstack-meeting05:20
*** shaohe_feng has quit IRC05:20
*** toddjohn has quit IRC05:20
*** shaohe_feng has joined #openstack-meeting05:21
*** Suyi_ has quit IRC05:21
*** jprovazn has joined #openstack-meeting05:22
*** unicell has joined #openstack-meeting05:24
*** Daisy has quit IRC05:24
*** thorst_ has quit IRC05:25
*** zzxwill has quit IRC05:28
*** shaohe_feng has quit IRC05:30
*** unicell has quit IRC05:31
*** shaohe_feng has joined #openstack-meeting05:31
*** unicell has joined #openstack-meeting05:31
*** JRobinson__afk is now known as JRobinson__05:31
*** afazekas|dentist is now known as afazekas05:32
*** akuznetsov has joined #openstack-meeting05:33
*** harlowja has joined #openstack-meeting05:39
*** zzxwill has joined #openstack-meeting05:39
*** nbogdanov has joined #openstack-meeting05:40
*** shaohe_feng has quit IRC05:40
*** dmorita has quit IRC05:40
*** thorst_ has joined #openstack-meeting05:41
*** shaohe_feng has joined #openstack-meeting05:41
*** iyamahat has joined #openstack-meeting05:42
*** Poornima has joined #openstack-meeting05:45
*** thorst_ has quit IRC05:46
*** amitgandhinz has joined #openstack-meeting05:47
*** gyee has quit IRC05:49
*** shaohe_feng has quit IRC05:50
*** lbrune has joined #openstack-meeting05:51
*** amitgandhinz has quit IRC05:52
*** Sukhdev has quit IRC05:52
*** sridharg has joined #openstack-meeting05:53
*** shaohe_feng has joined #openstack-meeting05:53
*** nkrinner_afk is now known as nkrinner05:58
*** gyee has joined #openstack-meeting05:58
*** unicell has quit IRC05:59
*** shaohe_feng has quit IRC06:01
*** shaohe_feng has joined #openstack-meeting06:01
*** unicell has joined #openstack-meeting06:02
*** Daisy has joined #openstack-meeting06:03
*** spzala has joined #openstack-meeting06:03
*** ijw_ has quit IRC06:03
*** harlowja has quit IRC06:04
*** gyee has quit IRC06:05
*** honghuixiao_ has quit IRC06:07
*** spzala has quit IRC06:08
*** claudiub has joined #openstack-meeting06:09
*** dmorita has joined #openstack-meeting06:10
*** shaohe_feng has quit IRC06:11
*** shaohe_feng has joined #openstack-meeting06:11
*** dmorita has quit IRC06:14
*** aranjan has quit IRC06:15
*** lpetrut has quit IRC06:16
*** anilvenkata has joined #openstack-meeting06:19
*** shaohe_feng has quit IRC06:21
*** shaohe_feng has joined #openstack-meeting06:22
*** akuznetsov has quit IRC06:24
*** lpetrut has joined #openstack-meeting06:25
*** iyamahat has quit IRC06:28
*** aeng has quit IRC06:30
*** shaohe_feng has quit IRC06:31
*** shaohe_feng has joined #openstack-meeting06:32
*** eric_lopez has joined #openstack-meeting06:35
*** fifieldt has joined #openstack-meeting06:37
*** elo has quit IRC06:39
*** andreas_s has joined #openstack-meeting06:39
*** tesseract- has joined #openstack-meeting06:39
*** armax has quit IRC06:41
*** shaohe_feng has quit IRC06:42
*** shaohe_feng has joined #openstack-meeting06:42
*** csomerville has quit IRC06:43
*** ijw has joined #openstack-meeting06:44
*** iyamahat has joined #openstack-meeting06:45
*** lpetrut has quit IRC06:45
*** ijw_ has joined #openstack-meeting06:45
*** amitgandhinz has joined #openstack-meeting06:48
*** ijw has quit IRC06:49
*** salv-orlando has quit IRC06:52
*** shaohe_feng has quit IRC06:52
*** amitgandhinz has quit IRC06:52
*** shaohe_feng has joined #openstack-meeting06:53
*** claudiub has quit IRC06:53
*** hoangcx_ has joined #openstack-meeting06:58
*** wanghao_ has quit IRC06:58
*** vishnoianil has joined #openstack-meeting06:58
*** lbrune has quit IRC06:59
*** hoangcx_ has left #openstack-meeting06:59
*** shaohe_feng has quit IRC07:02
*** mickeys has joined #openstack-meeting07:03
*** shaohe_feng has joined #openstack-meeting07:03
*** pcaruana has joined #openstack-meeting07:03
*** kaminohana has quit IRC07:03
*** spzala has joined #openstack-meeting07:04
*** davechen has joined #openstack-meeting07:05
*** nmagnezi has joined #openstack-meeting07:06
*** rcernin has joined #openstack-meeting07:07
*** mickeys has quit IRC07:08
*** obondarev has joined #openstack-meeting07:09
*** spzala has quit IRC07:09
*** rcernin has quit IRC07:10
*** rcernin has joined #openstack-meeting07:10
*** nbogdanov has quit IRC07:10
*** ljxiash has joined #openstack-meeting07:11
*** maishsk has quit IRC07:12
*** shaohe_feng has quit IRC07:12
*** fzdarsky has joined #openstack-meeting07:12
*** egallen has joined #openstack-meeting07:12
*** maishsk has joined #openstack-meeting07:13
*** maishsk has quit IRC07:13
*** shaohe_feng has joined #openstack-meeting07:13
*** maishsk has joined #openstack-meeting07:14
*** Daisy has quit IRC07:14
*** Daisy has joined #openstack-meeting07:15
*** cody-somerville has joined #openstack-meeting07:16
*** toddjohn has joined #openstack-meeting07:16
*** emagana has joined #openstack-meeting07:17
*** oshidoshi has joined #openstack-meeting07:19
*** Daisy_ has joined #openstack-meeting07:19
*** Daisy_ has quit IRC07:19
*** JRobinson__ has quit IRC07:19
*** lbrune has joined #openstack-meeting07:19
*** Daisy_ has joined #openstack-meeting07:19
*** iyamahat has quit IRC07:20
*** emagana has quit IRC07:22
*** fzdarsky has quit IRC07:22
*** toddjohn has quit IRC07:22
*** Daisy has quit IRC07:22
*** shaohe_feng has quit IRC07:23
*** shaohe_feng has joined #openstack-meeting07:23
*** jlanoux has joined #openstack-meeting07:24
*** Daisy has joined #openstack-meeting07:24
*** Daisy_ has quit IRC07:28
*** akuznetsov has joined #openstack-meeting07:30
*** emagana has joined #openstack-meeting07:33
*** shaohe_feng has quit IRC07:33
*** Na3iL has joined #openstack-meeting07:34
*** shaohe_feng has joined #openstack-meeting07:34
*** fzdarsky has joined #openstack-meeting07:36
*** d0ugal has quit IRC07:37
*** emagana has quit IRC07:37
*** adiantum has quit IRC07:42
*** shaohe_feng has quit IRC07:43
*** shaohe_feng has joined #openstack-meeting07:44
*** mikelk has joined #openstack-meeting07:48
*** amitgandhinz has joined #openstack-meeting07:49
*** salv-orlando has joined #openstack-meeting07:53
*** amitgandhinz has quit IRC07:53
*** ygbo has joined #openstack-meeting07:53
*** rbartal has joined #openstack-meeting07:53
*** shaohe_feng has quit IRC07:53
*** shaohe_feng has joined #openstack-meeting07:54
*** binz has joined #openstack-meeting07:57
*** fzdarsky has quit IRC07:57
*** toscalix has joined #openstack-meeting07:59
*** asselin_ has quit IRC08:00
*** akuznetsov has quit IRC08:01
*** matthewbodkin has joined #openstack-meeting08:02
*** shaohe_feng has quit IRC08:04
*** shaohe_feng has joined #openstack-meeting08:04
*** salv-orlando has quit IRC08:05
*** hashar has joined #openstack-meeting08:05
*** spzala has joined #openstack-meeting08:05
*** spzala has quit IRC08:10
*** davechen has quit IRC08:10
*** shashank_hegde has quit IRC08:12
*** hashar has quit IRC08:12
*** shaohe_feng has quit IRC08:14
*** davechen has joined #openstack-meeting08:14
*** ijw_ has quit IRC08:14
*** shaohe_feng has joined #openstack-meeting08:14
*** ijw has joined #openstack-meeting08:15
*** thorst_ has joined #openstack-meeting08:17
*** yassine has joined #openstack-meeting08:19
*** yassine is now known as Guest2797508:19
*** ijw has quit IRC08:20
*** Guest27975 is now known as yassou08:20
*** thorst_ has quit IRC08:21
*** priteau has joined #openstack-meeting08:23
*** mickeys has joined #openstack-meeting08:24
*** sshnaidm|afk is now known as sshnaidm08:24
*** shaohe_feng has quit IRC08:24
*** shaohe_feng has joined #openstack-meeting08:25
*** oshidoshi1 has joined #openstack-meeting08:26
*** eezhova has joined #openstack-meeting08:26
*** mickeys has quit IRC08:27
*** zhhuabj_ has quit IRC08:27
*** asettle has joined #openstack-meeting08:27
*** mickeys has joined #openstack-meeting08:27
*** priteau has quit IRC08:28
*** oshidoshi has quit IRC08:29
*** beekhof has quit IRC08:29
*** mickeys has quit IRC08:31
*** devananda has quit IRC08:34
*** shaohe_feng has quit IRC08:34
*** shaohe_feng has joined #openstack-meeting08:35
*** zhhuabj_ has joined #openstack-meeting08:39
*** ociuhandu has joined #openstack-meeting08:39
*** irenab has joined #openstack-meeting08:41
*** hoangcx has joined #openstack-meeting08:43
*** hoangcx has left #openstack-meeting08:43
*** shaohe_feng has quit IRC08:45
*** shaohe_feng has joined #openstack-meeting08:45
*** manikanta_tadi has joined #openstack-meeting08:47
*** amotoki has joined #openstack-meeting08:47
*** Daisy_ has joined #openstack-meeting08:49
*** lpetrut has joined #openstack-meeting08:49
*** amitgandhinz has joined #openstack-meeting08:49
*** fzdarsky has joined #openstack-meeting08:51
*** hashar has joined #openstack-meeting08:51
*** Daisy has quit IRC08:52
*** amitgandhinz has quit IRC08:54
*** shaohe_feng has quit IRC08:55
*** shaohe_feng has joined #openstack-meeting08:56
*** amotoki__ has joined #openstack-meeting08:56
*** amotoki__ has quit IRC08:57
*** priteau has joined #openstack-meeting08:57
*** priteau has quit IRC08:58
*** amotoki_ has quit IRC08:59
*** lixiaoy1_ has joined #openstack-meeting09:03
*** salv-orlando has joined #openstack-meeting09:03
*** thorst_ has joined #openstack-meeting09:04
*** tochi has quit IRC09:04
*** shaohe_feng has quit IRC09:05
*** spzala has joined #openstack-meeting09:06
*** shaohe_feng has joined #openstack-meeting09:06
*** isq has quit IRC09:07
*** e0ne has joined #openstack-meeting09:08
*** isq has joined #openstack-meeting09:08
*** thorst_ has quit IRC09:08
*** d0ugal has joined #openstack-meeting09:10
*** Daisy_ has quit IRC09:10
*** spzala has quit IRC09:10
*** Daisy has joined #openstack-meeting09:10
*** oshidoshi has joined #openstack-meeting09:11
*** Daisy has quit IRC09:11
*** Daisy has joined #openstack-meeting09:11
*** salv-orlando has quit IRC09:13
*** oshidoshi1 has quit IRC09:14
*** electrofelix has joined #openstack-meeting09:15
*** Daisy has quit IRC09:15
*** shaohe_feng has quit IRC09:15
*** shaohe_feng has joined #openstack-meeting09:16
*** jaranovich has left #openstack-meeting09:18
*** toddjohn has joined #openstack-meeting09:19
*** ijw has joined #openstack-meeting09:19
*** wznoinsk_ has joined #openstack-meeting09:20
*** wznoinsk- has joined #openstack-meeting09:22
*** wznoinsk has quit IRC09:22
*** wznoinsk has joined #openstack-meeting09:22
*** d0ugal has quit IRC09:22
*** e0ne has quit IRC09:23
*** wznoinsk| has joined #openstack-meeting09:23
*** toddjohn has quit IRC09:23
*** e0ne has joined #openstack-meeting09:24
*** wznoinsk- has quit IRC09:24
*** wznoinsk has quit IRC09:25
*** wznoinsk_ has quit IRC09:25
*** shaohe_feng has quit IRC09:26
*** shaohe_feng has joined #openstack-meeting09:26
*** emagana has joined #openstack-meeting09:27
*** megm has quit IRC09:27
*** d0ugal has joined #openstack-meeting09:28
*** megm has joined #openstack-meeting09:29
*** fzdarsky has quit IRC09:30
*** wznoinsk has joined #openstack-meeting09:30
*** emagana has quit IRC09:31
*** wznoinsk| has quit IRC09:32
*** ygbo has quit IRC09:33
*** adiantum has joined #openstack-meeting09:35
*** shaohe_feng has quit IRC09:36
*** shaohe_feng has joined #openstack-meeting09:37
*** salv-orlando has joined #openstack-meeting09:43
*** fzdarsky has joined #openstack-meeting09:44
*** shaohe_feng has quit IRC09:46
*** ygbo has joined #openstack-meeting09:47
*** lbrune has quit IRC09:47
*** shaohe_feng has joined #openstack-meeting09:49
*** amitgandhinz has joined #openstack-meeting09:50
*** amitgandhinz has quit IRC09:55
*** obondarev has quit IRC09:56
*** d0ugal has quit IRC09:56
*** salv-orl_ has joined #openstack-meeting09:56
*** obondarev has joined #openstack-meeting09:56
*** shaohe_feng has quit IRC09:56
*** aspiers has quit IRC09:58
*** lezbar has quit IRC09:59
*** shaohe_feng has joined #openstack-meeting09:59
*** salv-orlando has quit IRC10:00
*** Poornima has quit IRC10:01
*** iyamahat has joined #openstack-meeting10:01
*** zhurong has quit IRC10:02
*** d0ugal has joined #openstack-meeting10:02
*** d0ugal has quit IRC10:03
*** d0ugal has joined #openstack-meeting10:03
*** ygbo has quit IRC10:04
*** salv-orlando has joined #openstack-meeting10:04
*** lezbar has joined #openstack-meeting10:06
*** iyamahat has quit IRC10:06
*** yamahata has quit IRC10:06
*** spzala has joined #openstack-meeting10:06
*** shaohe_feng has quit IRC10:07
*** IgorYozhikov has quit IRC10:07
*** akuznetsova has quit IRC10:07
*** amotoki has quit IRC10:07
*** e0ne has quit IRC10:07
*** shaohe_feng has joined #openstack-meeting10:08
*** salv-orl_ has quit IRC10:08
*** Liuqing has quit IRC10:08
*** salv-orlando has quit IRC10:08
*** dteselkin has quit IRC10:08
*** sskripnick has left #openstack-meeting10:08
*** rakhmerov has quit IRC10:09
*** Liuqing has joined #openstack-meeting10:09
*** obondarev has quit IRC10:09
*** IgorYozhikov has joined #openstack-meeting10:09
*** aspiers has joined #openstack-meeting10:11
*** obondarev has joined #openstack-meeting10:11
*** spzala has quit IRC10:11
*** Poornima has joined #openstack-meeting10:13
*** IgorYozhikov has quit IRC10:14
*** amotoki has joined #openstack-meeting10:15
*** ihrachys has joined #openstack-meeting10:15
*** wznoinsk_ has joined #openstack-meeting10:15
*** dteselkin has joined #openstack-meeting10:16
*** akuznetsova has joined #openstack-meeting10:16
*** amotoki has quit IRC10:16
*** shaohe_feng has quit IRC10:17
*** wznoinsk has quit IRC10:17
*** shaohe_feng has joined #openstack-meeting10:18
*** obondarev has quit IRC10:20
*** davechen has left #openstack-meeting10:20
*** akuznetsova has quit IRC10:20
*** obondarev has joined #openstack-meeting10:20
*** dteselkin has quit IRC10:21
*** ygbo has joined #openstack-meeting10:22
*** amotoki has joined #openstack-meeting10:24
*** acoles_ is now known as acoles10:24
*** IgorYozhikov has joined #openstack-meeting10:25
*** akuznetsova has joined #openstack-meeting10:26
*** mbound has joined #openstack-meeting10:26
*** rakhmerov has joined #openstack-meeting10:27
*** shaohe_feng has quit IRC10:27
*** shaohe_feng has joined #openstack-meeting10:28
*** rakhmero_ has joined #openstack-meeting10:28
*** dteselkin has joined #openstack-meeting10:29
*** d0ugal has quit IRC10:31
*** flwang1 has joined #openstack-meeting10:31
*** irenab has quit IRC10:32
*** rakhmero_ is now known as rakhmerov_10:33
*** rakhmerov_ has quit IRC10:33
*** rakhmero_ has joined #openstack-meeting10:34
*** rakhmero_ has quit IRC10:34
*** e0ne has joined #openstack-meeting10:35
*** rakhmero_ has joined #openstack-meeting10:35
*** ihrachys has quit IRC10:36
*** ihrachys has joined #openstack-meeting10:37
*** shaohe_feng has quit IRC10:37
*** amrith has quit IRC10:38
*** peterlisak has quit IRC10:38
*** amrith has joined #openstack-meeting10:38
*** rakhmero_ has quit IRC10:39
*** shaohe_feng has joined #openstack-meeting10:40
*** peterlisak has joined #openstack-meeting10:41
*** rodrigods has quit IRC10:43
*** rodrigods has joined #openstack-meeting10:44
*** shaohe_feng has quit IRC10:48
*** shaohe_feng has joined #openstack-meeting10:48
*** epico has quit IRC10:49
*** amotoki has quit IRC10:49
*** manikanta_tadi has quit IRC10:49
*** amitgandhinz has joined #openstack-meeting10:51
*** aspiers has quit IRC10:52
*** asselin_ has joined #openstack-meeting10:53
*** manikanta_tadi has joined #openstack-meeting10:55
*** amitgandhinz has quit IRC10:56
*** irenab has joined #openstack-meeting10:57
*** irenab has quit IRC10:57
*** shaohe_feng has quit IRC10:58
*** shaohe_feng has joined #openstack-meeting10:59
*** eezhova has quit IRC10:59
*** shu-mutou is now known as shu-mutou-AFK11:04
*** obondarev has quit IRC11:04
*** spzala has joined #openstack-meeting11:07
*** shaohe_feng has quit IRC11:08
*** aspiers has joined #openstack-meeting11:09
*** shaohe_feng has joined #openstack-meeting11:09
*** hashar has quit IRC11:10
*** spzala has quit IRC11:12
*** oshidoshi1 has joined #openstack-meeting11:13
*** maishsk has quit IRC11:15
*** rtheis has joined #openstack-meeting11:16
*** tangchen has quit IRC11:17
*** oshidoshi has quit IRC11:17
*** yamamoto_ has quit IRC11:17
*** Poornima has quit IRC11:17
*** shaohe_feng has quit IRC11:18
*** Liuqing has quit IRC11:19
*** shaohe_feng has joined #openstack-meeting11:19
*** maishsk has joined #openstack-meeting11:20
*** toddjohn has joined #openstack-meeting11:20
*** maishsk_ has joined #openstack-meeting11:23
*** maishsk has quit IRC11:25
*** maishsk_ is now known as maishsk11:25
*** tellesnobrega is now known as tellesnobrega_af11:25
*** toddjohn has quit IRC11:25
*** eezhova has joined #openstack-meeting11:29
*** shaohe_feng has quit IRC11:29
*** shaohe_feng has joined #openstack-meeting11:29
*** tangchen has joined #openstack-meeting11:30
*** akuznetsov has joined #openstack-meeting11:31
*** thorst_ has joined #openstack-meeting11:32
*** Ravikiran_K has joined #openstack-meeting11:32
*** oferby has quit IRC11:32
*** oferby has joined #openstack-meeting11:32
*** zhhuabj_ has quit IRC11:33
*** cbouch has joined #openstack-meeting11:33
*** Poornima has joined #openstack-meeting11:35
*** thorst_ has quit IRC11:36
*** zhurong has joined #openstack-meeting11:37
*** e0ne has quit IRC11:37
*** zhhuabj_ has joined #openstack-meeting11:37
*** shaohe_feng has quit IRC11:39
*** shaohe_feng has joined #openstack-meeting11:40
*** zhurong has quit IRC11:42
*** polesitive has joined #openstack-meeting11:43
*** zhurong has joined #openstack-meeting11:43
polesitiveAnyone south uk?11:43
*** dprince has joined #openstack-meeting11:45
*** obondarev has joined #openstack-meeting11:45
*** bvandenh has quit IRC11:47
*** aysyd has joined #openstack-meeting11:48
*** obondarev has quit IRC11:48
*** shaohe_feng has quit IRC11:49
*** shaohe_feng has joined #openstack-meeting11:50
*** zhhuabj_ has quit IRC11:51
*** amitgandhinz has joined #openstack-meeting11:52
*** dfflanders has joined #openstack-meeting11:53
*** yamamoto has joined #openstack-meeting11:54
*** ociuhandu has quit IRC11:55
*** jckasper has quit IRC11:56
*** amitgandhinz has quit IRC11:56
*** shaohe_feng has quit IRC11:59
*** shaohe_feng has joined #openstack-meeting12:00
*** polesitive has quit IRC12:01
*** weshay has joined #openstack-meeting12:02
*** yamamoto has quit IRC12:03
*** yamamoto has joined #openstack-meeting12:03
*** jckasper has joined #openstack-meeting12:03
*** sdague has joined #openstack-meeting12:03
*** akuznetsov has quit IRC12:04
*** zhhuabj_ has joined #openstack-meeting12:04
*** spzala has joined #openstack-meeting12:08
*** yamamoto has quit IRC12:08
*** yamamoto has joined #openstack-meeting12:09
*** shaohe_feng has quit IRC12:10
*** shaohe_feng has joined #openstack-meeting12:10
*** d0ugal has joined #openstack-meeting12:11
*** spzala has quit IRC12:13
*** hashar has joined #openstack-meeting12:13
*** Ravikiran_K has quit IRC12:13
*** cbader has joined #openstack-meeting12:16
*** ljxiash has quit IRC12:18
*** ljxiash has joined #openstack-meeting12:19
*** jckasper has quit IRC12:19
*** maishsk has quit IRC12:19
*** jckasper has joined #openstack-meeting12:20
*** shaohe_feng has quit IRC12:20
*** ljxiash_ has joined #openstack-meeting12:20
*** shaohe_feng has joined #openstack-meeting12:20
*** Poornima has quit IRC12:22
*** tsandall has joined #openstack-meeting12:23
*** ljxiash has quit IRC12:23
*** eric_lopez has quit IRC12:24
*** jckasper has quit IRC12:24
*** eric_lopez has joined #openstack-meeting12:24
*** ljxiash_ has quit IRC12:25
*** jpich has joined #openstack-meeting12:27
*** banix has joined #openstack-meeting12:28
*** shaohe_feng has quit IRC12:30
*** shaohe_feng has joined #openstack-meeting12:31
*** e0ne has joined #openstack-meeting12:33
*** banix has quit IRC12:33
*** banix has joined #openstack-meeting12:34
*** banix has quit IRC12:37
*** eliqiao has quit IRC12:38
*** tellesnobrega_af is now known as tellesnobrega12:38
*** toddjohn has joined #openstack-meeting12:38
*** adiantum1 has joined #openstack-meeting12:39
*** sdague has quit IRC12:39
*** maishsk has joined #openstack-meeting12:40
*** shaohe_feng has quit IRC12:40
*** shaohe_feng has joined #openstack-meeting12:41
*** dmorita has joined #openstack-meeting12:41
*** adiantum has quit IRC12:42
*** adiantum1 is now known as adiantum12:42
*** e0ne has quit IRC12:43
*** bobh has joined #openstack-meeting12:43
*** salv-orlando has joined #openstack-meeting12:45
*** dmorita has quit IRC12:46
*** ljxiash has joined #openstack-meeting12:46
*** sindhude has joined #openstack-meeting12:46
*** adiantum has quit IRC12:47
*** tpsilva has joined #openstack-meeting12:50
*** shaohe_feng has quit IRC12:51
*** lblanchard has joined #openstack-meeting12:51
*** ljxiash has quit IRC12:51
*** salv-orlando has quit IRC12:51
*** shaohe_feng has joined #openstack-meeting12:51
*** obondarev has joined #openstack-meeting12:52
*** tsandall has quit IRC12:52
*** amitgandhinz has joined #openstack-meeting12:53
*** ljxiash has joined #openstack-meeting12:54
*** amitgandhinz has quit IRC12:57
*** galstrom_zzz is now known as galstrom12:58
*** akuznetsov has joined #openstack-meeting12:58
*** katomo has joined #openstack-meeting12:59
*** bobh has quit IRC13:00
katomo#startmeeting OpenStack I18n Meeting13:00
openstackMeeting started Thu Jul 21 13:00:29 2016 UTC and is due to finish in 60 minutes.  The chair is katomo. Information about MeetBot at http://wiki.debian.org/MeetBot.13:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.13:00
*** openstack changes topic to " (Meeting topic: OpenStack I18n Meeting)"13:00
openstackThe meeting name has been set to 'openstack_i18n_meeting'13:00
katomoany one here for the meeting?13:00
*** tangchen_ has joined #openstack-meeting13:01
*** shaohe_feng has quit IRC13:01
*** spzala has joined #openstack-meeting13:01
*** julim has joined #openstack-meeting13:01
*** shaohe_feng has joined #openstack-meeting13:01
*** manikanta_tadi has quit IRC13:02
*** aohuanxuan has joined #openstack-meeting13:02
*** aohuanxuan has left #openstack-meeting13:03
*** jckasper has joined #openstack-meeting13:04
katomohm, no one here.13:06
*** oshidoshi has joined #openstack-meeting13:07
*** dbecker has quit IRC13:08
katomowe have 3 candides for I18n mascot. I will submit them as candides.13:08
*** dbecker has joined #openstack-meeting13:08
katomo#info Liberty translation has been closed. We keep them at Zanata for collecting translation stats.13:09
*** piet_ has joined #openstack-meeting13:09
katomo#endmeeting13:10
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"13:10
openstackMeeting ended Thu Jul 21 13:10:18 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)13:10
openstackMinutes:        http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2016/openstack_i18n_meeting.2016-07-21-13.00.html13:10
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2016/openstack_i18n_meeting.2016-07-21-13.00.txt13:10
openstackLog:            http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2016/openstack_i18n_meeting.2016-07-21-13.00.log.html13:10
*** oshidoshi1 has quit IRC13:10
*** katomo has quit IRC13:10
*** claudiub has joined #openstack-meeting13:11
*** shaohe_feng has quit IRC13:11
*** shaohe_feng has joined #openstack-meeting13:11
*** jpich has quit IRC13:12
*** thorst_ has joined #openstack-meeting13:12
*** anilvenkata has quit IRC13:13
*** cleong has joined #openstack-meeting13:14
*** liamji has joined #openstack-meeting13:15
*** kylek3h has joined #openstack-meeting13:16
*** thorst_ has quit IRC13:17
*** amitgandhinz has joined #openstack-meeting13:20
*** hparekh_ has joined #openstack-meeting13:20
*** amitgandhinz has quit IRC13:21
*** hparekh_ has quit IRC13:21
*** shaohe_feng has quit IRC13:21
*** amitgandhinz has joined #openstack-meeting13:22
*** ociuhandu has joined #openstack-meeting13:22
*** jpich has joined #openstack-meeting13:22
*** egallen has quit IRC13:24
*** oshidoshi1 has joined #openstack-meeting13:24
*** shaohe_feng has joined #openstack-meeting13:25
*** yamamoto has quit IRC13:25
*** oshidoshi has quit IRC13:26
*** khushbu_ has quit IRC13:28
*** nk2527 has joined #openstack-meeting13:29
*** uxdanielle has joined #openstack-meeting13:32
*** e0ne has joined #openstack-meeting13:32
*** shaohe_feng has quit IRC13:32
*** sdague has joined #openstack-meeting13:32
*** shaohe_feng has joined #openstack-meeting13:33
*** merooney has joined #openstack-meeting13:34
*** asettle has quit IRC13:37
*** asettle has joined #openstack-meeting13:37
*** mikelk has quit IRC13:38
*** mikelk has joined #openstack-meeting13:38
*** rakhmero_ has joined #openstack-meeting13:39
*** akuznetsov has quit IRC13:39
*** rakhmero_ is now known as rakhmerov_13:40
*** Liuqing has joined #openstack-meeting13:40
*** rakhmerov_ has quit IRC13:41
*** Liuqing has quit IRC13:41
*** shaohe_feng has quit IRC13:42
*** mriedem has joined #openstack-meeting13:42
*** shaohe_feng has joined #openstack-meeting13:43
*** bill_az_ has joined #openstack-meeting13:43
*** yamamoto has joined #openstack-meeting13:43
*** yamamoto has quit IRC13:43
*** yamamoto has joined #openstack-meeting13:44
*** sindhude has quit IRC13:46
*** dosaboy has quit IRC13:48
*** krotscheck_dcm is now known as krotscheck13:50
*** spotz_zzz is now known as spotz13:52
*** dosaboy has joined #openstack-meeting13:52
*** shaohe_feng has quit IRC13:52
*** ebalduf has joined #openstack-meeting13:52
*** shaohe_feng has joined #openstack-meeting13:53
*** galstrom is now known as galstrom_zzz13:53
*** galstrom_zzz is now known as galstrom13:55
* fifieldt wanders in13:56
*** mtanino has quit IRC13:57
fifieldtanyone here for the ops tags  team meeting?13:57
*** jpich has left #openstack-meeting13:57
*** zhonghua-lee has quit IRC13:59
*** zhonghua-lee has joined #openstack-meeting13:59
fifieldtok, I think this is the right channel :)13:59
fifieldt#startmeeting ops tags13:59
openstackMeeting started Thu Jul 21 13:59:40 2016 UTC and is due to finish in 60 minutes.  The chair is fifieldt. Information about MeetBot at http://wiki.debian.org/MeetBot.13:59
*** sdague has quit IRC13:59
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.13:59
*** openstack changes topic to " (Meeting topic: ops tags)"13:59
openstackThe meeting name has been set to 'ops_tags'13:59
fifieldtAnyone here for the ops tags team meeting?13:59
*** moshele has joined #openstack-meeting13:59
* fifieldt waits 5 minutes14:00
*** sskripnick has joined #openstack-meeting14:00
*** dasanind has joined #openstack-meeting14:01
*** galstrom is now known as galstrom_zzz14:01
*** shamail has joined #openstack-meeting14:01
shamailhi!14:01
*** salv-orlando has joined #openstack-meeting14:01
*** Ravikiran_K has joined #openstack-meeting14:01
fifieldthi shamail :)14:02
*** galstrom_zzz is now known as galstrom14:02
fifieldtI kicked off the meetbot stuff already, so we're being logged :)14:02
shamailI hope you’ve been well fifieldt14:02
fifieldtfor the most part :)14:02
fifieldtask sparkycollier about the ailments :)14:02
*** shaohe_feng has quit IRC14:02
*** salv-orl_ has joined #openstack-meeting14:02
shamailwill do !14:03
fifieldtand yourself?14:03
*** moshele has left #openstack-meeting14:03
*** shaohe_feng has joined #openstack-meeting14:03
shamailPretty good, been extremely busy but going away tomorrow for a week14:03
shamaillooking forward to it14:03
fifieldtsaw that, congratulations!14:03
shamailthanks14:03
fifieldtshall we smash through this meeting so you're ever closer to your holiday?14:04
*** rbak has joined #openstack-meeting14:04
shamailThat would be great14:04
*** sindhude has joined #openstack-meeting14:04
shamail#link http://lists.openstack.org/pipermail/openstack-operators/2016-July/011070.html14:04
*** emagana has joined #openstack-meeting14:04
fifieldt#topic Review Open Changes14:04
*** zz_dimtruck is now known as dimtruck14:04
*** openstack changes topic to "Review Open Changes (Meeting topic: ops tags)"14:04
fifieldt#link https://review.openstack.org/#/q/status:open+project:openstack/ops-tags-team,n,z14:04
*** zhurong has quit IRC14:04
*** mriedem has quit IRC14:04
fifieldtso, we have 3 open changes14:04
shamailaye14:05
fifieldtfor the install guide, a new tag for HA and a new tag for containerizable14:05
fifieldtthe latter two haven't made progress for a couple of months14:05
*** lazy_prince has quit IRC14:05
fifieldtthe install guide is a nice improvement to allow recognition of more ways that install guides can be provided14:05
shamailI do have a question on https://review.openstack.org/#/c/200128/14:05
fifieldtya14:05
shamailbut we can come back to it since install guide is the most important14:06
fifieldtat your option, sir14:06
shamail#link https://review.openstack.org/#/c/341933/14:06
shamailso I did see your latest comment on this one14:06
*** ericksonsantos has quit IRC14:06
*** salv-orlando has quit IRC14:07
shamailI was hesitant for similar reasons originally but you described it so much better14:07
fifieldtok14:07
fifieldtto paraphrase briefly what I think the intent behind this change is:14:07
shamailI was worried about the fact that there are other docs available (from distros) and we wouldn’t necessarily want to lose that information14:07
fifieldtIf a project goes to the effort to make an install guide, the tag should recognise it14:07
shamail+114:08
*** Leo_ has joined #openstack-meeting14:08
fifieldtthe tag as currently written does not allow a project which has made a guide using source, rather than packages, to attain the tag14:08
*** Leo_ has quit IRC14:08
fifieldtThat's a problem for new projects and creates a catch-22 situation14:08
*** Leo_ has joined #openstack-meeting14:08
*** lazy_prince has joined #openstack-meeting14:09
fifieldtsince distros are only likely to package more 'mature'/'adopted' projects14:09
shamailDid the solution we discussed in Austin (but haven’t implemented) help solve for this?14:09
fifieldtand users might only adopt a project if there's an install guide14:09
shamailWe had discussed creating a way to link the various guides14:09
*** AmitGalitz has quit IRC14:09
*** salv-orlando has joined #openstack-meeting14:09
fifieldtFor new projects, if they do go to the nontrivial effort of  making a decent install guide14:09
fifieldtwe're standing in their way of getting a tick :)14:10
*** ajmiller has joined #openstack-meeting14:10
shamailAgreed14:10
fifieldtSo I think this proposal at its heart is a good one14:10
fifieldtHowever the current implementation needs some tweaks14:10
fifieldthence that comment14:10
fifieldtanyway14:10
fifieldtwhat _did_ we say in Austin? :D14:10
*** sgundur1 has left #openstack-meeting14:10
fifieldt#link https://etherpad.openstack.org/p/AUS-ops-Ops-tags14:10
*** Leom has joined #openstack-meeting14:10
shamaillines 12-1414:11
fifieldtso we want to provide links to the guides from the tag14:11
*** galstrom is now known as galstrom_zzz14:11
*** rbowen has quit IRC14:11
*** cardeois has joined #openstack-meeting14:11
shamailYeah, this would allow us to list an install guide as “available” and then link to source even14:11
fifieldtyup14:11
*** jckasper has quit IRC14:11
fifieldtour syntax there is actually broad enough that it isn't locked to specific distros which is good, I guess14:12
*** galstrom_zzz is now known as galstrom14:12
*** jckasper has joined #openstack-meeting14:12
shamailYeah, the reason for going this route was due to keeping the parsing rather simple for navigator14:12
fifieldtIndeed14:12
*** jckasper has quit IRC14:12
fifieldtIt was a request from the designers of the Project Navigator that we did have install guide links14:12
*** jckasper has joined #openstack-meeting14:12
fifieldtbut as you note, syntax needs to be simple14:13
*** shaohe_feng has quit IRC14:13
fifieldtand I think we concluded in Austin that "link" attributes could either be a string or a list14:13
fifieldtand that would mean we could generalise the syntax14:13
shamailYep!14:13
fifieldtphew, I feel caught up now14:13
shamailWe were supposed to research whether using the same key multiple times is valid JSON14:13
fifieldtah, yes14:13
*** salv-orl_ has quit IRC14:14
*** shaohe_feng has joined #openstack-meeting14:14
*** Leo_ has quit IRC14:14
fifieldtOK14:14
fifieldtso, but does that linking have bearing on this current patch we've got open?14:14
*** baoli has joined #openstack-meeting14:14
fifieldtI suppose in the way that if the patch as currently proposed went in, it would prevent that from happening?14:14
*** amotoki has joined #openstack-meeting14:15
shamailThe combination of the two changes (your comment in the review) along with adding links (to any source) is probably an ideal solution since it allows docs-team to focus on supported projects but allows new teams to create guides and users will still find them14:15
shamailI think so14:15
fifieldtok14:15
shamaildue to the definition being limited to “Guide exists, for all doc-team supported releases,”14:15
fifieldtso, just thinking about how not to confuse the lovely people who are working on the current patch (yay contributors!)14:15
*** eharney has quit IRC14:15
*** galstrom is now known as galstrom_zzz14:15
fifieldtdo you think waiting for a reply to my latest comment is the best course for now, and if that is accepted and we go on to merge ... then we can start workiong on the link stuff?14:16
shamail+114:16
shamailI think we should ask the team on this patch to let us be broader in what defines “available”14:16
fifieldtright, because there has to be some level of quality14:17
shamailthen we (ops tags) will do the work on the actual tag for Mitaka+ to change its format and add the source links14:17
fifieldtmaking a blank document entitled "Install Guide" could be seen as being "available" if not :P14:17
fifieldtright14:17
shamaillol true14:17
*** baoli has quit IRC14:17
*** rbartal has quit IRC14:17
fifieldtok, so this one seems wrapped up?14:18
shamail+114:18
fifieldtyou mentioned the HA tag just now?14:18
*** baoli has joined #openstack-meeting14:19
shamailYes so for the HA tag, I had updated the tag description before the summit and I think most people agreed with it.  The -1 currently there is for the tag as defined for Kilo.14:19
*** galstrom_zzz is now known as galstrom14:19
*** baoli has quit IRC14:19
*** vishwanathj_zzz is now known as vishwanathj14:19
shamailI wanted to ask whether it makes sense to change this patch to include the tag description and build a new tag for Mitaka (with notmyname’s feedback included as well)14:19
fifieldtre-reading the tag description now14:20
fifieldtso, again we rely on our friends in the doc team14:20
fifieldtit's either HA guide, no docs, or not HA14:20
*** galstrom is now known as galstrom_zzz14:20
fifieldtI think that works14:20
fifieldtThe tag application process bit might be able to do with some boilerplate copypasta from more recent stuff14:21
fifieldtbut generally, I think it works?14:21
fifieldtthe caveats listed in the kilo file are good14:21
shamailEssentially the tag relates HA Guide and general advertised capabilities by the project itself14:21
fifieldtand look maintainable14:21
fifieldtright14:21
shamailYep14:22
fifieldtcool14:22
fifieldtThink maishsk is interested in updating?14:22
shamailWhen we update, I will add the cross project liaisons as reviewers so they can re-affirm the caveats14:22
fifieldtyay14:22
shamailor challenge them if things have changed14:22
fifieldtfeedback is excellent14:23
*** flip214 has quit IRC14:23
fifieldtok, so ... next?14:23
shamailI can ask him when I speak with him, I had done the last update since it was last touched in 7/201514:23
*** shaohe_feng has quit IRC14:23
*** galstrom_zzz is now known as galstrom14:23
*** claudiub has quit IRC14:23
fifieldtrighto14:23
*** rbowen has joined #openstack-meeting14:23
shamailone topic left: revisit tags discussed in Austin and build an action plan14:23
*** rbowen has quit IRC14:23
*** rbowen has joined #openstack-meeting14:23
fifieldt#topic Revisit tags discussed in Austin and build an action plan14:23
*** openstack changes topic to "Revisit tags discussed in Austin and build an action plan (Meeting topic: ops tags)"14:24
*** piet_ has quit IRC14:24
fifieldt#link https://etherpad.openstack.org/p/AUS-ops-Ops-tags14:24
*** shaohe_feng has joined #openstack-meeting14:24
shamailor at least determine which ones are still interesting now14:24
fifieldtthe distro status one was a good one14:24
shamailSo we had discussed a SDK tag, production-use, and distro status14:24
*** cardeois_ has joined #openstack-meeting14:24
shamailfifieldt: +1, we spent a good amount of time on it and had a good working plan14:24
fifieldtI suspect if we got the structure up for distro status, our distro friends would provide the data14:24
shamailTotally agree14:24
shamailI can bring it up at the product WG meeting with the product managers from the distros14:25
fifieldtyeah, sucking in some resources would be nice14:25
fifieldtneeds a bit of education though :)14:25
fifieldtup for that? :P14:25
shamailYep, this tag will be really useful once it gets in14:25
fifieldtsweet14:26
fifieldtwas the SDK tag a new tag, or just asking for something we can automate?14:26
shamailSDK tag is already there14:26
fifieldtya14:26
shamailbut there were a couple of things:14:26
*** numans has joined #openstack-meeting14:27
shamail1) Could we update it to include source links for SDK documentation (if it exists) similar to what we are considering for install guide14:27
maishskDid I hear my name?14:27
fifieldtwe miss you maishsk :)14:27
shamail2) The other thing we had discussed was trying to get the data source for SDKs in a public space so we can automate the tag creation in the future (right now, projects have to tell us or we have to use a google doc)14:28
*** cardeois has quit IRC14:28
shamailHi maishsk!14:28
fifieldtfor #1 it's a bit of a challenge. Take a look at the links at http://developer.openstack.org/ :)14:28
*** flip214 has joined #openstack-meeting14:28
fifieldt#2 yes, the AppEcoWG should totally do this for us :)14:28
*** raghu_ has joined #openstack-meeting14:28
shamailAgreed on #2!14:29
shamailI see what you mean with the links…14:29
raghu_hi14:29
*** nmagnezi has quit IRC14:29
shamailthere is no common documentation type (e.g. getting started, API doc, etc.)14:29
shamailhi raghu_14:29
fifieldtyeah14:29
shamailWe can skip this idea for now14:30
fifieldtok14:30
*** maishsk has quit IRC14:30
shamailmaybe revisit after we get help on #2 :)14:30
fifieldt+114:30
raghu_are any one having knowledge on heat template launching14:31
shamailThat’s pretty much all I had.14:31
fifieldtand me too14:31
fifieldtsince it's just us, perhaps we can close early :)14:31
shamailraghu_: Do you have a general question about using heat?  I would recommend the #openstack channel14:31
shamailSounds good fifieldt14:31
fifieldtalrighty then14:32
shamailI did want to comment on the AUC stuff before you leave14:32
fifieldt#endmeeting14:32
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"14:32
openstackMeeting ended Thu Jul 21 14:32:06 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)14:32
openstackMinutes:        http://eavesdrop.openstack.org/meetings/ops_tags/2016/ops_tags.2016-07-21-13.59.html14:32
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/ops_tags/2016/ops_tags.2016-07-21-13.59.txt14:32
shamailmessaging you14:32
openstackLog:            http://eavesdrop.openstack.org/meetings/ops_tags/2016/ops_tags.2016-07-21-13.59.log.html14:32
fifieldtmove that to PM, shamail ?14:32
*** maishsk has joined #openstack-meeting14:32
fifieldtcool14:32
raghu_while launching heat stack, am facing issue httplib error as badstatusline('')14:32
fifieldtraghu_, join #openstack14:32
fifieldtthis is a meeting channel :)14:32
raghu_ok sorry14:33
fifieldtnot a problem :)14:33
fifieldtgood luck!14:33
*** shaohe_feng has quit IRC14:33
raghu_thanks14:33
*** eezhova has quit IRC14:33
*** esker has joined #openstack-meeting14:34
*** shaohe_feng has joined #openstack-meeting14:34
*** flip214 has quit IRC14:34
*** tellesnobrega is now known as tellesnobrega_af14:34
*** sgundur1 has joined #openstack-meeting14:35
*** thorst_ has joined #openstack-meeting14:36
*** piet_ has joined #openstack-meeting14:36
*** tellesnobrega_af is now known as tellesnobrega14:38
*** dane_leblanc has joined #openstack-meeting14:38
*** fzdarsky is now known as fzdarsky|afk14:38
*** galstrom is now known as galstrom_zzz14:38
*** bvandenh has joined #openstack-meeting14:38
*** sindhude has quit IRC14:38
*** raghu_ has quit IRC14:39
*** rbowen has quit IRC14:40
*** fzdarsky|afk has quit IRC14:42
*** nkrinner is now known as nkrinner_afk14:42
*** galstrom_zzz is now known as galstrom14:42
*** lazy_prince has quit IRC14:43
*** shamail has left #openstack-meeting14:43
*** shaohe_feng has quit IRC14:43
*** cdelatte has joined #openstack-meeting14:44
*** shaohe_feng has joined #openstack-meeting14:44
*** lazy_prince has joined #openstack-meeting14:47
*** obondarev has quit IRC14:47
*** sindhude has joined #openstack-meeting14:48
*** gcb has joined #openstack-meeting14:51
*** anilvenkata has joined #openstack-meeting14:51
*** rrecio has joined #openstack-meeting14:52
*** amotoki has quit IRC14:52
*** rbowen has joined #openstack-meeting14:53
*** amotoki has joined #openstack-meeting14:53
*** fnaval has quit IRC14:53
*** mtanino has joined #openstack-meeting14:54
*** Ravikiran_K has quit IRC14:54
*** rrecio_ has joined #openstack-meeting14:54
*** shaohe_feng has quit IRC14:54
*** tellesnobrega is now known as tellesnobrega_af14:54
*** shaohe_feng has joined #openstack-meeting14:55
*** obondarev has joined #openstack-meeting14:55
*** Na3iL has quit IRC14:56
*** zhhuabj_ has quit IRC14:56
*** bswartz1 has joined #openstack-meeting14:56
*** cknight has joined #openstack-meeting14:57
*** ebalduf has quit IRC14:57
*** rrecio has quit IRC14:57
*** bswartz is now known as bswartz_14:57
*** bswartz1 has quit IRC14:57
*** bswartz has joined #openstack-meeting14:57
*** bvandenh has quit IRC14:57
*** amotoki has quit IRC14:58
*** zengyingzhe_ has joined #openstack-meeting14:58
*** zengyingzhe_ has left #openstack-meeting15:00
*** pece has joined #openstack-meeting15:01
*** e0ne has quit IRC15:01
*** d0ugal has quit IRC15:02
*** pcaruana has quit IRC15:02
*** maishsk has quit IRC15:03
*** akuznetsov has joined #openstack-meeting15:03
*** mickeys has joined #openstack-meeting15:03
*** iyamahat has joined #openstack-meeting15:04
*** shaohe_feng has quit IRC15:04
*** david-lyle has joined #openstack-meeting15:04
*** shaohe_feng has joined #openstack-meeting15:05
*** d0ugal has joined #openstack-meeting15:05
*** piet_ has quit IRC15:05
*** fnaval has joined #openstack-meeting15:05
*** maishsk has joined #openstack-meeting15:06
*** amotoki has joined #openstack-meeting15:07
*** thorst_ has quit IRC15:09
*** ebalduf has joined #openstack-meeting15:09
*** hemna has joined #openstack-meeting15:10
*** sdake has joined #openstack-meeting15:13
*** eharney has joined #openstack-meeting15:14
*** shaohe_feng has quit IRC15:14
*** shaohe_feng has joined #openstack-meeting15:15
*** salv-orlando has quit IRC15:16
*** iyamahat has quit IRC15:16
*** sdake_ has joined #openstack-meeting15:17
*** rrecio_ has quit IRC15:17
*** dfflanders has quit IRC15:17
*** thorst_ has joined #openstack-meeting15:18
*** sdake has quit IRC15:19
*** karthikp_ has joined #openstack-meeting15:20
*** asettle has quit IRC15:21
*** oshidoshi1 has quit IRC15:22
*** thorst_ has quit IRC15:23
*** aprice has joined #openstack-meeting15:23
*** obondarev has quit IRC15:24
*** shaohe_feng has quit IRC15:24
*** baoli has joined #openstack-meeting15:25
*** shaohe_feng has joined #openstack-meeting15:25
*** piet_ has joined #openstack-meeting15:28
*** unicell1 has joined #openstack-meeting15:29
*** akuznetsov has quit IRC15:30
*** unicell has quit IRC15:30
*** rrecio has joined #openstack-meeting15:30
*** piet_ has quit IRC15:30
*** baoli has quit IRC15:31
*** piet_ has joined #openstack-meeting15:31
*** andreas_s has quit IRC15:32
*** shaohe_feng has quit IRC15:35
*** shaohe_feng has joined #openstack-meeting15:35
*** galstrom is now known as galstrom_zzz15:36
*** iyamahat has joined #openstack-meeting15:36
*** Leom has quit IRC15:40
*** galstrom_zzz is now known as galstrom15:41
*** mikelk has quit IRC15:41
*** sshnaidm has quit IRC15:42
*** thorst_ has joined #openstack-meeting15:43
*** salv-orlando has joined #openstack-meeting15:43
*** mohnish__ has joined #openstack-meeting15:43
*** claudiub has joined #openstack-meeting15:44
*** dimtruck is now known as zz_dimtruck15:44
*** fnaval_ has joined #openstack-meeting15:45
*** shaohe_feng has quit IRC15:45
*** cschwede has quit IRC15:45
*** slagle has quit IRC15:45
*** marios has quit IRC15:45
*** shaohe_feng has joined #openstack-meeting15:46
*** flip214 has joined #openstack-meeting15:46
*** flip214 has quit IRC15:46
*** flip214 has joined #openstack-meeting15:46
*** slagle has joined #openstack-meeting15:47
*** marios has joined #openstack-meeting15:48
*** armax has joined #openstack-meeting15:48
*** fnaval has quit IRC15:48
*** cschwede has joined #openstack-meeting15:49
*** efried has joined #openstack-meeting15:49
*** penick has joined #openstack-meeting15:50
*** e0ne has joined #openstack-meeting15:50
*** woodster_ has joined #openstack-meeting15:53
*** yamahata has joined #openstack-meeting15:54
*** numans has quit IRC15:54
*** sridharg has quit IRC15:54
*** shaohe_feng has quit IRC15:55
*** yamamoto has quit IRC15:55
*** shaohe_feng has joined #openstack-meeting15:56
*** devananda has joined #openstack-meeting15:58
*** nmagnezi has joined #openstack-meeting15:59
*** comay_ has joined #openstack-meeting15:59
*** gcb has quit IRC16:01
*** huangtianhua has quit IRC16:01
*** jaypipes has joined #openstack-meeting16:02
*** mriedem has joined #openstack-meeting16:02
*** alyson_ has joined #openstack-meeting16:02
*** zhonghua has joined #openstack-meeting16:02
*** tiantian has joined #openstack-meeting16:02
*** asettle has joined #openstack-meeting16:03
*** cbouch has quit IRC16:03
*** dasanind has quit IRC16:03
*** Suyi_ has joined #openstack-meeting16:03
*** d0ugal has quit IRC16:04
*** zhonghua-lee has quit IRC16:04
*** liusheng has quit IRC16:04
*** liusheng has joined #openstack-meeting16:05
*** sdague has joined #openstack-meeting16:05
*** jlanoux has quit IRC16:05
*** shaohe_feng has quit IRC16:05
*** shaohe_feng has joined #openstack-meeting16:06
*** gaso84ne has joined #openstack-meeting16:07
*** galstrom is now known as galstrom_zzz16:08
*** fzdarsky|afk has joined #openstack-meeting16:09
*** aranjan has joined #openstack-meeting16:09
*** galstrom_zzz is now known as galstrom16:10
*** lamt has joined #openstack-meeting16:10
*** dasanind has joined #openstack-meeting16:11
*** sdague has quit IRC16:11
*** piet_ has quit IRC16:13
*** zhangshuai__ has quit IRC16:14
*** sdague has joined #openstack-meeting16:15
*** tesseract- has quit IRC16:15
*** shashank_hegde has joined #openstack-meeting16:15
*** shaohe_feng has quit IRC16:16
*** shaohe_feng has joined #openstack-meeting16:16
*** akuznetsov has joined #openstack-meeting16:17
*** sgundur1 has left #openstack-meeting16:18
*** rcernin has quit IRC16:19
*** cardeois_ is now known as cardeois16:21
*** dasanind_ has joined #openstack-meeting16:21
*** dasanind has quit IRC16:21
*** bknudson_ is now known as bknudson16:22
*** rajinir has joined #openstack-meeting16:22
*** leeantho has joined #openstack-meeting16:23
*** ayoung has joined #openstack-meeting16:24
*** ayoung has quit IRC16:25
*** ayoung has joined #openstack-meeting16:25
*** emagana has quit IRC16:25
*** shaohe_feng has quit IRC16:26
*** akuznetsov has quit IRC16:26
*** shaohe_feng has joined #openstack-meeting16:26
*** dasanind has joined #openstack-meeting16:27
*** zhangshuai has joined #openstack-meeting16:27
*** dasanind_ has quit IRC16:27
*** julim has quit IRC16:28
*** derekjhyang has joined #openstack-meeting16:29
*** emagana has joined #openstack-meeting16:29
*** aranjan has quit IRC16:29
*** Leo_ has joined #openstack-meeting16:30
*** tellesnobrega_af is now known as tellesnobrega16:33
*** dasanind has quit IRC16:33
*** emagana has quit IRC16:33
*** emagana has joined #openstack-meeting16:35
*** shaohe_feng has quit IRC16:36
*** shashank_hegde has quit IRC16:37
*** shaohe_feng has joined #openstack-meeting16:37
*** bobh has joined #openstack-meeting16:39
*** emagana has quit IRC16:41
*** david-lyle has quit IRC16:41
*** acoles is now known as acoles_16:42
*** hashar has quit IRC16:42
*** lezbar has quit IRC16:42
*** amotoki has quit IRC16:42
*** d0ugal has joined #openstack-meeting16:44
*** shashank_hegde has joined #openstack-meeting16:46
*** Suyi_ has quit IRC16:46
*** sdake_ has quit IRC16:46
*** bill_az_ has quit IRC16:46
*** shaohe_feng has quit IRC16:46
*** piet_ has joined #openstack-meeting16:47
*** shaohe_feng has joined #openstack-meeting16:47
*** HeOS has quit IRC16:47
*** vishwanathj has quit IRC16:47
*** sdake has joined #openstack-meeting16:49
*** oomichi_ has joined #openstack-meeting16:51
*** aprice has quit IRC16:51
*** aranjan has joined #openstack-meeting16:52
*** Apoorva has joined #openstack-meeting16:53
*** sskripnick has left #openstack-meeting16:53
*** enriquetaso has joined #openstack-meeting16:53
*** dmorita has joined #openstack-meeting16:54
*** corey_ has joined #openstack-meeting16:55
*** yamamoto has joined #openstack-meeting16:56
*** shaohe_feng has quit IRC16:57
*** unicell has joined #openstack-meeting16:57
*** cleong has quit IRC16:57
*** shaohe_feng has joined #openstack-meeting16:57
*** yamahata has quit IRC16:58
*** yamahata has joined #openstack-meeting16:58
*** unicell1 has quit IRC16:58
*** ygbo has quit IRC16:59
*** comay has quit IRC16:59
*** comay_ is now known as comay17:00
oomichi_#startmeeting qa17:00
openstackMeeting started Thu Jul 21 17:00:23 2016 UTC and is due to finish in 60 minutes.  The chair is oomichi_. Information about MeetBot at http://wiki.debian.org/MeetBot.17:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.17:00
*** openstack changes topic to " (Meeting topic: qa)"17:00
openstackThe meeting name has been set to 'qa'17:00
oomichi_hi, - who's here today?17:00
jlwhiteHi I'm here17:01
oomichi_jlwhite: hi17:01
*** yamamoto has quit IRC17:01
jlwhiteI don't want to go out of order17:01
jlwhitebut I wanted to get eyes on my change https://review.openstack.org/#/c/341083/, thanks for checking it out17:02
jlwhiteoomichi_17:02
oomichi_jlwhite: I reviewed it 5 mins before :)17:02
oomichi_jlwhite: that seems good direction for me17:02
jlwhite:) yep I saw!17:03
*** piet_ has quit IRC17:03
jlwhiteI will respond on there17:03
oomichi_jlwhite: thanks17:03
hogepodgeo/17:03
jlwhiteThere are more working items it effects about 12 test17:03
oomichi_ok, let's start te meeting17:03
jlwhitecool17:04
*** ericksonsantos has joined #openstack-meeting17:04
oomichi_#link  https://wiki.openstack.org/w/index.php?title=Meetings/QATeamMeeting#Agenda_for_July_21th_2016_.281700_UTC.2917:04
oomichi_^^^ is today agenda17:04
*** mohankumar__ has joined #openstack-meeting17:04
oomichi_#topic Newton priorities17:05
*** openstack changes topic to "Newton priorities (Meeting topic: qa)"17:05
oomichi_#link https://etherpad.openstack.org/p/newton-qa-newton-priorities17:05
oomichi_We are working based on this priorities and that seems good progress17:06
jlwhiteyes, luzc and I have started on the one for validation resources as mentioned above17:06
oomichi_jlwhite: yeah, that is important one17:07
oomichi_it would make debug easy more17:07
*** shaohe_feng has quit IRC17:07
jlwhiteoomichi_ I agree, I wanted to make everything explicit17:07
jlwhiteIn the test module17:07
*** nmagnezi has left #openstack-meeting17:07
oomichi_jlwhite: how many patches we need for that ?17:07
*** shaohe_feng has joined #openstack-meeting17:07
oomichi_jlwhite: I guess we need many patches for finishing that17:08
jlwhiteoomichi_ it affects about 12 test17:08
jlwhiteoomichi_ yep17:08
oomichi_jlwhite: umm, ok. I'd like to keep my eyes on that17:08
jlwhiteoomichi_ so I think I will have to submit the all in one over many adjustments17:09
jlwhiteoomichi_ if I make the change all the test that rely on resource validation will faile17:09
jlwhite*fail17:09
jlwhiteoomichi_ or is there another way?17:09
*** matthewbodkin has quit IRC17:09
oomichi_jlwhite: now we don't have branch topic  for this work, and it is a little hard to find patches on gerrit17:09
*** eric_lopez has quit IRC17:10
*** asettle has quit IRC17:10
*** Suyi_ has joined #openstack-meeting17:10
jlwhiteoomichi_ should I make an adjustment to the Topic?17:10
*** cody-somerville has quit IRC17:10
*** sgundur1 has joined #openstack-meeting17:11
oomichi_jlwhite: it would be nice to do that17:11
*** cody-somerville has joined #openstack-meeting17:11
jlwhiteoomichi_ on it :), "Validation Resources'?17:11
oomichi_jlwhite: it is nice to add more patches on https://review.openstack.org/#/q/topic:valResources17:11
oomichi_jlwhite: as the same topic later17:12
oomichi_jlwhite: one single huge patch is hard  to be reviewed ;)17:12
jlwhiteoomichi_ got it :) true because then it would be tough for people17:12
*** gaso84ne has quit IRC17:13
jlwhiteoomichi_ I will keep the topic and make multiple patches as suggested17:13
oomichi_jlwhite: yeah, thanks in advance17:13
*** aranjan has quit IRC17:13
luzC@oomichi_ right now there is only one patch to review the flow/ and the refactor (for test class, base classes and the other test modules17:13
jlwhiteoomichi_ thanks! no problem at all17:13
oomichi_luzC: ok, thanks for the info. I am looking forward to seeing more17:14
luzCcool17:14
luzC:)17:14
oomichi_do we have more topic about newton priorities?17:14
*** shashank_hegde has quit IRC17:14
oomichi_ok, next topic17:14
oomichi_#topic Specs Reviews17:15
*** openstack changes topic to "Specs Reviews (Meeting topic: qa)"17:15
oomichi_#link https://review.openstack.org/#/q/status:open+project:openstack/qa-specs,n,z17:15
oomichi_#link https://review.openstack.org/#/q/project:openstack/qa-specs+status:open17:15
oomichi_we have 4 specs now17:15
*** baoli has joined #openstack-meeting17:16
oomichi_all patches are red now17:16
oomichi_I need to update the first one related to resource17:16
oomichi_I forgot to do that because of different owner, sorry17:17
*** s3wong has joined #openstack-meeting17:17
oomichi_I guess we don't have enough topic about this now17:17
*** shaohe_feng has quit IRC17:17
oomichi_or do we have?17:17
*** sgundur1 has left #openstack-meeting17:18
oomichi_ok, let's move on17:18
*** shaohe_feng has joined #openstack-meeting17:18
oomichi_#topic Tempest17:18
*** openstack changes topic to "Tempest (Meeting topic: qa)"17:18
oomichi_#link https://review.openstack.org/#/q/project:openstack/tempest+status:open17:18
oomichi_^^^ now we still have many patches for tempest17:18
oomichi_and I will review them after the meeting17:19
oomichi_do we have any patches we need to discuss here?17:19
luzCI don't think so, I'll review some of them too17:20
jlwhiteyes, me as well17:20
oomichi_luzC: cool, thanks17:20
oomichi_jlwhite: thank you too :)17:21
oomichi_ok, let's move on17:21
oomichi_#topic devstack + grenade17:21
*** openstack changes topic to "devstack + grenade (Meeting topic: qa)"17:21
*** baoli_ has joined #openstack-meeting17:22
oomichi_I don't have enough topic about these also this week17:22
oomichi_anyone have about them?17:22
jlwhitenone on my end17:22
oomichi_ok, next topic17:23
oomichi_#topic  openstack-health17:23
*** openstack changes topic to "openstack-health (Meeting topic: qa)"17:23
oomichi_active developers are off on this meeting17:24
*** anilvenkata has quit IRC17:24
oomichi_and this also I don't have enough items :-(17:24
*** baoli has quit IRC17:25
*** numans has joined #openstack-meeting17:25
oomichi_let's more on17:25
*** zul has quit IRC17:25
oomichi_#topic Critical Reviews17:25
*** openstack changes topic to "Critical Reviews (Meeting topic: qa)"17:25
oomichi_#link https://review.openstack.org/#/c/341083/17:25
*** galstrom is now known as galstrom_zzz17:25
oomichi_jlwhite: we had converstation already in this meeting :)17:26
jlwhiteoomichi_ yep :)17:26
*** zul has joined #openstack-meeting17:26
oomichi_jlwhite: we need to do more?17:26
jlwhiteoomichi_ as long as the flow is on the right path I am good to move forward17:26
*** galstrom_zzz is now known as galstrom17:26
jlwhiteoomichi_ so I will monitor gerrit for reviews and make adjustements17:27
oomichi_jlwhite: cool, I will check patches in the future after posting17:27
oomichi_jlwhite: that would be great to help us17:27
jlwhiteoomichi_ thanks!17:27
*** shaohe_feng has quit IRC17:27
*** ljxiash has quit IRC17:28
*** bill_az_ has joined #openstack-meeting17:28
*** sindhude has quit IRC17:28
oomichi_I have one patch I want to pick up: https://review.openstack.org/#/c/344827/17:28
oomichi_that is good to test a new microversion of nova17:28
*** obondarev has joined #openstack-meeting17:28
*** shaohe_feng has joined #openstack-meeting17:28
oomichi_more reviews are nice to move forward17:29
jlwhitecool, will put eyes on it17:29
jlwhiteoomichi_17:29
oomichi_are there more patches to be need to review soon?17:29
oomichi_jlwhite: thanks again17:29
oomichi_ok, the final topic17:30
*** ihrachys has quit IRC17:30
oomichi_#topic Open Discussion17:30
*** openstack changes topic to "Open Discussion (Meeting topic: qa)"17:30
oomichi_are there open topic here?17:31
*** toscalix has quit IRC17:32
oomichi_oh, I have one17:32
*** syjulian has joined #openstack-meeting17:32
*** aprice has joined #openstack-meeting17:32
oomichi_just reminder: we have the code sprint in this development cycle in Germany17:32
oomichi_Please register on https://wiki.openstack.org/wiki/Sprints/QAInfraNewtonSprint if interested in joining :)17:33
jlwhiteWhen is it again oomichi_?17:33
jlwhiteoh thanks17:33
oomichi_most people love to go to Germany based on the experience of the first QA/Infra meetup17:34
*** julim has joined #openstack-meeting17:34
oomichi_do we have more items here?17:35
oomichi_or nice to review patches :)17:35
*** electrofelix has quit IRC17:35
oomichi_by finishing the meeting earlier17:35
*** tiantian has quit IRC17:36
oomichi_ok, let's finish the meeting17:36
oomichi_#endmeeting17:36
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"17:36
openstackMeeting ended Thu Jul 21 17:36:16 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)17:36
openstackMinutes:        http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-07-21-17.00.html17:36
oomichi_thanks all17:36
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-07-21-17.00.txt17:36
openstackLog:            http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-07-21-17.00.log.html17:36
jlwhiteThanks! oomichi_17:36
*** tiantian has joined #openstack-meeting17:37
*** amitgandhinz has quit IRC17:38
*** shaohe_feng has quit IRC17:38
*** shaohe_feng has joined #openstack-meeting17:38
*** amitgandhinz has joined #openstack-meeting17:39
*** maishsk has quit IRC17:39
*** zz_dimtruck is now known as dimtruck17:43
*** harlowja has joined #openstack-meeting17:44
*** fzdarsky|afk has quit IRC17:44
*** spzala has quit IRC17:44
*** shashank_hegde has joined #openstack-meeting17:44
*** spzala has joined #openstack-meeting17:45
*** ericksonsantos has quit IRC17:45
*** ebalduf has quit IRC17:45
*** clenimar has quit IRC17:45
*** asettle has joined #openstack-meeting17:47
*** shaohe_feng has quit IRC17:48
*** shaohe_feng has joined #openstack-meeting17:48
*** spzala has quit IRC17:49
*** padkrish has joined #openstack-meeting17:49
*** Leo_ has quit IRC17:50
*** elo has joined #openstack-meeting17:51
*** asettle has quit IRC17:51
*** elo has quit IRC17:52
*** asettle has joined #openstack-meeting17:52
*** hemna has quit IRC17:52
*** elo has joined #openstack-meeting17:54
*** obondarev has quit IRC17:55
*** maishsk has joined #openstack-meeting17:55
*** elo has quit IRC17:56
*** lpetrut has quit IRC17:57
*** galstrom is now known as galstrom_zzz17:57
*** Patifa has joined #openstack-meeting17:57
*** ekcs has joined #openstack-meeting17:57
*** karthikp_ has quit IRC17:58
*** galstrom_zzz is now known as galstrom17:58
*** shaohe_feng has quit IRC17:58
*** bswartz has quit IRC17:58
*** shaohe_feng has joined #openstack-meeting17:59
*** spzala has joined #openstack-meeting17:59
*** cknight has quit IRC17:59
*** Apoorva_ has joined #openstack-meeting17:59
*** SumitNaiksatam has joined #openstack-meeting18:00
*** csomerville has joined #openstack-meeting18:01
*** julim_ has joined #openstack-meeting18:01
*** oomichi_ has quit IRC18:01
*** Apoorva has quit IRC18:02
*** baoli_ has quit IRC18:03
*** cody-somerville has quit IRC18:04
*** david-lyle has joined #openstack-meeting18:04
*** julim has quit IRC18:04
*** david-lyle_ has joined #openstack-meeting18:05
*** david-lyle has quit IRC18:05
*** hashar has joined #openstack-meeting18:06
*** shaohe_feng has quit IRC18:08
*** padkrish has quit IRC18:09
*** obondarev has joined #openstack-meeting18:09
*** sindhude has joined #openstack-meeting18:09
*** iyamahat has quit IRC18:10
*** efried has quit IRC18:10
*** dasanind has joined #openstack-meeting18:10
*** shaohe_feng has joined #openstack-meeting18:11
*** yamahata has quit IRC18:11
*** liamji has quit IRC18:12
*** clenimar has joined #openstack-meeting18:12
*** ericksonsantos has joined #openstack-meeting18:12
*** asettle has quit IRC18:14
*** efried has joined #openstack-meeting18:14
*** xinwu has joined #openstack-meeting18:14
*** akuznetsov has joined #openstack-meeting18:14
*** akuznetsov has quit IRC18:14
*** anilvenkata has joined #openstack-meeting18:15
*** padkrish has joined #openstack-meeting18:16
*** anilvenkata has quit IRC18:16
*** lpetrut has joined #openstack-meeting18:18
*** ajmiller has quit IRC18:18
*** ajmiller has joined #openstack-meeting18:18
*** shaohe_feng has quit IRC18:19
*** shaohe_feng has joined #openstack-meeting18:19
*** amitgandhinz has quit IRC18:19
*** amitgandhinz has joined #openstack-meeting18:20
*** david-lyle_ has quit IRC18:22
*** Sukhdev has joined #openstack-meeting18:22
*** ericksonsantos has quit IRC18:22
*** alyson_ has quit IRC18:23
*** ericksonsantos has joined #openstack-meeting18:23
*** zul_ has joined #openstack-meeting18:24
*** numans has quit IRC18:25
*** lpetrut has quit IRC18:27
*** salv-orlando has quit IRC18:28
*** zul has quit IRC18:29
*** shaohe_feng has quit IRC18:29
*** salv-orlando has joined #openstack-meeting18:30
*** ihrachys has joined #openstack-meeting18:31
*** shaohe_feng has joined #openstack-meeting18:32
*** salv-orlando has quit IRC18:34
*** pvaneck has joined #openstack-meeting18:35
*** harlowja has quit IRC18:35
*** IanGovett has joined #openstack-meeting18:36
*** SumitNaiksatam has quit IRC18:37
*** harlowja has joined #openstack-meeting18:38
*** maishsk has quit IRC18:38
*** shaohe_feng has quit IRC18:39
*** shaohe_feng has joined #openstack-meeting18:40
*** maishsk has joined #openstack-meeting18:40
*** garthb has joined #openstack-meeting18:40
*** iyamahat has joined #openstack-meeting18:42
*** maishsk has quit IRC18:42
*** maishsk has joined #openstack-meeting18:43
*** lpetrut has joined #openstack-meeting18:46
*** mickeys has quit IRC18:49
*** shaohe_feng has quit IRC18:49
*** shaohe_feng has joined #openstack-meeting18:50
*** ihrachys has quit IRC18:51
*** ihrachys has joined #openstack-meeting18:51
*** derekjhyang has quit IRC18:52
*** markvoelker has quit IRC18:53
*** xinwu has quit IRC18:54
*** spzala has quit IRC18:58
*** MeganR has joined #openstack-meeting18:58
*** harlowja has quit IRC18:59
*** shaohe_feng has quit IRC19:00
*** bobh has quit IRC19:00
*** shaohe_feng has joined #openstack-meeting19:00
*** spzala has joined #openstack-meeting19:00
*** persia has quit IRC19:01
*** persia_ has quit IRC19:01
*** yamahata has joined #openstack-meeting19:02
dtroyerOSC Meeting?19:02
dtroyercourtesy ping: dhellmann, rthies, stevemar, terrylhowe, dstanek, MeganR, rtheis, DuncanT, sheel, jgregor, baumann19:03
*** banix has joined #openstack-meeting19:04
rtheisdtroyer: I'm here but distracted by some other work19:04
*** spzala has quit IRC19:05
dtroyerrtheis: welcome back, hope you had a good vacation19:05
rtheisdtroyer: I did.  Thank you.19:05
*** Leo_ has joined #openstack-meeting19:06
*** sdague_ has joined #openstack-meeting19:06
*** banix has quit IRC19:07
dtroyerwith Keystone midcycle going it might be light here… a few more minutes then we'll call it if nobody else shows19:07
*** pshige______ has quit IRC19:07
*** fifieldt has quit IRC19:07
rtheisok19:07
*** sdague has quit IRC19:08
*** shaohe_feng has quit IRC19:10
dtroyerok, no meeting today… see y'all next wee at the early time, or in -sdks19:10
dtroyerthanks19:11
*** shaohe_feng has joined #openstack-meeting19:11
*** ajmiller has quit IRC19:11
*** ajmiller has joined #openstack-meeting19:11
*** Apoorva_ has quit IRC19:11
*** dfflanders has joined #openstack-meeting19:11
rtheissounds good19:11
*** Apoorva has joined #openstack-meeting19:12
*** claudiub has quit IRC19:12
*** r-mibu has quit IRC19:13
*** r-mibu has joined #openstack-meeting19:13
*** ihrachys has quit IRC19:14
*** galstrom is now known as galstrom_zzz19:15
*** ihrachys has joined #openstack-meeting19:16
*** aprice has quit IRC19:17
*** fifieldt has joined #openstack-meeting19:19
*** aprice has joined #openstack-meeting19:19
*** shaohe_feng has quit IRC19:20
*** baoli has joined #openstack-meeting19:20
*** galstrom_zzz is now known as galstrom19:21
*** shaohe_feng has joined #openstack-meeting19:21
*** esberglu has joined #openstack-meeting19:22
*** pshige______ has joined #openstack-meeting19:22
*** baoli has quit IRC19:22
*** IanGovett has quit IRC19:22
*** asettle has joined #openstack-meeting19:22
*** baoli has joined #openstack-meeting19:22
*** ajmiller has quit IRC19:22
*** ajmiller has joined #openstack-meeting19:23
*** asettle has quit IRC19:27
*** ihrachys has quit IRC19:27
*** emagana has joined #openstack-meeting19:28
*** akuznetsov has joined #openstack-meeting19:28
*** zhhuabj has joined #openstack-meeting19:29
*** spzala has joined #openstack-meeting19:30
*** beagles is now known as beagles_biab19:30
*** shaohe_feng has quit IRC19:30
*** shaohe_feng has joined #openstack-meeting19:31
*** bill_az_ has quit IRC19:31
*** ihrachys has joined #openstack-meeting19:33
*** mriedem has quit IRC19:34
*** cknight has joined #openstack-meeting19:35
*** singhj has joined #openstack-meeting19:35
*** karthikp_ has joined #openstack-meeting19:35
*** bswartz has joined #openstack-meeting19:35
*** aranjan has joined #openstack-meeting19:37
*** vishwanathj has joined #openstack-meeting19:37
*** cknight1 has joined #openstack-meeting19:39
*** sdake_ has joined #openstack-meeting19:39
*** karthikp_ has quit IRC19:39
*** sdake has quit IRC19:40
*** shaohe_feng has quit IRC19:41
*** shaohe_feng has joined #openstack-meeting19:41
*** cknight has quit IRC19:41
*** aranjan has quit IRC19:45
*** aranjan_ has joined #openstack-meeting19:45
*** aranjan_ has quit IRC19:45
*** aranjan has joined #openstack-meeting19:46
*** MeganR has quit IRC19:49
*** claudiub has joined #openstack-meeting19:49
*** ihrachys has quit IRC19:50
*** baoli has quit IRC19:50
*** shaohe_feng has quit IRC19:51
*** mickeys has joined #openstack-meeting19:53
*** uxdanielle has quit IRC19:54
*** flwang1 has quit IRC19:55
*** shaohe_feng has joined #openstack-meeting19:56
*** ociuhandu has quit IRC19:56
*** shashank_hegde has quit IRC19:57
*** singhj has quit IRC19:57
*** akuznetsov has quit IRC19:57
*** asettle has joined #openstack-meeting19:58
*** asettle has quit IRC19:58
*** emagana has quit IRC19:58
*** ijw has quit IRC20:00
stevemardtroyer: yep20:01
greghaynescinerama: ianw Lets see how many of us are here, I don't think theres harm in a quick meet if folks are around20:01
*** mickeys has quit IRC20:01
*** shaohe_feng has quit IRC20:01
*** mickeys has joined #openstack-meeting20:02
*** shaohe_feng has joined #openstack-meeting20:02
*** shashank_hegde has joined #openstack-meeting20:02
ianw#startmeeting diskimage-builder20:03
openstackMeeting started Thu Jul 21 20:03:19 2016 UTC and is due to finish in 60 minutes.  The chair is ianw. Information about MeetBot at http://wiki.debian.org/MeetBot.20:03
*** ijw_ has joined #openstack-meeting20:03
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.20:03
*** openstack changes topic to " (Meeting topic: diskimage-builder)"20:03
openstackThe meeting name has been set to 'diskimage_builder'20:03
greghaynesMaybe a good first agenda item is - what would we like to see in our agendas? :)20:03
*** jprovazn has quit IRC20:04
*** IanGovett has joined #openstack-meeting20:04
anteayaianw: you can add the meeting chairs with #chair greghaynes cinerama20:04
ianw#chair greghaynes cinerama20:04
openstackCurrent chairs: cinerama greghaynes ianw20:04
ianwso i guess word isn't quite out about the meeting yet, that's fine20:05
*** singhj has joined #openstack-meeting20:05
ianwthere was some confusion if it was weekly or bi-weekly, personally i think probably bi-weekly is fine20:05
*** hemna has joined #openstack-meeting20:05
greghaynesbi-weekly works for me20:05
ianwnot sure we have *that* much to talk about :)20:05
greghaynesalthough lets shoot for one next week20:05
ianwsure20:06
*** AmitGalitz has joined #openstack-meeting20:06
ianw#agreed do this for real next week20:06
greghaynes#agreed meetings are bi-weekly20:06
greghayneswow voting is efficient with two people20:06
*** mickeys has quit IRC20:06
greghaynesIt looks like the meeting wiki page isn't created yet20:07
*** lblanchard has quit IRC20:07
*** aranjan has quit IRC20:07
*** ijw_ has quit IRC20:07
*** bill_az_ has joined #openstack-meeting20:07
*** emagana has joined #openstack-meeting20:07
ianwi guess the agenda is mostly just pushing on those reviews that are hard to merge20:07
*** aranjan has joined #openstack-meeting20:08
greghaynesYea, I'd like to have some time for folks to call out things that may need attention in reviews - whether it is 'please let me move forward on this patch', or theres some disagreement we need some talk about20:08
*** megm has quit IRC20:08
greghaynesbecause ive seen a few sides of it - proposers feeling like they cant get any traction and us going back and forward on what we think about a design20:09
ianwi was wondering if maybe we should cut a 2.0 branch for a few things out there that are big changes20:09
*** singhj has quit IRC20:10
ianwbut, in a way, that feels a bit like admitting defeat that we can't merge stuff20:10
greghaynes#agreed one agenda item should allow us to talk about things that may be currently going on in our review queue20:10
ianwwe merge with less care into the branch probably, but it just comes back to bite you later20:10
greghaynesI kind of want us to tag a handful of things we want out of a 2.020:10
greghaynesand then knock it out at once20:11
*** megm has joined #openstack-meeting20:11
*** AmitGalitz has quit IRC20:11
greghayneswhich I think is what youre proposing20:11
*** gaso84ne has joined #openstack-meeting20:11
greghaynesbranching now seems a bit scary though - I think we really want to minimize the time where you can have the two sets of code drift20:11
*** emagana has quit IRC20:11
*** shaohe_feng has quit IRC20:11
*** merooney has quit IRC20:12
*** jckasper has quit IRC20:12
*** shaohe_feng has joined #openstack-meeting20:12
*** jckasper has joined #openstack-meeting20:12
ianwfor mine that list would be:20:12
ianw -20:12
*** karthikp_ has joined #openstack-meeting20:12
ianw ... umm, hang on, getting reviews :)20:12
greghaynesSo, the biggest thing I want to avoid with a 2.0 is cutting it and then very quickly afterwards wanting to do a 3.020:13
*** jckasper has quit IRC20:13
greghaynesso I think its worth taking a bit of time upfront to get some confidence in the exact featureset we want our of a 2.0, then trying to stick with it20:13
*** jckasper has joined #openstack-meeting20:13
greghaynesand yea, just getting a list of features is the thing to do20:14
ianw - https://review.openstack.org/319591 - local loop image build rewrite by andreas.  i feel like that's probably ready to go, i think we can interate on that20:14
*** jckasper has quit IRC20:14
greghaynesI'd need a bit to remember what all I want20:14
greghayneshrm, is that going to break backwards compat?20:14
*** salv-orlando has joined #openstack-meeting20:14
greghaynesI thought it didnt need to20:14
ianw - https://review.openstack.org/#/c/335308/ - my stack below this that clears up what happens with duplicate images20:15
*** amitgandhinz has quit IRC20:16
*** gaso84ne has quit IRC20:16
*** Apoorva has quit IRC20:16
ianw - the specs dir stuff20:16
ianw(can probably just do that now)20:16
*** amitgandhinz has joined #openstack-meeting20:16
greghaynesMaybe the thing to do here is to make a spec or some kind of document outlining what all reviews / backwards compat changes were hoping to have happen in a 2.0?20:16
*** mohnish__ has quit IRC20:17
greghaynesI have a really hard time remembering all of these...20:17
*** DaveJ__ has joined #openstack-meeting20:17
ianwwhat was the compat issue with 319591 ?20:17
*** ekcs has left #openstack-meeting20:18
greghaynesits pretty exclusive to our current user-pluggable block-device.d phase AIUI20:19
ianw - https://review.openstack.org/#/c/344532/ - my latest stack about moving disk-image-builder into an entry point, which is really about making dib a "real" (or realer) python package20:19
*** singhj has joined #openstack-meeting20:19
greghaynesI don't think that had any compat issues?20:20
greghaynesthere was the minor rename deal but I thought you fixed it20:20
*** dfflanders has quit IRC20:21
greghaynesYea, so I definitely need some time to re-read a bunch of these reviews with a 2.0 in mind20:21
ianwthere is a big rename in 344017 moving top-level elements to diskimage_builder/elements , i feel like it's motivated pretty well in the change description20:21
greghaynesare you up for doing a spec that just lists them off then we have a place to comment?20:21
greghaynesand potentially add other features and whatnot20:21
ianwsure, how about an etherpad and we can just sync on that20:21
greghaynesthat works20:22
*** shaohe_feng has quit IRC20:22
ianw#action ianw to do 2.0 etherpad page20:22
*** shaohe_feng has joined #openstack-meeting20:22
ianwi've been meaning to catch lifeless and double check about data_files and their behaviour under "pip -e"20:23
*** singhj has quit IRC20:23
greghaynesI think it just symlinks?20:23
greghaynesor something like that20:23
greghaynesOne other meeting question I have is how to do the whole 'office hours' thing20:24
*** singhj has joined #openstack-meeting20:24
*** cdelatte has quit IRC20:24
greghaynesitd be nice to ask folks to add an item to the agenda, but theres a sort of chicken and the egg where that probably wouldnt happen without being explicitly asked to at a meeting20:25
ianwre: data_files ... it doesn't symlink.  so basically you don't know where data_files is.  whereas you *do* know where diskimage_builder/* is (i.e. __file__ , but there's a pkg_resources interface too)20:25
*** Apoorva has joined #openstack-meeting20:25
*** aprice has quit IRC20:25
ianwas in when people are awake?20:25
*** corey_ has quit IRC20:26
greghaynesIm thinking that as a dib user how would you know that we'd like you do add an agenda item about a potential issue20:26
greghaynesso I kind of think just having a weekly open discussion at the end of our meeting would be good and say that is a good time for users to show up and get help / some info20:26
greghaynesre: data_files - sounds like you might just need to do the trick where you have an entrypoint that prints out __file__ or somesuch20:27
ianwoh ... right, yeah that's fine.20:27
greghaynes#agreed lets have an open discussion at meeting end which is also for users to get info / help20:27
greghaynesto totally change topic - I have a pretty odd idea I've been playing around with and i'm not sure if it should live in dib20:29
ianwyeah, that's the idea of 344017.  move the elements to diskimage_builder/elements , and then the elements are always relative to __file__.  i've added diskimage_builder.paths with a little helper to do what you say -- print out the element path for disk-image-create to use20:29
*** agireud has quit IRC20:30
greghaynesone issue a lot of projects have is theres not a good way to add 'dib entrypoints'. So say I am octavia, I have a set of elements and potentially more than one kind of image you can build. as a user I dont want to have to know I need to run CONFIG=foo disk-image-create <repo>/element1 <repo>/element2 ...20:30
greghaynesI really want to run disk-image-create octavia-repo some_image_name and let octavia supply some sane defaults20:30
greghaynesand same for other projects20:30
greghaynesso ive been playing with making a diskimages.yaml file that dib can read and can live in these repos and point to relative element paths20:31
*** agireud has joined #openstack-meeting20:31
*** shaohe_feng has quit IRC20:32
greghayneskind of trying to figure out if thats a thing dib should do or whether that should be a dib runner20:32
*** shaohe_feng has joined #openstack-meeting20:32
greghaynessince the config is basically nodepool's diskimages: section20:32
ianwi think that probably sounds ok, basically a config file rather than command line args20:32
greghaynesyea20:32
*** mohankumar__ has quit IRC20:33
ianwthis is really what i think 344532 is good for20:33
ianwby making disk-image-create be a python function that calls the shell script in the background, you could do that runner idea right there20:33
greghaynesyep. So when playing with this I have a thing that builds images and tracks them asynchronously20:34
greghaynesin a simlar fashion20:34
* cinerama is here20:34
greghaynesso yea, maybe ill copy some of that code in to a dib review20:34
greghaynescinerama: ohai20:35
ianwo/20:35
cineramaianw: is this time at least sort-of tolerable?20:35
ianwwhat do you mean tracks them asynchronously?20:35
greghaynesianw: basically it lets you run an image build then returns, and lets you ask for status on currently running builds20:35
*** ItSANgo has quit IRC20:35
*** persia has joined #openstack-meeting20:35
ianwcinerama: yeah, it's 6am in sydney, which is fine20:35
*** persia_ has joined #openstack-meeting20:35
greghaynesit was just me messing around mostly20:35
greghaynesbut it ends up being nice for a 'what images do I have, what are their statuses'20:36
ianwahh.  yeah i guess that sounds like nodepool-builder :)20:36
greghaynesyep20:36
cinerama(backscrolling) i want to get block device patch series + the svc-map stuff in for a new major release20:36
*** ijw has joined #openstack-meeting20:37
greghaynesseems like a lot of projects have a use case for something very similar - a lot of folks need to make some images in CI / during deploy then upload them to a cloud. Doing that by having a long shell command is not as nice as having a config file supplied by the project where you just override some defaults20:37
*** IanGovett has quit IRC20:37
ianwcinerama: ok, today i'll create an etherpad and we can group specific reviews to focus on20:38
greghaynescinerama: Ya, It seems like were about due for a major release20:38
greghaynesoh, I remember now, I want to change root.d semantics20:39
greghaynesas part of a major bump20:39
*** harlowja has joined #openstack-meeting20:39
greghaynesI can write up in more detail, but basically I was playing with making image builds cache better and the sane thing IMO is to make it so root.d can be cached as a whole20:39
greghaynesbut thats sort of a big interface change so itd need a major bump20:40
greghayneshttps://review.openstack.org/#/c/339730/3 shows why, basically20:41
greghaynestheres no sane way to add extra stuff in to the root.d cache other than to cram all sorts of logic in to the single script that untar's the rootfs unless dib gets smarts about caching the whole phase20:41
*** ijw has quit IRC20:41
ianwhmm, fair enough.  the yum-minimal root.d caching is pretty bad too20:42
*** shaohe_feng has quit IRC20:42
ianwanother thing on my list to look at20:42
greghaynesYea, I have some thoughts on how we can actually be pretty smart about caching if we do this - it should work across elements and all20:43
* greghaynes will await etherpad20:43
ianwso if you can cover both, and i can get rid of the tar create stuff in there, all the better20:43
*** shaohe_feng has joined #openstack-meeting20:43
*** dprince has quit IRC20:44
ianwthe other thing i'd like to do is get the nodepool-dsvm test running.  it doesn't build much but it will give us some confidence that we won't have too many issues there20:44
greghaynesto get a boot test?20:44
ianwyep20:44
greghaynesso, I have https://review.openstack.org/#/c/204639/ I need to revive20:45
greghaynesbut first I wanted to get https://review.openstack.org/#/c/181162/ in20:45
*** karthikp_ has quit IRC20:45
*** karthikp_ has joined #openstack-meeting20:46
ianwok, the minimal test should be cool, will review20:46
*** ItSANgo has joined #openstack-meeting20:46
greghaynes:)20:46
*** jckasper has joined #openstack-meeting20:46
greghaynesok, I don't really have anything else to mention, we should try and work up an agenda for next week though based on notes + other chat20:47
cineramai had one other thing20:47
* greghaynes awaits20:47
cineramawrt communication - should we standardize on (say) hanging out in #tripleo for questions, user comments, etc?20:47
cineramai feel like people would like to be able to find us20:48
greghayneswe should standardize on somewhere...20:48
greghaynesso I guess I could mention this20:48
cineramawe could make our own but tbh it might be dead a lot of the time20:48
greghaynesI was planning to send an email today or tomorrow about proposing us moving out of tripleo20:48
ianwi am in #tripleo, but i'm more closely watching #openstack-infra20:48
cineramain which case, having our own makes more sense20:48
cineramai watch infra & tripleo but mostly by highlighting20:49
greghaynesbut I think that discussion will have some effect on where we hang out20:49
greghaynesIt is really not great that we dont have a clear channel we live in though20:49
greghaynesI'd be fine making our own channel...20:50
greghaynesianw: you fine with another channel?20:50
*** lbrune has joined #openstack-meeting20:50
*** diana_clarke has joined #openstack-meeting20:50
*** Leo_ has quit IRC20:50
ianwi guess so, do we think #openstack-infra is too busy?20:51
*** karthikp_ has quit IRC20:51
cineramait's not terrible but it's also not super obvious to someone whose main point of context is just using dib20:51
greghaynesAgreed, I think it'd work but its probably more beneficial to have something we can try and make painfully obvious to random users where we live20:52
*** shaohe_feng has quit IRC20:52
*** sindhude has quit IRC20:53
cineramayep we can add that to our homepage, readme, etc20:53
ianwok, np20:53
*** shaohe_feng has joined #openstack-meeting20:53
greghaynes#openstack-dib?20:53
cinerama++20:53
ianw+120:53
greghaynes#agreed We will make #opensack-dib our official channel20:54
greghaynesok, lots of decisions for a meeting20:54
greghayneswe have about 5mins...20:54
greghaynesanything else or we all get 5mins back?20:55
cineramagreghaynes, who's going to take the setup for the new channel?20:55
*** salv-orlando has quit IRC20:56
cineramai can do it but i have ironical things to do this week so i might need to be poked20:56
greghaynesI think its fine if we wait a bit, I'd kind of like to send the tripleo email first since I think part of the setup relates to what program the project is under20:56
ianwi vote cinerama :)  no rush20:56
cineramasounds good20:56
*** ociuhandu has joined #openstack-meeting20:57
greghaynesawesome20:57
greghaynescinerama: TY for getting us set up with a meeting!20:57
greghaynes#endmeeting20:57
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"20:57
openstackMeeting ended Thu Jul 21 20:57:37 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)20:57
openstackMinutes:        http://eavesdrop.openstack.org/meetings/diskimage_builder/2016/diskimage_builder.2016-07-21-20.03.html20:57
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/diskimage_builder/2016/diskimage_builder.2016-07-21-20.03.txt20:57
openstackLog:            http://eavesdrop.openstack.org/meetings/diskimage_builder/2016/diskimage_builder.2016-07-21-20.03.log.html20:57
ianwyeah, good suggestion!20:57
*** aeng has joined #openstack-meeting20:57
*** karthikp_ has joined #openstack-meeting20:58
*** woodster_ has quit IRC20:59
*** jaypipes has quit IRC20:59
*** jckasper has quit IRC21:00
*** jckasper has joined #openstack-meeting21:01
*** dasanind has quit IRC21:02
*** galstrom is now known as galstrom_zzz21:02
*** jckasper has quit IRC21:02
*** shaohe_feng has quit IRC21:03
*** shaohe_feng has joined #openstack-meeting21:03
*** amitgandhinz has quit IRC21:04
*** shashank_hegde has quit IRC21:05
*** amitgandhinz has joined #openstack-meeting21:05
*** aysyd has quit IRC21:05
*** obondarev has quit IRC21:05
*** bobh has joined #openstack-meeting21:05
*** jckasper has joined #openstack-meeting21:06
*** tonytan4ever has quit IRC21:06
*** galstrom_zzz is now known as galstrom21:06
*** tonytan4ever has joined #openstack-meeting21:08
*** elo has joined #openstack-meeting21:11
*** shashank_hegde has joined #openstack-meeting21:11
*** sindhude has joined #openstack-meeting21:11
*** shaohe_feng has quit IRC21:13
*** shaohe_feng has joined #openstack-meeting21:14
*** madorn has joined #openstack-meeting21:14
*** julim_ has quit IRC21:14
*** bvandenh has joined #openstack-meeting21:16
*** cdelatte has joined #openstack-meeting21:16
*** aranjan has quit IRC21:18
*** aranjan has joined #openstack-meeting21:19
*** banix has joined #openstack-meeting21:20
*** aranjan has quit IRC21:21
*** amitgandhinz has quit IRC21:21
*** ajmiller has quit IRC21:22
*** ajmiller has joined #openstack-meeting21:22
*** njohnston is now known as njohnston|afk21:22
*** aranjan has joined #openstack-meeting21:23
*** aranjan has quit IRC21:23
*** aranjan has joined #openstack-meeting21:23
*** shaohe_feng has quit IRC21:23
*** ajmiller has quit IRC21:23
*** ajmiller has joined #openstack-meeting21:24
*** shaohe_feng has joined #openstack-meeting21:24
*** ihrachys has joined #openstack-meeting21:25
*** kylek3h has quit IRC21:26
*** thorst_ has quit IRC21:26
*** penick has quit IRC21:26
*** efried has quit IRC21:27
*** flwang1 has joined #openstack-meeting21:27
*** cdelatte has quit IRC21:28
*** aranjan has quit IRC21:29
*** ihrachys has quit IRC21:29
*** claudiub has quit IRC21:30
*** sdague_ has quit IRC21:30
*** bvandenh has quit IRC21:32
*** yeungp has joined #openstack-meeting21:32
*** asettle has joined #openstack-meeting21:33
*** yassou has quit IRC21:33
*** shaohe_feng has quit IRC21:33
*** shaohe_feng has joined #openstack-meeting21:34
*** asettle has quit IRC21:38
*** yeungp has quit IRC21:39
*** timcline has joined #openstack-meeting21:39
*** thorst_ has joined #openstack-meeting21:40
*** HeOS has joined #openstack-meeting21:40
*** ijw has joined #openstack-meeting21:40
*** spzala has quit IRC21:41
*** mlavalle has joined #openstack-meeting21:41
*** harlowja has quit IRC21:41
*** shaohe_feng has quit IRC21:44
*** spzala has joined #openstack-meeting21:44
*** shaohe_feng has joined #openstack-meeting21:44
*** pece has quit IRC21:45
*** thorst_ has quit IRC21:45
*** armax has quit IRC21:46
*** clenimar has quit IRC21:47
*** ericksonsantos has quit IRC21:47
*** harlowja has joined #openstack-meeting21:48
*** harlowja has quit IRC21:48
*** thorst_ has joined #openstack-meeting21:49
*** dtrainor_ has joined #openstack-meeting21:53
*** thorst_ has quit IRC21:53
*** dtrainor has quit IRC21:53
*** timcline has quit IRC21:53
*** timcline has joined #openstack-meeting21:54
*** esberglu has quit IRC21:54
*** shaohe_feng has quit IRC21:54
*** shaohe_feng has joined #openstack-meeting21:54
*** emagana has joined #openstack-meeting21:54
*** amotoki has joined #openstack-meeting21:55
*** boden has joined #openstack-meeting21:55
*** hashar has quit IRC21:55
*** ajmiller has quit IRC21:55
*** ajmiller has joined #openstack-meeting21:56
*** sindhude has quit IRC21:56
*** armax has joined #openstack-meeting21:57
*** ihrachys has joined #openstack-meeting21:57
*** banix has quit IRC21:57
*** sindhude has joined #openstack-meeting21:58
*** timcline has quit IRC21:58
*** galstrom is now known as galstrom_zzz21:58
*** galstrom_zzz is now known as galstrom21:58
dougwigo/21:59
carl_baldwino/21:59
*** amuller has joined #openstack-meeting21:59
bodeno-21:59
armaxhello hello21:59
*** galstrom is now known as galstrom_zzz21:59
amullerhiya21:59
amotokihi22:00
HenryGo/22:00
mlavalleo/22:00
armaxanyone else joining the party?22:00
ajoo/ hallo22:00
*** karthikp_ has quit IRC22:00
armax#startmeeting neutron_drivers22:00
openstackMeeting started Thu Jul 21 22:00:21 2016 UTC and is due to finish in 60 minutes.  The chair is armax. Information about MeetBot at http://wiki.debian.org/MeetBot.22:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.22:00
*** openstack changes topic to " (Meeting topic: neutron_drivers)"22:00
openstackThe meeting name has been set to 'neutron_drivers'22:00
kevinbentonhi22:00
ihrachyso/22:00
armaxhello everyone, thanks for joining22:00
ajo:)22:01
*** maishsk has quit IRC22:01
armaxI don’t have a special reminder for drivers folks so let’s dive in22:01
johnsomo/22:01
armax#link https://bugs.launchpad.net/neutron/+bugs?field.status%3Alist=Triaged&field.tag=rfe&orderby=datecreated&start=022:01
armaxbug #157514622:01
openstackbug 1575146 in neutron "[RFE] ovs port status should the same as physnet." [Wishlist,Triaged] https://launchpad.net/bugs/157514622:01
armaxanyone had a chance to navigate it?22:02
*** njohnston has joined #openstack-meeting22:02
njohnstono/22:02
dougwigis this going to affect the scalability of the agents?22:02
*** baoli has joined #openstack-meeting22:02
*** clenimar has joined #openstack-meeting22:02
*** bill_az_ has quit IRC22:02
*** ericksonsantos has joined #openstack-meeting22:03
*** diana_clarke has left #openstack-meeting22:03
kevinbentoni don't think scalability should be a big issue22:03
kevinbentonsince it's local to agents22:03
*** sindhude has quit IRC22:03
kevinbentonand it's just watching the status of one interface22:03
armaxit depends how it’s implemented  :)22:03
ajois it talking about setting port's as down when a network is configured as down by admin?22:03
ajoor about monitoring the network?22:03
dougwigbecause we're just scanning physicals?  hmm.  i'd hate to make a claim that vxlan was UP, when it has way more moving parts.22:03
kevinbentonmonitoring status of physicals22:03
kevinbentonajo: not logical model update from what i can see22:03
armaxthis is about monitoring link status on the host22:04
*** tidwellr has joined #openstack-meeting22:04
dougwigbut better than the random DOWN nonsense we have today22:04
kevinbentondougwig: well that field is about what is wired22:04
ajoI guess it's doable, tunnel networks being the complicated part22:04
*** shaohe_feng has quit IRC22:04
armaxand if the interface affected ends up being used by the agent reflect the state on the affected logical ports22:04
kevinbentondougwig: config state vs dataplane22:04
kevinbentonarmax: well i don't think this is even updating the logical port on the server22:05
ihrachysis current neutron api enough to build a monitoring tool? we expose phys net relationship per network, so that should be enough for an external tool to indicate which ports are affected by a failure on infra.22:05
*** bill_az_ has joined #openstack-meeting22:05
*** shaohe_feng has joined #openstack-meeting22:05
kevinbentonarmax: its just setting the tap device to down22:05
kevinbentonisn't it?22:05
kevinbentonip link set tap238947ac down22:05
kevinbentonno interaction with neutron server from what i can tell22:05
armaxkevinbenton: and what then?22:06
ihrachyskevinbenton: when you do it from hypervisor, how does it affect guest?22:06
kevinbentonarmax: the VM sees its interface state change22:06
ajohm, that'd be nice,22:06
kevinbentonarmax: so the VM can have a failover internally to another interface22:06
*** bobh has quit IRC22:06
kevinbentonI haven't tested this, but it's what I understand the request is for22:06
*** Bollig_ has quit IRC22:06
armaxkevinbenton: right, but wouldn’t we want to reflect that all the way to the neutron logical port?22:07
ajobut shouldn't we, in that case, report back to neutron-server to set the ports as down ?22:07
ajoexactly what armax said :P22:07
*** thorst_ has joined #openstack-meeting22:07
*** baoli has quit IRC22:07
kevinbentonthat's possible22:08
kevinbentonwould make sense for API visibility22:08
*** thorst_ has quit IRC22:08
kevinbentonbut I don't think it's the core component of the RFE22:08
armaxkevinbenton: otherwise we’d still have physical != logical22:08
kevinbentonarmax: right22:08
armaxas far as state goes22:08
*** salv-orlando has joined #openstack-meeting22:08
armaxif we limit this to a host local thing22:08
armaxthen I could see it being a neat enanchement22:09
armaxthe trick is in how to reliably detect the link failure22:09
ajodo we have up/down indication on the port model? I guess we're not talking about admin-state-up22:09
ihrachysbtw, let's say you have physnet broken; but you still have connectivity between instances on the same node; is it fair to shut down the port completely?22:09
kevinbentonihrachys: that's a good concern22:10
dougwigit'll be funny if the taps reflect the physical, but ovs always has the bridges marked down (which started happening in liberty for some reason)22:10
kevinbentonanother issue is that the physnet bridge may have multiple physical interfaces plugged into it22:10
kevinbentonwhat do we do if one fails?22:10
kevinbentonbut the other is active22:10
ajogood concerns22:10
amotokiin physical server case, we don't get a port down when an uplink of a switch is down.22:11
armaxkevinbenton: right, this may become too deployment dependent22:11
kevinbentonamotoki: ++22:11
kevinbentonthis wouldn't detect other topology failures22:11
ajoamotoki++22:11
ihrachysI honestly think it's a job for some external tool that would be able to 1) monitor physnet state; 2) talk to guests to do orchestration22:11
*** dtrainor_ has quit IRC22:11
*** Bollig has joined #openstack-meeting22:11
kevinbentonyeah, i'm starting to agree22:12
armaxihrachys: actually, now that you brought this up22:12
*** e0ne has quit IRC22:12
kevinbentonbecause there are too many different things that an operator might want to watch for22:12
armaxthere’s also this other bug which is relevant to this discussion22:12
ajoihrachys, or related to the debugging scenarios hynek was proposing22:12
cgoncalvesarmax: :-)22:12
armaxbug #159808122:12
openstackbug 1598081 in neutron "[RFE] Port status update" [Wishlist,Triaged] https://launchpad.net/bugs/159808122:12
ajoahaa22:13
armaxif we assume that out of band tools can indeed cooperate with Neutron to manage a port state22:13
armaxperhaps we do need to relax the existing API and allow third party to set the status of a logical port22:13
armaxeither that or, as one alternative being proposed, introduced a new state for this specific need22:14
kevinbentonyeah, i'm more inclined to approve this one22:14
armax1598081?22:14
kevinbentonbecause it would allow tooling to do this22:14
kevinbentonyeah22:14
ihrachys+22:14
armaxkevinbenton: you mean flipping the allowed_put on port status?22:14
ajomay be even extend the port status beyond a single constant (providing more details of the status issue)22:14
*** salv-orl_ has joined #openstack-meeting22:14
kevinbentonarmax: yeah, or some API mechanism22:14
kevinbentonmaybe a new field22:14
*** shaohe_feng has quit IRC22:14
kevinbentonfor dataplane status22:15
ihrachyswell, I thought it won't be rest exposed; only from inside ml2 drivers?22:15
cgoncalveskevinbenton: like force-down as nova has not for hosts?22:15
kevinbentonthere is a lot of logic tied to that status field now, i'm not sure allowing arbitrary changes of STATUS will play well with ML222:15
armaxkevinbenton: a new field might be better in case some plugins would not tolerate the change in allow_put to True?22:15
kevinbentonarmax: yes22:15
*** shaohe_feng has joined #openstack-meeting22:15
kevinbentoncgoncalves: what does force-down do?22:16
ajodataplane-status ?22:16
kevinbentonajo: yeah, i'm thinking something like that22:16
cgoncalveskevinbenton: overwrites 'status'22:16
kevinbentoncgoncalves: ah, yeah i'm not sure forcing status changes will work well with ML222:17
dougwigi'd think the ml2 driver or core plugin should get to decide whether a 3rd party gets to muck with your port state.22:17
kevinbentoncgoncalves: its likely to come along and undo the status on an agent sync22:17
armaxok let’s report back on 1575146 based on this discussion and see if that would solve their need22:17
armaxin the meantime we can figure out 1598081 on a spec22:17
cgoncalveskevinbenton: I mean, not the 'status' db value but REST API22:17
*** salv-orlando has quit IRC22:17
armaxcgoncalves: it’s probably safer to start putting something into a spec format22:18
kevinbentoncgoncalves: even that is tied to nova notifications22:18
kevinbentoncgoncalves: would a new field not work for your use case?22:18
armaxany other opinon on bug 1598081?22:18
openstackbug 1598081 in neutron "[RFE] Port status update" [Wishlist,Triaged] https://launchpad.net/bugs/159808122:18
*** emagana has quit IRC22:19
kevinbentonarmax: yes. if the second goes in, then we can partially address this by having tap status reflect the dataplane status22:19
*** spotz is now known as spotz_zzz22:19
kevinbentonarmax: so then it's just up to a tool to set that status22:19
armaxkevinbenton: right, let’s circle back on the former RFE and take it from there22:19
cgoncalveskevinbenton: it would address half of the issue, yes22:19
kevinbentoncgoncalves: what's the other half that it leaves out?22:19
cgoncalvesarmax: spec sounds good. question is with which approach should we propose firstly22:20
armaxcgoncalves: I think the approach that explores a new status field is probably the one with the best chances22:20
cgoncalveskevinbenton: SDN controllers reporting through their existing APIs up to the mech driver22:20
cgoncalvesarmax: ok22:20
kevinbentoncgoncalves: oh, that's not a big deal if we have a new field22:20
kevinbentoncgoncalves: they could just use the regular update_port core plugin api at that point22:21
cgoncalveskevinbenton: sure22:21
ihrachysarmax: no PUT for the start?22:21
kevinbenton+1 to no PUT22:21
kevinbentonand we can even have this new status force the old status to DOWN as well22:21
ihrachysyeah, + for no PUT. we can reiterate later.22:21
armaxihrachys: changing the semantic of PUT may not go down well for all plugins22:21
cgoncalvesso we are saying a new field for out of band, while for in band would not need additional work from neutron core, right?22:22
armaxbut during the spec review we can find out potentially22:22
armaxcgoncalves: yes22:22
ihrachysit makes me think... isn't it in a way duplicating the /health api that Hynek is working on?22:22
*** ijw has quit IRC22:22
cgoncalvesarmax: sounds good22:22
*** rtheis has quit IRC22:22
kevinbentonihrachys: well this is setting a state from the API22:22
kevinbentonihrachys: the /health would look at this i assume as well22:23
armaxihrachys: that’s addressing a different use case22:23
cgoncalvesihrachys: do you have a pointer at hand?22:23
armaxI see /health as resource status on steroid22:23
armaxs22:23
*** njohnsto_ has joined #openstack-meeting22:23
*** aranjan has joined #openstack-meeting22:23
ihrachyscgoncalves: https://review.openstack.org/30897322:23
cgoncalvesihrachys: thanks22:23
*** njohnston has quit IRC22:23
kevinbentoni see /health as reading the status of everything and this new field as a way for plugins to say something is broken22:23
*** spzala has quit IRC22:23
kevinbentonat the dataplane somewhere22:24
armaxihrachys: now the diagnostics framework could potentially include link status checking22:24
*** sdake_ has quit IRC22:24
armaxihrachys: but we’d never go for that in-tree22:24
ajoyeah, they can be complementary, or build on each other22:24
armaxihrachys: now as for the level of pluggability of the diagnostics framework, that is still TBD22:25
*** shaohe_feng has quit IRC22:25
armaxquestions? notes? shall we move on?22:25
ihrachysnot sure I understand why we would not go with at least a check model for link status, but ok. we can probably move on.22:25
*** shaohe_feng has joined #openstack-meeting22:25
*** singhj has quit IRC22:26
*** hemna has quit IRC22:26
armaxihrachys: please do capture your thoughts on the relevant bug reports22:27
ihrachysarmax: will do22:27
armaxihrachys: I suppose anything is possible22:27
*** aranjan has quit IRC22:27
ajo(time check 30min, 7 RFEs left)22:27
*** emagana has joined #openstack-meeting22:27
ajo:-)22:28
armaxbug 158088022:28
openstackbug 1580880 in neutron "[RFE] Distributed Portbinding for all port types" [Wishlist,Triaged] https://launchpad.net/bugs/1580880 - Assigned to Andreas Scheuring (andreas-scheuring)22:28
armaxcarl_baldwin: ping22:28
*** njohnsto_ is now known as njohnston22:28
carl_baldwino/22:28
carl_baldwinWe talked about this at the Nova mid-cycle.  johnthetubaguy is taking some interest from the Nova side.22:28
armaxcarl_baldwin: anything worth sharing about this?22:28
*** dtrainor_ has joined #openstack-meeting22:29
carl_baldwinI personally think that this ought to be driven from the Nova side for live migration.  We should prioritize it to match theirs.22:29
*** bswartz has quit IRC22:29
armaxcarl_baldwin: so we need to figure out shape and scope, but it’s something that’s in Nova’s hands?22:29
armaxcarl_baldwin: any other Nova developer willing to sponsor?22:29
*** eharney has quit IRC22:30
carl_baldwinNo one spoke up willing to sponsor but there was general interest like it was something that they'd like to fix.22:30
*** dimtruck is now known as zz_dimtruck22:30
carl_baldwinThey have a similar issue with Cinder and they'd like to see what similarities there are.22:30
*** ntpttr- has quit IRC22:31
armaxat this point we have the option of marking this postponed and tackle as best effort22:31
armaxthe Newton window is shut for them anyway22:31
*** cknight1 has quit IRC22:31
carl_baldwinThe current goal is for John, Paul Murray, Andreas, and me to get a plan ready for summit.22:31
armaxso we can take the time to iterate on the spec and revisit as soon as Ocata opens up?22:31
carl_baldwinYes.22:31
armaxcarl_baldwin: ok22:31
armaxI did look at the spec already22:31
armaxlet’s continue the tango22:31
carl_baldwinI read through it to.  I think it is getting better.22:32
armaxmoving on?22:32
carl_baldwin*too22:32
carl_baldwinYes, move on.22:32
armaxbug 158369422:32
openstackbug 1583694 in neutron "[RFE] DVR support for Allowed_address_pair port that are bound to multiple ACTIVE VM ports" [Wishlist,Triaged] https://launchpad.net/bugs/1583694 - Assigned to Swaminathan Vasudevan (swaminathan-vasudevan)22:32
*** singhj has joined #openstack-meeting22:32
armaxAs for this one, last week we agreed we wanted to explore more formal ways to describe the particular nature of the Floating IP for the use case in which multiple ports involved are needed22:33
*** lpetrut has quit IRC22:33
carl_baldwinI thought about this a little bit too.  So far, I can't convince myself that a new top-level resource is needed but I don't feel strongly.22:33
armaxwe’ll keep this on the backburner until we have a new proposal to look at, at this point I feel this probably as come in teh form of a spec?22:33
carl_baldwin++22:33
armaxcarl_baldwin: right, I tend to agree to22:33
armaxtoo*22:34
* carl_baldwin 's and armando's double-o keys don't seem to be working today.22:34
armaxbut the existing model/API experience can be streamlined22:34
*** dane_leblanc has quit IRC22:35
armaxcarl_baldwin: would you still agree with this last statement?22:35
carl_baldwinyes22:35
*** shaohe_feng has quit IRC22:35
armaxok22:35
*** shaohe_feng has joined #openstack-meeting22:35
armaxbug 158605622:36
openstackbug 1586056 in neutron "[RFE] Improved validation mechanism for QoS rules with port types" [Wishlist,Triaged] https://launchpad.net/bugs/1586056 - Assigned to Slawek Kaplonski (slaweq)22:36
*** ntpttr- has joined #openstack-meeting22:36
ajo\o/22:36
armaxajo, ihrachys are you saying that this turns out to be a simple bug fix?22:36
armax‘simple’?22:36
*** singhj has quit IRC22:37
ajowell, not a simple bugfix, the current behaviour could have been considered a bug, may be22:37
armaxajo: is there a patch in the works?22:37
ajoI prefer we actually track it by RFE, we even have a short spec describing the work to be done22:37
ajoarmax, yes, 1 sec22:37
ihrachysI think it's a rather straightforward fix, though building it cleanly will require some thought. it changes behaviour for supported rule types API, so it's a RFE.22:38
armaxhttps://review.openstack.org/#/c/328655/?22:38
ajohttps://review.openstack.org/#/c/319694/22:38
armaxoh boy you got a -1 from garyk22:38
ajo:P :)22:38
ihrachys:D22:38
armaxok +794,-3522:39
ajoit's contained in a way that it's only activated via callbacks if qos is enabled22:39
kevinbentonwhooo, it deletets 35 lines! :)22:39
ajocleanup! ;)22:39
armaxajo: and you still want a spec?22:39
ajothe spec seems to be fine, we used it to agree on the high level details of the implementation22:40
armaxajo: is there a pending spec too?22:40
ajo1 sec22:40
ihrachyshttps://review.openstack.org/#/c/323474/22:40
ihrachysthe spec ^22:40
ajocorrect22:40
ihrachysit's fine. I don't insist on having one, but since it's already there...22:41
armaxihrachys: ok, it seems most of the legwork is done22:41
ajobasically we're trying to conciliate the heterogeneity of a deployment (different vnic types, different port bindings... with different capabilities)22:41
armaxajo: but you did it with no api changes?22:41
ajoand tell the admin when it's going to do something that does not work22:41
ajoarmax, correct, we will only forbid things that don't work22:41
* armax must read it to learn how they pulled that off22:41
*** salv-orl_ has quit IRC22:41
armaxok22:42
ajolike trying to set a policy not compatible with an SR-IOV port22:42
ihrachysno api changes, that was the original concern; now it's properly isolated in scope.22:42
ajoor trying to change a policy in a way that it becomes incompatible to a bound port22:42
amotokii think error conditions in API will be changed. correct?22:42
*** rrecio has quit IRC22:43
ajoamotoki, we will provide more error conditions (conflict probably)22:43
ajoand document them22:43
ajobut no parameters changed, or REST methods added22:43
*** salv-orlando has joined #openstack-meeting22:43
*** Kiall has quit IRC22:43
armaxok, I can’t see why we can’t proceed with this one, I’ll look at the outstanding patches22:44
armaxI assume that both of you can take care of this in time for Newton?22:44
ihrachysI will trade reviews for that for some of my pending patches... :)22:44
*** mickeys has joined #openstack-meeting22:44
ajothanks, yes, I hope we can get it done for newton22:44
armaxihrachys: it doesn’t work like that, but nice try22:45
ajohehe, that will be welcomed :P :)22:45
armax:)22:45
ihrachysdamn!22:45
ajoI thought the trade offer was to me :P22:45
ihrachyslet's move on22:45
armaxok22:45
ihrachysajo: it was22:45
armaxbug 159200022:45
openstackbug 1592000 in neutron "[RFE] Admin customized default security-group" [Wishlist,Triaged] https://launchpad.net/bugs/1592000 - Assigned to Roey Chen (roeyc)22:45
*** shaohe_feng has quit IRC22:45
*** shaohe_feng has joined #openstack-meeting22:45
ihrachysI think it inherently makes openstack less compatible22:46
ihrachyshowever we implement or expose the feature.22:46
armaxI suppose ihrachys’ comment was the nail in the coffin22:46
ihrachyssince the contents of the group is a contract for a long time.22:46
armaxI have been pushing back on this myself22:46
kevinbentonnova allowed this right?22:47
*** cknight has joined #openstack-meeting22:47
armaxkevinbenton: allegedly22:47
armaxkevinbenton: though I am not sure if they ever removed the mechanism after juno22:47
armaxso right now we are 2 -222:48
ihrachyswell, in a way, one -2 and one -122:48
*** cknight1 has joined #openstack-meeting22:48
armaxanyone is willing to argue against the non favorable votes?22:48
armaxihrachys: same difference22:48
ajowell, the incompatibility is a matter of people getting used to properly setup the default SG22:48
*** salv-orlando has quit IRC22:48
armaxwhat other folks reckon?22:48
*** sdake has joined #openstack-meeting22:49
ajoI believe there's a good use case when admins want to setup a higher level of security22:49
ajoit's not the first time I heard that from an operator, but they didn't insist too much, they had more pressing things22:49
armaxajo: bear in mind that this is somewhat already possible22:49
amullerarmax: It is?22:49
ajoarmax, what do you mean?22:49
dougwigthe current nonsense is bullshit that leads to literally every new tenant sending a request, "i can't ping my instances!", so everyone scripts a tenant create with their own default anyway.22:49
armaxtenant onboarding22:49
*** bill_az_ has quit IRC22:49
armaxyou create a default security group with your junk in it22:49
ajothat's true22:50
*** spzala has joined #openstack-meeting22:50
armaxbut do we want to give the admin the rope?22:50
armaxI’d rather not22:50
*** bswartz has joined #openstack-meeting22:50
armaxI’d rather send the opposite signal22:50
armaxdougwig: those tenants should RTFM22:51
*** bswartz has quit IRC22:51
dougwigarmax: unrealistic for end users.22:51
armaxdougwig: nonsense22:51
armaxend users who?22:51
armaxmy granpa?22:51
armaxcome on!22:51
armax:)22:51
*** cknight has quit IRC22:51
dougwigand this is why openstack sucks for public clouds.22:51
*** spzala has quit IRC22:51
*** adrianofr has quit IRC22:51
*** spzala has joined #openstack-meeting22:51
amotokii am not 100% sure this leads to incompatibility. this sounds a possible usecase and API consumer can know what rules are provisioned.22:51
kevinbentondougwig: aws is default closed, no?22:52
armaxthat’s EC2 behavior too22:52
ihrachysno, it sucks because we change its behaviour every second cycle. oh wait.22:52
dougwignah, ec2 walks you through the SG as part of launch, so it hits you in the face.22:52
amulleramotoki: it would be discoverable but every cloud could have a different default22:52
*** banix has joined #openstack-meeting22:52
kevinbentondougwig: so that has nothing to do with neutron22:52
kevinbentonwe've talked about this before22:52
armaxdougwig: and so is horizon22:52
amotokia questions is we need to ensure the default rules or we can say to check the default rules thru API.22:52
ihrachysamotoki: existing apps could not retroactively know that neutron will decide to screw them.22:52
kevinbentonit sounds like you want a horizon feature22:52
dougwigkevinbenton: i want unicorns and cake, too.22:53
armaxok, let’s assume that this is not going anywhere anytime soon22:53
njohnstonIf people really want this, I think the FWaaS v2 spec covers this use case.22:53
armaxperhaps we can involve the nova folks just to stir the pot22:53
armaxlet’s move on22:53
armaxbug 159661122:53
openstackbug 1596611 in neutron "[RFE] Create floating-ips with qos" [Wishlist,Triaged] https://launchpad.net/bugs/1596611 - Assigned to LiuYong (liu-yong8)22:53
kevinbentondougwig: but this would suck more for public clouds if we left it default open22:53
*** spzala has quit IRC22:54
dougwigkevinbenton: it's really hurt digital ocean a lot. not.22:54
ihrachysthat one, I don't believe it's achievable with the current state of traffic classification in neutron (which is non-existent)22:54
*** boden has quit IRC22:54
armaxihrachys: way ahead of you22:54
armaxihrachys: we do have a mechanism to postpone22:54
kevinbentondougwig: digital ocean beating amazon? :)22:54
*** qwebirc56452 has joined #openstack-meeting22:55
ajoI believe we can't tackle that yet22:55
ihrachysthen let's do it. I would mark TC effort as a dep for that RFE, but that's probably something not supported for bugs but for bps only. good riddance.22:55
dougwigkevinbenton: bah, we pick and choose using AWS as our PRD, depending on our biases.22:55
armaxihrachys: your comment sums it up pretty well22:55
ajoeventually we will be able22:55
armaxbug 160383322:55
openstackbug 1603833 in neutron "If we need a host filter in neutron ?" [Wishlist,Triaged] https://launchpad.net/bugs/160383322:55
*** rbak has quit IRC22:55
*** qwebirc56452 has quit IRC22:55
armaxthis one I think can be tackled by nova’s scheduler filter mechanism22:55
*** kaminohana has joined #openstack-meeting22:55
armaxanyone can comment?22:55
amullerdougwig: it's a useful data point is all22:55
amullerdougwig: non-binding22:55
*** shaohe_feng has quit IRC22:55
dougwigarmax: does the nova scheduler have the neutron net when it runs?22:56
armaxdougwig: I suppose they must22:56
*** shaohe_feng has joined #openstack-meeting22:56
ajothat's related to the nova generic resource pool integration22:56
ihrachysarmax: I am not 100% sure that's the only goal, but if it's about bandwidth oversubscribing, then I think it's a dup for another bug I mentioned there.22:56
armaxthe godaddy guys developed the IP availability API for a similar use case22:56
ajoand, also related to strict min bandwidth limit (when they talk about bandwidth)22:56
ajowe have a QoS RFE for that, but we need to wait on nova to be ready before jumping in22:57
armaxok, let’s continue the chat on the bug to further scope it22:57
armaxI suppose this is a first, have we ever managed to finish the entire list in one meeting?22:57
kevinbentonyes22:57
carl_baldwinI don't think we have22:57
armaxok22:58
armaxlet’s get 2 mins back22:58
armax#endmeeting22:58
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"22:58
openstackMeeting ended Thu Jul 21 22:58:39 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)22:58
armaxbye everyone22:58
openstackMinutes:        http://eavesdrop.openstack.org/meetings/neutron_drivers/2016/neutron_drivers.2016-07-21-22.00.html22:58
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/neutron_drivers/2016/neutron_drivers.2016-07-21-22.00.txt22:58
openstackLog:            http://eavesdrop.openstack.org/meetings/neutron_drivers/2016/neutron_drivers.2016-07-21-22.00.log.html22:58
ihrachysgn folks! :)22:58
ajohurray!22:58
ajogn ihrachys22:58
ajogn *22:58
* ihrachys has a bus to catch to Prague in... wait for it... 6h. time to have some sleep.22:59
ajoihrachys, travelling ?22:59
ajosafe travels!22:59
*** mlavalle has left #openstack-meeting22:59
amullerihrachys suffers for the midcycle22:59
ihrachysajo: one day trip, those bastards from an embassy don't want to send visa, they require personal attendance.22:59
ajoihrachys, :S22:59
ihrachysok cheers. have a good one all.23:00
*** ihrachys has quit IRC23:00
*** asettle has joined #openstack-meeting23:01
*** njohnston has quit IRC23:02
*** ijw has joined #openstack-meeting23:04
*** shaohe_feng has quit IRC23:06
*** asettle has quit IRC23:06
*** JRobinson__ has joined #openstack-meeting23:06
*** shaohe_feng has joined #openstack-meeting23:06
*** amuller has left #openstack-meeting23:07
*** ajmiller has quit IRC23:07
*** ajmiller has joined #openstack-meeting23:07
*** syjulian has quit IRC23:08
*** ajmiller has quit IRC23:15
*** ajmiller has joined #openstack-meeting23:15
*** shaohe_feng has quit IRC23:16
*** enriquetaso has quit IRC23:16
*** comay has quit IRC23:16
*** shaohe_feng has joined #openstack-meeting23:17
*** jckasper has quit IRC23:17
*** jckasper has joined #openstack-meeting23:18
*** Patifa has quit IRC23:20
*** karthikp_ has joined #openstack-meeting23:21
*** uxdanielle has joined #openstack-meeting23:21
*** bobh has joined #openstack-meeting23:22
*** amitgandhinz has joined #openstack-meeting23:22
*** jckasper has quit IRC23:22
*** bill_az has joined #openstack-meeting23:24
*** uxdanielle has quit IRC23:24
*** aranjan has joined #openstack-meeting23:24
*** shaohe_feng has quit IRC23:26
*** amitgandhinz has quit IRC23:26
*** shaohe_feng has joined #openstack-meeting23:27
*** bobh has quit IRC23:29
*** aranjan has quit IRC23:30
*** piet_ has joined #openstack-meeting23:32
*** tochi has joined #openstack-meeting23:34
*** shaohe_feng has quit IRC23:36
*** shaohe_feng has joined #openstack-meeting23:37
*** jamesdenton has joined #openstack-meeting23:39
*** tidwellr has left #openstack-meeting23:39
*** cardeois_ has joined #openstack-meeting23:42
*** uxdanielle has joined #openstack-meeting23:43
*** cardeois has quit IRC23:45
*** dmorita has quit IRC23:47
*** shaohe_feng has quit IRC23:47
*** shaohe_feng has joined #openstack-meeting23:47
*** dmorita has joined #openstack-meeting23:48
*** bill_az has quit IRC23:48
*** uxdanielle has quit IRC23:50
*** vishnoianil has quit IRC23:51
*** cardeois_ has quit IRC23:54
*** shaohe_feng has quit IRC23:57
*** aranjan has joined #openstack-meeting23:57
*** shaohe_feng has joined #openstack-meeting23:58
*** mriedem has joined #openstack-meeting23:58

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