Thursday, 2016-01-07

thinrichsTime for the Congress meeting.00:00
thinrichs#startmeeting CongressTeamMeeting00:00
openstackMeeting started Thu Jan  7 00:00:42 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
*** openstack changes topic to " (Meeting topic: CongressTeamMeeting)"00:00
openstackThe meeting name has been set to 'congressteammeeting'00:00
*** Zyric_ has left #openstack-meeting00:00
thinrichsSince this is the first time back since the holidays, let's give people a couple of minutes00:01
thinrichsWho is here now?00:01
*** spzala has joined #openstack-meeting00:02
masahitoHi00:02
*** ekcs has joined #openstack-meeting00:02
thinrichsmasahito: hi00:02
masahitohappy new year00:02
*** Swami_ has joined #openstack-meeting00:03
thinrichsHappy New Year to you too!00:03
*** torgomatic has left #openstack-meeting00:03
*** Swami has quit IRC00:03
thinrichsWhile we wait for others, want to chat about your Push driver?00:03
*** baoli has quit IRC00:04
masahitoyap00:04
thinrichsI think you're right about PUT http://<ip>:<port>/data-sources/<ds-id>/tables/<table-id or name>/rows00:04
thinrichsinstead of to …/tables00:05
thinrichsCould you expand on your comment about the oslo-messaging driver?00:06
masahitook00:06
*** spzala has quit IRC00:06
thinrichsekcs: hi!00:06
thinrichsekcs: Happy New Year!00:06
thinrichsI should set this up as a topic before we get too deep into it.00:07
thinrichs#topic Push datasource driver00:07
*** openstack changes topic to "Push datasource driver (Meeting topic: CongressTeamMeeting)"00:07
ekcshny  guys!00:07
*** dims_ has quit IRC00:07
masahitoekcs: hi, happy new year!00:07
thinrichsekcs: we are discussing masahito's new push datasource driver.00:08
thinrichs#link https://review.openstack.org/#/c/256303/00:08
ekcsyup00:08
thinrichsWe're discussing now where the web server that accepts the PUT requests should be running00:09
thinrichsOption 1 is for it to be our existing web server.00:09
thinrichsOption 2 is for the server to be running as part of the datasource itself00:10
thinrichsIn the new distributed architecture, option 1 would have the existing API row model receive the request, and send an RPC call to the appropriate datasource.00:11
masahitoIMO, using *http* protocol is one of implementation for push driver. So I think we'll implement a datasource which uses other protocol in the future.00:11
*** jjmb has joined #openstack-meeting00:11
thinrichsIn option 2, the sender would send the data to the IP/port of the datasource directly.00:12
thinrichsmasahito: it makes sense to think of http as 1 implementation.00:12
thinrichsAnd oslo-messaging would be another implementation.00:12
masahitoI think using oslo-message matchs to OpenStack services.00:13
*** cloudtrainme has quit IRC00:14
thinrichsmasahito: For http, it sounds odd that the data sender would target a different IP/port than all the other http API calls.00:14
masahitosince they have a function named notification to send an event to somewhere.00:14
thinrichsmasahito: But how would oslo-messaging work?  How do we configure it?  Would we configure each datasource to listen to it?00:14
thinrichsDoes each datasource subscribe to certain topics on oslo-messaging?00:15
*** otter768 has joined #openstack-meeting00:16
*** redbo has left #openstack-meeting00:16
*** sacharya has joined #openstack-meeting00:16
masahitoMy idea is each datasource subscribes it to update table.00:17
*** pballand has joined #openstack-meeting00:17
masahitoof course, it depends on usecase.00:17
masahitoThis is another idea.00:17
*** absubram has quit IRC00:17
pballandhello - sorry I’m late00:17
*** Sukhdev has joined #openstack-meeting00:17
thinrichspballand: Happy New Year!00:18
pballandthanks, you too!00:18
thinrichspballand: we're discussing Masahito's Push datasource driver00:18
thinrichs#link https://review.openstack.org/#/c/256303/00:18
pballandthinrichs: thanks, I caught up on eavesdrop00:18
masahitoMonasca or other monitor services collects notifications by oslo-message and sends summary to datasource by http.00:18
masahitopballand: Happy New Year!00:18
thinrichspballand: thanks for stopping me from rehashing00:18
pballandI think its fine for datasource drivers to accept updates through the API service, and/or directly00:18
*** Qiming has quit IRC00:19
pballandwhen using HTTP, it’s probably easisest to leverage the existing API listener00:19
pballandfor non-http, clearly a different service would need to bind to the port00:19
pballandthat’s my two cents at least :)00:20
thinrichspballand: agreed00:20
*** stanchan has joined #openstack-meeting00:20
thinrichsmasahito: what do you think?00:21
*** sacharya has quit IRC00:21
*** otter768 has quit IRC00:21
pballandto be clear, I’m not opposed to a datasource exposing its own http interface, but it seems like redundant work00:21
masahitopballand: agreed00:22
thinrichspballand: what would be the benefit of having a separate http interface?00:22
*** pratikmallya has quit IRC00:22
thinrichsskipping the rpc?00:22
pballandif the driver had specific requirements (e.g. long polling) that weren’t needed by the API service00:23
pballand(that may be a bad example, since long polling is a feature that could be useful)00:23
ekcsmakes sense to me to have http go to central api process. so that every sender doesn’t need to track a bunch of ip’s which could change as processes go down and restart etc.00:23
pballandbut the point is that a datasource may want non-standard semantics, and should be able to do so without breaking the rules00:24
thinrichsekcs: I think that once we go to HA the issues with multiple IPs will be more obvious00:24
pballandekcs: I agree that that would be ideal, I just don’t think it needs to be a requirement00:24
thinrichspballand: in general that makes sense.  Do we see a need for doing that right now for the Push driver?00:25
thinrichswhere by "that" I mean having http servers running inside the datasources00:25
*** baoli has joined #openstack-meeting00:25
masahitoMy concern is just it. If we implements other protocol the architecture looks strange.00:25
*** doug-fish has quit IRC00:26
pballandwe could have a generic way to POST data to a service RPC00:26
thinrichsmasahito: the arch is strange because pushing data over http goes through the usual API but pushing data through oslo.messaging (or whatever) goes through the datasource?00:26
pballand(that way the push driver doesn’t need to register additional API endpoints)00:27
masahitothinrichs: right00:27
*** jjmb has quit IRC00:27
pballandhmm, that doesn’t seem strange to me :-)00:28
masahitopballand: API has a general way to update data sounds nice.00:28
thinrichsmasahito: I agree with pballand.  There are 2 very different mechanisms being used to push data into the system.  It seems natural that they are implemented differently.00:28
pballandwe could add a ‘message bus’ service that can push to multiple drivers just like the API service could00:29
thinrichspballand: are you suggesting generalizing the idea that a PUT http://<ip>:<port>/data-sources/<ds-id>/tables/<table-id or name>/rows  results in an RPC?00:29
pballandthinrichs: I was actually suggesting an alternative to that, but I’m fine with your suggestion as well00:30
*** Swami_ has quit IRC00:31
thinrichsAnother option, more aligned with your suggestion would be to hang another action off of the services.00:31
*** sputnik13 has quit IRC00:31
pballandI was suggesting something like POST http://<ip>:<port>/data-sources/<ds-id>/rpc?method=push_data00:31
pballand(where method could be anything, and it is up to the service to validate the rest of the call)00:31
*** sputnik13 has joined #openstack-meeting00:32
thinrichsI wonder if that's too close to building a generic messaging service for the Congress components, instead of exposing a single abstraction that gets implemented on top of a messaging service.00:32
pballandthinrichs: that’s a good point - suggests that your proposal makes more sense00:33
*** ajmiller has joined #openstack-meeting00:33
*** haomaiwa_ has joined #openstack-meeting00:33
ekcsin terms of HA, it may be helpful to not have *all* push datasource updates be interrupted because the api process goes down or is out of reach.00:34
thinrichsI'm in favor of just extending the API to enable PUT to a datasource's rows (for http) and have message-buses push data directly to datasources.00:35
pballandthinrichs: sounds good to me00:35
pballandekcs: if you are concerned with that, you could launch multiple API services, or go so far as to launch an API service for every datasource...00:35
thinrichsmasahito: what do you think?00:36
ekcsjust seems that we’re making a functionality that is conceptually distinct from the api depend on the api service. I don’t have a strong opinion either way but pointing it out.00:37
masahitoI also think extending existing the API has much good points now.00:38
*** haomaiwa_ has quit IRC00:38
thinrichssounds good.  Let's move ahead with that.00:39
thinrichsAnd let's move ahead with the meeting.00:39
thinrichsCouple of quick things before the dist arch...00:39
masahitofor HA, choosing datasource or API is not matter. but for sender it's easy to send data for API.00:39
*** hoangcx_ has joined #openstack-meeting00:39
thinrichs#topic Reminders00:39
*** openstack changes topic to "Reminders (Meeting topic: CongressTeamMeeting)"00:39
thinrichsWe have a mid-cycle sprint later this month.00:40
thinrichsAgenda is here..00:40
thinrichs#link https://wiki.openstack.org/wiki/Sprints/CongressMitakaSprint00:40
thinrichsCall for speakers for Austin is available.00:40
thinrichsTalks (max of 3 per person) are due Feb 300:40
thinrichshttps://www.openstack.org/summit-login/login?BackURL=/summit/austin-2016/call-for-speakers/00:41
thinrichsI'm happy to talk with anyone who wants to submit something.00:41
*** otter768 has joined #openstack-meeting00:41
thinrichsFinal reminder: we are now gating on python3, thanks in large part to ekcs00:41
thinrichsSo if your submission isn't python3 compliant, it won't pass tests00:42
thinrichs#topic distributed architecture00:43
*** openstack changes topic to "distributed architecture (Meeting topic: CongressTeamMeeting)"00:43
thinrichspballand: it's early in the new year; any progress yet?00:43
*** sputnik13 has quit IRC00:43
pballandI was out for much of the hoiday, still working toward next week’s deadline00:44
thinrichssounds good.  Let us know if we can help00:44
pballandI’m hitting some bumps where oslo.messaging is rejecting messages based on version (even though the version seems right) - will post to IRC and/or mailing list if I can’t get it working by tomorrow00:44
thinrichsSounds like the right thing.00:45
*** minwoob_ has quit IRC00:46
thinrichsThought that would take a bit longer.00:47
thinrichsLet's open it up for discussion then.00:47
thinrichs#topic open discussion00:47
*** openstack changes topic to "open discussion (Meeting topic: CongressTeamMeeting)"00:47
*** adahms has quit IRC00:47
*** sputnik13 has joined #openstack-meeting00:48
*** dmacpher has joined #openstack-meeting00:48
thinrichsIf there's nothing else, one thing to bounce off everyone is the agenda for the mid-cycle sprint00:49
thinrichsOn the wiki page, we have 3 topics (one for each of the 3 days):00:49
thinrichsThat was supposed to be a )   :, not a sad face.00:49
thinrichs(1) sprint to implement the first draft of the distributed architecture designed during the Liberty cycle,00:49
thinrichs(2) design a high-availability, high-throughput deployment of the distributed architecture00:49
thinrichs(3) discuss using Monasca as a robust way of injecting aggregated time-series data into Congress00:49
thinrichsHow does that sound?00:50
thinrichsI haven't heard from fabiog whether (3) is happening.00:50
thinrichsAt some point he mentioned maybe moving (3) to the front.00:50
pballandsounds good to me00:50
ekcsgreat.00:51
masahitosounds good.00:51
*** sputnik13 has quit IRC00:51
thinrichsIt still sounds good to me too.00:51
*** bobh has joined #openstack-meeting00:52
thinrichsIs there any sort of preparation we/I should do?00:52
thinrichsI should probably email out to the ML to make sure everyone who wants to attend knows about it.00:53
thinrichsI think I did that already, but we had more attendees at the last one than were regular on IRC.00:53
thinrichsGo ahead and fill out the eventbrite if you haven't.  In case fabiog needs a headcount for food/etc.00:54
*** gyee has quit IRC00:54
thinrichsIf there's nothing else, let's call that the end of the meeting.00:54
ekcswe’d hopefully be working on (1) already and have a good grip on the issues so that during the session we try to finalize.00:54
*** kebray has quit IRC00:54
*** ricolin has joined #openstack-meeting00:54
thinrichsekcs: Agreed.00:54
*** cdub has quit IRC00:54
thinrichsIf there's nothing else, Thanks all!00:55
masahitothanks, bye00:56
thinrichs#endmeeting00:56
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"00:56
openstackMeeting ended Thu Jan  7 00:56:10 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)00:56
openstackMinutes:        http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-01-07-00.00.html00:56
*** blmartin has quit IRC00:56
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-01-07-00.00.txt00:56
openstackLog:            http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-01-07-00.00.log.html00:56
*** masahito has left #openstack-meeting00:56
*** sputnik13 has joined #openstack-meeting00:56
*** dims has joined #openstack-meeting00:56
*** spzala has joined #openstack-meeting00:56
*** baoli has quit IRC00:57
*** novas0x2a|laptop has quit IRC00:57
*** thorst has joined #openstack-meeting00:58
*** sputnik13 has quit IRC00:58
*** ekcs has quit IRC00:58
*** zz_dimtruck is now known as dimtruck00:59
*** jaypipes has quit IRC00:59
*** spzala has quit IRC01:00
*** stanchan has quit IRC01:00
*** padkrish has quit IRC01:01
*** padkrish has joined #openstack-meeting01:01
*** thorst_ has joined #openstack-meeting01:04
*** spzala has joined #openstack-meeting01:06
*** thorst has quit IRC01:06
*** stanchan has joined #openstack-meeting01:08
*** merooney has joined #openstack-meeting01:10
*** padkrish has quit IRC01:10
*** bobh has quit IRC01:12
*** pvaneck has quit IRC01:12
*** Qiming has joined #openstack-meeting01:12
*** boris-42 has quit IRC01:13
*** pballand has quit IRC01:14
*** MaxPC has joined #openstack-meeting01:18
*** Sukhdev has quit IRC01:25
*** stanchan has quit IRC01:26
*** jjmb has joined #openstack-meeting01:29
*** jjmb has quit IRC01:29
*** jjmb has joined #openstack-meeting01:30
*** arvinchou_ has joined #openstack-meeting01:31
*** angdraug has quit IRC01:32
*** angdraug has joined #openstack-meeting01:33
*** asselin has quit IRC01:36
*** angdraug has quit IRC01:36
*** Sukhdev has joined #openstack-meeting01:38
*** ddieterly has joined #openstack-meeting01:41
*** robefran has quit IRC01:42
*** spzala has quit IRC01:42
*** absubram has joined #openstack-meeting01:42
*** Sukhdev has quit IRC01:43
*** absubram_ has joined #openstack-meeting01:43
*** garthb_ has quit IRC01:45
*** leeantho has quit IRC01:45
*** absubram has quit IRC01:47
*** absubram_ is now known as absubram01:47
*** mtanino has quit IRC01:47
*** jmckind has joined #openstack-meeting01:48
*** ricolin has quit IRC01:49
*** thinrichs has quit IRC01:54
*** dimtruck is now known as zz_dimtruck01:54
*** spzala has joined #openstack-meeting01:54
*** tfukushima has joined #openstack-meeting01:56
*** ricolin has joined #openstack-meeting01:56
*** joonmyung has quit IRC02:00
*** julim has joined #openstack-meeting02:00
*** harshs has quit IRC02:01
*** ljxiash has joined #openstack-meeting02:04
*** baohua has joined #openstack-meeting02:05
*** thinrichs has joined #openstack-meeting02:11
*** thinrichs has left #openstack-meeting02:11
*** baigk has quit IRC02:14
*** cloudtrainme has joined #openstack-meeting02:16
*** mrvinti has quit IRC02:17
*** zhurong has joined #openstack-meeting02:17
*** trozet has joined #openstack-meeting02:18
*** piet has joined #openstack-meeting02:20
*** baigk has joined #openstack-meeting02:20
*** sdake has quit IRC02:22
*** salv-orl_ has quit IRC02:23
*** salv-orlando has joined #openstack-meeting02:23
*** ljxiash has quit IRC02:23
*** ljxiash has joined #openstack-meeting02:24
*** banix has joined #openstack-meeting02:24
*** haomaiwang has joined #openstack-meeting02:26
*** claudiub has quit IRC02:27
*** jmckind has quit IRC02:28
*** fawadkhaliq has joined #openstack-meeting02:28
*** absubram has quit IRC02:28
*** haomaiw__ has joined #openstack-meeting02:29
*** ddieterly has quit IRC02:30
*** haomaiwang has quit IRC02:31
*** tochi has quit IRC02:32
*** houming has joined #openstack-meeting02:33
*** jmckind has joined #openstack-meeting02:34
*** jmckind has quit IRC02:34
*** comay has joined #openstack-meeting02:35
*** piet has quit IRC02:35
*** harshs has joined #openstack-meeting02:36
*** johnhunter has joined #openstack-meeting02:38
*** esker has joined #openstack-meeting02:40
*** baoli has joined #openstack-meeting02:42
*** baoli has quit IRC02:46
*** bobh has joined #openstack-meeting02:46
*** baoli has joined #openstack-meeting02:47
*** Fdaisuke has joined #openstack-meeting02:48
*** baoli has quit IRC02:48
*** harshs has quit IRC02:51
*** baoli has joined #openstack-meeting02:54
*** baoli has quit IRC02:54
*** baoli has joined #openstack-meeting02:55
*** ddieterly has joined #openstack-meeting02:56
*** ddieterly has quit IRC02:56
*** epico has joined #openstack-meeting02:57
*** ddieterly has joined #openstack-meeting02:58
*** bobh has quit IRC02:58
*** dims has quit IRC02:58
*** haomaiw__ has quit IRC03:01
*** haomaiwang has joined #openstack-meeting03:01
*** ddieterly has quit IRC03:02
*** andreykurilin__ has quit IRC03:02
*** boris-42 has joined #openstack-meeting03:02
*** thorst_ has quit IRC03:09
*** thorst has joined #openstack-meeting03:09
*** baoli has quit IRC03:12
*** sacharya has joined #openstack-meeting03:14
*** unicell1 has quit IRC03:16
*** cloudtrainme has quit IRC03:17
*** cloudtrainme has joined #openstack-meeting03:18
*** cloudtrainme has quit IRC03:18
*** thorst has quit IRC03:18
*** epico has quit IRC03:19
*** sacharya has quit IRC03:23
*** epico has joined #openstack-meeting03:25
*** salv-orlando has quit IRC03:26
*** salv-orlando has joined #openstack-meeting03:27
*** johnhunter has quit IRC03:29
*** trozet has quit IRC03:33
*** sacharya has joined #openstack-meeting03:34
*** jckasper_ has quit IRC03:34
*** jckasper has joined #openstack-meeting03:35
*** esker has quit IRC03:35
*** yamahata has quit IRC03:36
*** iyamahat has quit IRC03:36
*** esker has joined #openstack-meeting03:37
*** kebray has joined #openstack-meeting03:37
*** ljxiash has quit IRC03:38
*** leecalcote has joined #openstack-meeting03:38
*** ljxiash has joined #openstack-meeting03:39
*** jckasper has quit IRC03:40
*** sacharya has quit IRC03:40
*** dane has joined #openstack-meeting03:40
*** esker has quit IRC03:41
*** dane_leblanc_ has joined #openstack-meeting03:42
*** ljxiash has quit IRC03:43
*** leecalcote has quit IRC03:45
*** dane has quit IRC03:45
*** vishwanathj has joined #openstack-meeting03:49
*** fawadkhaliq has quit IRC03:49
*** vishwana_ has quit IRC03:51
*** tochi has joined #openstack-meeting03:53
*** mudassirlatif has quit IRC03:56
*** gongysh_ has quit IRC03:57
*** zz_dimtruck is now known as dimtruck03:58
*** ddieterly has joined #openstack-meeting03:58
*** haomaiwang has quit IRC04:01
*** haomaiwang has joined #openstack-meeting04:01
*** sacharya has joined #openstack-meeting04:02
*** thorst has joined #openstack-meeting04:02
*** ddieterly has quit IRC04:03
*** unicell has joined #openstack-meeting04:05
*** esker has joined #openstack-meeting04:06
*** links has joined #openstack-meeting04:07
*** thorst has quit IRC04:08
*** kebray has quit IRC04:08
*** thorst has joined #openstack-meeting04:08
*** salv-orl_ has joined #openstack-meeting04:09
*** gongysh_ has joined #openstack-meeting04:10
*** esker has quit IRC04:11
*** salv-orlando has quit IRC04:11
*** ljxiash has joined #openstack-meeting04:11
*** shyama has joined #openstack-meeting04:16
*** thorst has quit IRC04:17
*** ljxiash has quit IRC04:17
*** arvinchou_ has quit IRC04:17
*** esker has joined #openstack-meeting04:17
*** shyama has left #openstack-meeting04:18
*** coolsvap|away is now known as coolsvap04:21
*** esker has quit IRC04:22
*** dane_leblanc_ has quit IRC04:23
*** mrmartin has joined #openstack-meeting04:24
*** otter768 has quit IRC04:28
*** piet has joined #openstack-meeting04:29
*** topol has joined #openstack-meeting04:30
*** iyamahat has joined #openstack-meeting04:33
*** topol has quit IRC04:35
*** ljxiash has joined #openstack-meeting04:35
*** jckasper has joined #openstack-meeting04:39
*** harshs has joined #openstack-meeting04:42
*** ljxiash_ has joined #openstack-meeting04:43
*** ljxiash has quit IRC04:44
*** numans has joined #openstack-meeting04:44
*** piet has quit IRC04:47
*** annegentle has joined #openstack-meeting04:49
*** annegentle has quit IRC04:49
*** gjayavelu has joined #openstack-meeting04:51
*** jckasper has quit IRC04:53
*** banix has quit IRC04:56
*** sudipto has joined #openstack-meeting04:56
*** dmacpher has quit IRC04:58
*** ddieterly has joined #openstack-meeting04:59
*** haomaiwang has quit IRC05:01
*** haomaiwa_ has joined #openstack-meeting05:01
*** zhurong_ has joined #openstack-meeting05:02
*** esker has joined #openstack-meeting05:03
*** Ramanjaneya has joined #openstack-meeting05:03
*** absubram has joined #openstack-meeting05:06
*** ddieterly has quit IRC05:06
*** zhurong has quit IRC05:06
*** stanchan has joined #openstack-meeting05:07
*** esker has quit IRC05:08
*** MaxPC has quit IRC05:09
*** neelashah has joined #openstack-meeting05:09
*** neelashah has quit IRC05:10
*** mrmartin has quit IRC05:12
*** dimtruck is now known as zz_dimtruck05:14
*** dmacpher has joined #openstack-meeting05:14
*** dixiaoli has joined #openstack-meeting05:14
*** kevinbenton has quit IRC05:14
*** kevinbenton has joined #openstack-meeting05:14
*** thorst has joined #openstack-meeting05:15
*** liusheng has quit IRC05:16
*** gongysh_ has quit IRC05:16
*** liusheng has joined #openstack-meeting05:17
*** fawadkhaliq has joined #openstack-meeting05:20
*** DinaBelova has quit IRC05:21
*** thorst has quit IRC05:21
*** DinaBelova has joined #openstack-meeting05:22
*** baoli has joined #openstack-meeting05:23
*** baoli has quit IRC05:28
*** kevinbenton has quit IRC05:29
*** piet has joined #openstack-meeting05:31
*** gongysh_ has joined #openstack-meeting05:35
*** zhurong_ has quit IRC05:36
*** zhurong has joined #openstack-meeting05:37
*** iyamahat has quit IRC05:38
*** iyamahat has joined #openstack-meeting05:39
*** chhavi has joined #openstack-meeting05:41
*** piet has quit IRC05:43
*** chhavi has quit IRC05:46
*** ozamiatin has joined #openstack-meeting05:48
*** harshs has quit IRC05:54
*** katomo has joined #openstack-meeting05:54
*** rajinir has quit IRC05:55
*** Daisy has joined #openstack-meeting05:58
*** esker has joined #openstack-meeting05:58
Daisywho is around for i18n meeting ?06:00
katomoHi06:00
DaisyHi, katomo06:00
ianychoiHi Daisy and katomo !06:00
DaisyHi, ianychoi06:00
DaisyLet's start06:01
*** haomaiwa_ has quit IRC06:01
Daisy#startmeeting OpenStack I18n Meeting06:01
openstackMeeting started Thu Jan  7 06:01:03 2016 UTC and is due to finish in 60 minutes.  The chair is Daisy. Information about MeetBot at http://wiki.debian.org/MeetBot.06:01
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.06:01
*** openstack changes topic to " (Meeting topic: OpenStack I18n Meeting)"06:01
openstackThe meeting name has been set to 'openstack_i18n_meeting'06:01
katomoianychoi: hi06:01
DaisyWelcome, katomo and ianychoi06:01
*** tellesnobrega is now known as tellesnobrega_af06:01
ianychoihello :)06:01
Daisy#topic Glossary management process discussion06:01
*** openstack changes topic to "Glossary management process discussion (Meeting topic: OpenStack I18n Meeting)"06:01
*** 7JTABHHZB has joined #openstack-meeting06:01
DaisyWe have spent a long time to discuss the glossary translation.06:02
*** ddieterly has joined #openstack-meeting06:02
DaisyThere are three options: store glossary in pot, store glossary in RST and store glossary in YAML.06:02
katomo:906:02
DaisyThere is no perfect solutions.06:02
DaisyI think, we could select one and have the glossary on-line as soon as possible. When we think it cannot satisfy us, we improve them later.06:03
DaisyThe advantage of pot solution is : easy to synchronize with Zanata server, and support to use Zanata editor to translate.06:05
*** absubram has quit IRC06:05
*** JRobinson__ is now known as JRobinson__afk06:06
DaisyThe advantage of RST solution is: easily integrated with document, read friendly.06:06
Daisythe advantage of YAML is: support the comments (notes) of glossary06:06
*** ddieterly has quit IRC06:06
DaisyThe disadvantage of YAML is: cannot use Zanata editor to translate.06:07
Daisyso which one do you prefer ?06:07
*** chhavi has joined #openstack-meeting06:08
*** salv-orl_ has quit IRC06:08
katomocan we manage comment with RST?06:08
*** piet has joined #openstack-meeting06:08
Daisynot easily, have to code.06:08
*** salv-orlando has joined #openstack-meeting06:08
*** sacharya has quit IRC06:08
*** hdaniel has joined #openstack-meeting06:08
ianychoiThank you for your clarification. Then how about using YAML with pipelining Jenkins job (YAML->pot) ?06:09
katomowe cannot put just stub?06:10
katomoTERM06:10
katomo   DESC06:10
katomo   STUB for each LANG06:10
katomo?06:10
katomoeach lang team translate "STUB for each LANG" as Zanata06:10
*** markvoelker has quit IRC06:11
Daisyianychoi: As amotoki explained, he thinks context is very important. Translating with Zanata editor could not keep the context and could not keep the discussing history.06:11
Daisykatomo: what is stub ?06:11
Daisyianychoi: a context could be regarded as the explain of a terminology.06:12
katomoDaisy: sorry, i meant "dummy strings" for translation. i.e. language specific contents.06:12
katomoi think context is very important, too06:14
Daisykatomo: https://review.openstack.org/#/c/258924/06:14
ianychoiHmm.. seems to be difficult. YAML with rst location data (e.g., ": ../source/terminology.rst:3") will not make lose context data I think.06:14
Daisythis is the solution I proposed. It's a RST solution. The terminology.rst is a sample of glossary in RST format.06:15
katomoDaisy: thanks06:15
*** tfukushima has quit IRC06:16
DaisyWith Sphinx tool, if we convert terminology.rst into pot, we could only keep the terms, the explaination (context) will be ignored. But the context could be reviewed from the HTML page.06:16
DaisyThis is the YAML based solution : https://review.openstack.org/#/c/261767/06:17
*** esker has quit IRC06:18
DaisyDo you think we could accept to translate glossary with your text editor and upload translations into gerrit and discuss within Gerrit too ?06:18
katomoDaisy: Just a simple question. Do you want to maintain the own tools for glossary management?06:18
*** zhurong has quit IRC06:18
*** jftalta has joined #openstack-meeting06:18
jftaltaHi all06:19
*** zhurong has joined #openstack-meeting06:19
DaisyFrankly speaking, I would like to keep a terminology list in our repo, but I don't want to maintain our own translation tool.06:19
ianychoihello, jftalta06:19
DaisyI think the glossary translation tool should be supported as a part of Zanata.06:19
katomoHi jftalta06:20
DaisyHi, jftalta . Welcome.06:20
katomoDaisy: okay. I need a little more time.06:20
*** thorst has joined #openstack-meeting06:20
Daisyok.06:20
katomoI'm not sure as of now. My concern for Gerrit is each language coordinator can not controll their contents timely.06:20
aengWhat format file glosary is using?06:20
jftaltaSorry for hé delay. It's early un France and I'm having breakfast...06:21
katomoNeedless to say, we can add all language coorinator as core. but I think it is not appropriate...06:21
*** merooney has quit IRC06:21
DaisyWe have to convert glossary into pot, finally. because Zanata only support pot format and csv format. We are discussing which format to use now: rst, pot, yaml.06:21
*** arvinchou_ has joined #openstack-meeting06:21
*** chhavi has quit IRC06:22
DaisyOK. We don't waste time here. Let's keep on the discussion on ML. Firstly, we clarify the requirement, and then we think about the solution.06:23
jftalta@daisy : I'm sorry but i've got to get ready to go to office. Just want to say that I'm thé french team coordinatrice.06:23
DaisyGreat !06:23
Daisywelcome, jftalta .06:23
jftaltaSorry, coordinator06:23
ianychoiI think yaml could be useful if we want to import pot to Zanata, but I think mostly it will not be needed.06:23
jftaltaThanks Daisy :)06:24
*** piet has quit IRC06:24
DaisyYou could go to office then. We have meeting in the third Thursday every month at 1300UTC. You may attend that one.06:24
jftaltaMaxime Coquerel and Safouen Benhadj  will help.06:24
DaisyGreat. Thank you, jftalta .06:24
ianychoiNice to meet you, jftalta! I am a Korean team translator.06:25
katomofjtalta: welcome :) again06:25
jftaltaHi ianychoi. Nice to meet you.06:25
DaisySo action item is to clarify the requirements and set priorities. and we discuss the solutions on ML.06:26
jftaltaHi Katomo06:26
ianychoi+1, Daisy06:26
jftaltaI have to leave you. See you on next meeting.06:26
ianychoiSee you :)06:26
*** thorst has quit IRC06:26
*** JRobinson__afk is now known as JRobinson__06:26
katomookay06:27
DaisySee you, jftalta06:27
DaisyNext topic06:27
katomosee you06:27
Daisy#topic state of progress: stackalytics integration06:27
*** openstack changes topic to "state of progress: stackalytics integration (Meeting topic: OpenStack I18n Meeting)"06:27
*** tfukushima has joined #openstack-meeting06:28
DaisyI'm sorry to say I'm lost on the progress too. I failed to connect with Ilya for a long time.06:28
aengfrom Zanata, we've completed contributor's list06:28
aengnext will be the review stats06:28
*** otter768 has joined #openstack-meeting06:29
katomogreat06:29
DaisyI think, it may be not polite, but if I still cannot connect with Ilya, we may consider to change a owner.06:29
ianychoiwow, great Zanata :)06:29
katomohmmm06:29
Daisyaeng: thank you for the update. Which version support contributor's list ?06:29
*** sacharya has joined #openstack-meeting06:30
aengupcoming release, 3.9.X06:30
Daisywhen ?06:30
*** neeti has joined #openstack-meeting06:30
*** jftalta has quit IRC06:30
aengwell.. we just release 3.8 recently06:30
aengprobably 2-3 months06:30
katomoT_T06:30
Daisyoh. Are you able to support the review stats in a same release ?06:30
Daisythe question is to aeng.06:31
aengshould be able to06:31
aengtargeting this or next sprint06:31
aengbut should be in 3.906:31
DaisyBecause we may bother infra guys to upgrade when Zanata is ready. I think it will be great if we only need 1 upgrade.06:31
Daisyso aeng, please put these two features in 1 release. So we don't need to upgrade twice.06:32
*** garyk has quit IRC06:32
aeng:)06:32
aeng+106:32
katomonice06:32
ianychoiThanks! :)06:33
*** garyk has joined #openstack-meeting06:33
DaisyWho knows when is next summit ? In April or in May ?06:33
ianychoithe last weekdays on April06:33
Qiminghttp://docs.openstack.org/releases/schedules/mitaka.html06:33
*** zhurong_ has joined #openstack-meeting06:33
Daisyok. Thank you, Qiming and ianychoi06:33
*** otter768 has quit IRC06:33
DaisyNot sure if we could catch next summit.06:34
*** zhurong has quit IRC06:34
Daisyso I will continue to ping Ilya and see his status. I will update with ML.06:35
katomothanks06:35
DaisyNext topic06:35
ianychoiokay06:35
Daisy#topic state of progress: dashboard translation check site06:35
*** openstack changes topic to "state of progress: dashboard translation check site (Meeting topic: OpenStack I18n Meeting)"06:35
DaisyI got a intern from HP, Elizabeth's team, who would like to help.06:36
DaisyIt's great. So we have two people working together on this task.06:36
katomowow06:36
ianychoiwow nice..!06:37
DaisyThe intern will help on the OpenStack setup , and I will work on the part to set up Zanata setup and pull translations daily.06:37
DaisyI'm studying the infrastructure scripts to set up Zanata now.06:38
*** agireud has quit IRC06:38
*** PsionTheory has quit IRC06:38
*** sacharya has quit IRC06:38
DaisyNext meeting, hope I could invite that intern join us and we could have some progress report.06:38
aengwow!06:39
Daisyany questions here ?06:39
DaisyWhen do we need the website ready ?06:39
Daisythe deadline ?06:39
katomowhen we start dashboard translation, i think06:40
DaisyI would set on the end of Feb.06:40
katomogood timing06:41
DaisySoft freeze is Feb 29-406:41
ianychoi+106:41
katomoyes06:41
Daisyok.06:41
DaisyNext topic06:41
Daisy#topic state of progress: install guide translation06:42
*** openstack changes topic to "state of progress: install guide translation (Meeting topic: OpenStack I18n Meeting)"06:42
DaisyI see Japanese and Chinese team have finished the translations.06:42
DaisyKorean team have good progress.06:42
Daisyianychoi: don't forget we have to translate common too.06:42
Daisycommon is a part of installation guide.06:43
ianychoiThanks. me and ujuc are discussing it for install-guide translation including common-rst.06:43
DaisyThank you, ianychoi . I see you have finished the translation of install-guide.06:43
ianychoiMy question is that what would be a good timing to set out translation as draft on docs.openstack.org?06:44
ianychois/out/our/06:44
Daisygood question.06:44
Daisykatomo: any thoughts ?06:44
DaisyMy question is what we need to do to publish the installation guide ?06:44
*** agireud has joined #openstack-meeting06:44
katomowhen roughly reviewed06:45
ianychoiOkay, got it thanks :)06:45
katomoas far as japanese team. you can pushlish you own timing.06:45
Daisyok.06:46
katomo*publish06:46
DaisyThank you, katomo06:46
ianychoiAnd one more question: terms:`bula` in install-guide references to common-rst.06:46
ianychoiAm I understanding right?06:46
katomoyes06:46
katomoglossary (RST) is included in "common-rst"06:47
ianychoiOkay.. I think Korean team should review the consistency between install-guide and common-rst. Thanks, katomo !06:47
*** vgridnev has joined #openstack-meeting06:48
Daisyok. Let's move to open discussion.06:48
Daisy#topic open discussion06:48
*** openstack changes topic to "open discussion (Meeting topic: OpenStack I18n Meeting)"06:48
DaisyI'd like to update something related with Austin summit.06:49
DaisyIt's time to book meeting times for Austin summit.06:49
DaisyWe will need a half day contributors' meet up. I don't know how many meeting time slots we need in Austin summit.06:49
DaisyI don't have discuss topics in my mind.06:50
DaisyIf you have, please email me.06:50
DaisyI don't know how many meeting time slots we need in Austin summit, besides a half day contributors meet up. I don't have specific topics in my mind now. If you have, you could email me.06:50
aengstakalitics topic?06:51
aengand glossary perhaps?06:51
katomogood idea06:51
Daisygood suggestion, aeng06:51
*** tongli has quit IRC06:51
*** unicell1 has joined #openstack-meeting06:51
ianychoinice idea06:52
aenggood to follow up and see what we missing still or needed06:52
*** unicell has quit IRC06:52
aengalright, got to go now. Thanks everyone06:52
*** aeng has quit IRC06:52
*** eranrom has joined #openstack-meeting06:53
*** aerwin3_ has quit IRC06:53
DaisyI don't hear anything new about the summit pass criteria. If I get, I will let you know.06:54
*** hurricanerix has quit IRC06:54
*** itsuugo has quit IRC06:54
*** peluse has quit IRC06:54
*** irenab has quit IRC06:54
*** itsuugo has joined #openstack-meeting06:55
Daisyanything else to discuss today ?06:55
katomonone from me06:55
*** aerwin3 has joined #openstack-meeting06:55
ianychoinope from me06:56
*** coolsvap is now known as coolsvap|away06:56
*** hurricanerix has joined #openstack-meeting06:56
DaisyThank you for attending.06:56
DaisyI will close the meeting then.06:56
*** peluse has joined #openstack-meeting06:56
ianychoiThanks all! :)06:56
katomothanks06:56
Daisy#endmeeting06:56
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"06:56
openstackMeeting ended Thu Jan  7 06:56:55 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)06:56
openstackMinutes:        http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2016/openstack_i18n_meeting.2016-01-07-06.01.html06:56
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2016/openstack_i18n_meeting.2016-01-07-06.01.txt06:56
openstackLog:            http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2016/openstack_i18n_meeting.2016-01-07-06.01.log.html06:57
katomoDaisy, ianychoi06:57
*** katomo has quit IRC06:57
*** tongli has joined #openstack-meeting06:58
*** esker has joined #openstack-meeting07:00
*** hoangcx_ has quit IRC07:00
*** 7JTABHHZB has quit IRC07:01
*** ddieterly has joined #openstack-meeting07:03
*** esker has quit IRC07:05
*** dmorita has quit IRC07:05
*** haomaiwang has joined #openstack-meeting07:07
*** ddieterly has quit IRC07:08
*** hdaniel has quit IRC07:11
*** hdaniel has joined #openstack-meeting07:11
*** markvoelker has joined #openstack-meeting07:11
*** paul-carlton2 has joined #openstack-meeting07:12
*** SridharG has joined #openstack-meeting07:12
*** markvoelker has quit IRC07:16
*** nadya has joined #openstack-meeting07:17
*** nadya is now known as Guest8646207:17
*** hdaniel has quit IRC07:18
*** kevinbenton has joined #openstack-meeting07:18
*** kevinbenton has quit IRC07:20
*** kevinbenton has joined #openstack-meeting07:20
*** irenab has joined #openstack-meeting07:20
*** vahidh has quit IRC07:22
*** thorst has joined #openstack-meeting07:25
*** kevinbenton has quit IRC07:26
*** belmoreira has joined #openstack-meeting07:26
*** bochi-michael has joined #openstack-meeting07:29
*** kevinbenton has joined #openstack-meeting07:29
*** thorst has quit IRC07:32
*** tiantian has quit IRC07:37
*** sacharya has joined #openstack-meeting07:38
*** sudipto has quit IRC07:39
*** isaacb has joined #openstack-meeting07:39
*** coolsvap|away is now known as coolsvap07:41
*** sacharya has quit IRC07:43
*** ljxiash_ has quit IRC07:44
*** eumel8 has joined #openstack-meeting07:44
*** pots2 has joined #openstack-meeting07:48
*** ljxiash has joined #openstack-meeting07:49
*** pots4 has joined #openstack-meeting07:49
*** mrmartin has joined #openstack-meeting07:50
*** dixiaoli_ has joined #openstack-meeting07:50
*** pots3 has quit IRC07:51
*** dixiaoli_ has quit IRC07:51
*** pots has quit IRC07:51
*** JRobinson__ has quit IRC07:52
*** jtomasek has joined #openstack-meeting07:53
*** dixiaoli has quit IRC07:54
*** dmacpher has quit IRC07:56
*** comay has quit IRC07:57
*** hdaniel has joined #openstack-meeting07:58
*** fzdarsky has joined #openstack-meeting08:00
*** fawadkhaliq has quit IRC08:00
*** otter768 has joined #openstack-meeting08:00
*** haomaiwang has quit IRC08:01
*** haomaiwang has joined #openstack-meeting08:01
*** otter768_ has joined #openstack-meeting08:02
*** ddieterly has joined #openstack-meeting08:04
*** salv-orlando has quit IRC08:04
*** otter76__ has joined #openstack-meeting08:04
*** otter768 has quit IRC08:04
*** salv-orlando has joined #openstack-meeting08:04
*** dmorita has joined #openstack-meeting08:06
*** otter76__ has quit IRC08:06
*** otter768 has joined #openstack-meeting08:06
*** Guest86462 has quit IRC08:06
*** paul-carlton2 has quit IRC08:06
*** otter768_ has quit IRC08:06
*** matrohon has joined #openstack-meeting08:07
*** otter768_ has joined #openstack-meeting08:08
*** pots4 has quit IRC08:08
*** pots2 has quit IRC08:08
*** otter768 has quit IRC08:08
*** pots has joined #openstack-meeting08:08
*** ddieterly has quit IRC08:09
*** otter768 has joined #openstack-meeting08:10
*** otter768_ has quit IRC08:10
*** dmorita has quit IRC08:10
*** pots2 has joined #openstack-meeting08:10
*** eumel8 has left #openstack-meeting08:10
*** otter768_ has joined #openstack-meeting08:12
*** yamamoto has joined #openstack-meeting08:12
*** otter768_ has quit IRC08:13
*** otter768_ has joined #openstack-meeting08:14
*** isaacb has quit IRC08:14
*** otter768 has quit IRC08:14
*** otter768_ has quit IRC08:15
*** otter768 has joined #openstack-meeting08:15
*** bvandenh has joined #openstack-meeting08:17
*** otter768_ has joined #openstack-meeting08:17
*** otter768 has quit IRC08:17
*** hdaniel has quit IRC08:18
*** hdaniel has joined #openstack-meeting08:19
*** otter768_ has quit IRC08:19
*** otter768 has joined #openstack-meeting08:19
*** yamamoto has quit IRC08:20
*** paul-carlton2 has joined #openstack-meeting08:20
*** jichen has joined #openstack-meeting08:21
*** otter768_ has joined #openstack-meeting08:21
*** otter768 has quit IRC08:21
*** otter768_ has quit IRC08:23
*** otter768 has joined #openstack-meeting08:23
*** otter768_ has joined #openstack-meeting08:25
*** ihrachys has joined #openstack-meeting08:27
*** otter76__ has joined #openstack-meeting08:27
*** ricolin has quit IRC08:28
*** otter768 has quit IRC08:28
*** craige has quit IRC08:29
*** otter768 has joined #openstack-meeting08:29
*** jtomasek has quit IRC08:29
*** jtomasek has joined #openstack-meeting08:30
*** salv-orlando has quit IRC08:30
*** salv-orlando has joined #openstack-meeting08:30
*** otter768_ has quit IRC08:30
*** otter768_ has joined #openstack-meeting08:31
*** otter76__ has quit IRC08:31
*** thorst has joined #openstack-meeting08:32
*** otter76__ has joined #openstack-meeting08:33
*** otter768 has quit IRC08:33
*** otter768 has joined #openstack-meeting08:34
*** otter76__ has quit IRC08:35
*** otter768_ has quit IRC08:36
*** otter768_ has joined #openstack-meeting08:36
*** otter768 has quit IRC08:37
*** thorst has quit IRC08:37
*** isaacb has joined #openstack-meeting08:37
*** xavileon has joined #openstack-meeting08:37
*** otter768_ has quit IRC08:38
*** otter768 has joined #openstack-meeting08:38
*** zeih has joined #openstack-meeting08:38
*** otter768 has quit IRC08:40
*** otter768 has joined #openstack-meeting08:40
*** ruagair_ has joined #openstack-meeting08:41
*** ruagair_ has quit IRC08:42
*** otter768_ has joined #openstack-meeting08:42
*** ruagair_ has joined #openstack-meeting08:44
*** otter76__ has joined #openstack-meeting08:44
*** otter768 has quit IRC08:44
*** jlanoux has joined #openstack-meeting08:46
*** otter76__ has quit IRC08:46
*** otter768 has joined #openstack-meeting08:46
*** otter768_ has quit IRC08:47
*** macsz has joined #openstack-meeting08:47
*** mkoderer_cloud has joined #openstack-meeting08:48
*** otter768_ has joined #openstack-meeting08:48
*** otter768 has quit IRC08:48
*** ijw has quit IRC08:49
*** otter768 has joined #openstack-meeting08:50
*** ruagair_ has quit IRC08:50
*** ruagair has joined #openstack-meeting08:51
*** otter76__ has joined #openstack-meeting08:52
*** otter768 has quit IRC08:52
*** otter768_ has quit IRC08:52
*** esker has joined #openstack-meeting08:53
*** otter76__ has quit IRC08:53
*** otter768 has joined #openstack-meeting08:53
*** lezbar__ has joined #openstack-meeting08:54
*** otter768_ has joined #openstack-meeting08:56
*** paul-carlton2 has quit IRC08:57
*** esker has quit IRC08:57
*** otter768 has quit IRC08:57
*** ygbo has joined #openstack-meeting08:57
*** otter76__ has joined #openstack-meeting08:58
*** otter768 has joined #openstack-meeting08:59
*** otter76__ has quit IRC08:59
*** hoangcx has joined #openstack-meeting09:00
*** jordanP has joined #openstack-meeting09:00
*** baohua has quit IRC09:00
*** haomaiwang has quit IRC09:01
*** otter768_ has quit IRC09:01
*** otter768_ has joined #openstack-meeting09:01
*** haomaiwang has joined #openstack-meeting09:01
*** otter76__ has joined #openstack-meeting09:03
*** otter768_ has quit IRC09:03
jordanPwe want meeting ! :)09:04
*** otter768 has quit IRC09:04
mkoderer_cloudjordanP: happy new year09:04
*** zeih has quit IRC09:04
*** ddieterly has joined #openstack-meeting09:04
jordanPmkoderer_cloud, thanks ! you too :)09:04
mkoderer_cloudjordanP: am I acutally not sure whos the host today09:05
*** otter768 has joined #openstack-meeting09:05
*** otter76__ has quit IRC09:05
*** AmirBaleghi11117 has joined #openstack-meeting09:05
dmelladolol09:06
dmelladohi guys xd09:06
mkoderer_cloudlet just start the meeting09:06
dmelladoI was wondering if it was cancelled today09:06
mkoderer_clouddmellado: I remeber a mail from mtreinish saying that this will be the first one09:06
jordanP"Sorry, as http://lists.openstack.org/pipermail/openstack-dev/2016-January/083397.html09:06
jordanPthe next meeting should be scheduled at 1700 UTC, not 0900 UTC."09:06
*** vgridnev has quit IRC09:06
dmelladoouch09:06
jordanPI guess it's tonigh then09:06
dmelladodidn't read that09:07
dmelladoxD09:07
mkoderer_clouddamn09:07
jordanPhttp://lists.openstack.org/pipermail/openstack-dev/2016-January/083397.html09:07
*** nadya has joined #openstack-meeting09:07
*** otter768_ has joined #openstack-meeting09:07
jordanPlet's all relax and have a coffee then !09:07
*** nadya is now known as Guest4637509:07
*** nicolas_s has joined #openstack-meeting09:07
dmelladolol09:07
dmelladojordanP: mkoderer_cloud could you review this in any case? Thanks in advance!09:08
dmelladohttps://review.openstack.org/#/c/259746/09:08
*** haomaiwang has quit IRC09:08
*** safchain has joined #openstack-meeting09:09
*** otter76__ has joined #openstack-meeting09:09
*** otter768_ has quit IRC09:09
*** haomaiwang has joined #openstack-meeting09:09
*** ddieterly has quit IRC09:09
*** AmirBaleghi11117 has quit IRC09:10
*** otter768 has quit IRC09:10
*** jogo has quit IRC09:10
*** otter768 has joined #openstack-meeting09:11
*** otter76__ has quit IRC09:11
*** arvinchou_ has quit IRC09:11
*** Guest46375 has quit IRC09:11
*** markvoelker has joined #openstack-meeting09:12
*** otter768 has quit IRC09:13
*** dixiaoli has joined #openstack-meeting09:13
*** otter768_ has joined #openstack-meeting09:13
*** AmirBaleghi11117 has joined #openstack-meeting09:13
*** otter768 has joined #openstack-meeting09:14
*** otter768_ has quit IRC09:15
*** klkumar has joined #openstack-meeting09:16
*** otter768 has quit IRC09:16
*** otter768 has joined #openstack-meeting09:17
*** markvoelker has quit IRC09:17
*** AmirBaleghi11117 has quit IRC09:17
*** otter768 has quit IRC09:18
*** otter768 has joined #openstack-meeting09:18
*** AmirBaleghi11117 has joined #openstack-meeting09:18
*** vgridnev has joined #openstack-meeting09:20
*** otter768_ has joined #openstack-meeting09:20
*** otter768 has quit IRC09:20
*** yassine__ has joined #openstack-meeting09:20
*** bvandenh has quit IRC09:21
*** rossella_s has joined #openstack-meeting09:21
*** mrmartin has quit IRC09:22
*** fzdarsky is now known as fzdarsky|afk09:22
*** otter768_ has quit IRC09:22
*** otter768 has joined #openstack-meeting09:22
*** ruagair is now known as craige09:24
*** otter768 has quit IRC09:24
*** otter768_ has joined #openstack-meeting09:24
*** Daisy has quit IRC09:25
*** vgridnev has quit IRC09:25
*** zeih has joined #openstack-meeting09:25
*** otter768_ has quit IRC09:25
*** craige is now known as ruagair09:26
*** otter768 has joined #openstack-meeting09:26
*** zhurong_ has quit IRC09:27
*** otter768_ has joined #openstack-meeting09:28
*** otter768 has quit IRC09:28
*** otter768 has joined #openstack-meeting09:30
*** otter768_ has quit IRC09:30
*** iyamahat has quit IRC09:30
*** oomichi has quit IRC09:32
*** otter768_ has joined #openstack-meeting09:32
*** bvandenh has joined #openstack-meeting09:33
*** otter76__ has joined #openstack-meeting09:34
*** nicolas_s has left #openstack-meeting09:34
*** otter768 has quit IRC09:34
*** derekh has joined #openstack-meeting09:35
*** otter768 has joined #openstack-meeting09:35
*** haomaiwang has quit IRC09:35
*** otter76__ has quit IRC09:35
*** thorst has joined #openstack-meeting09:36
*** otter768_ has quit IRC09:36
*** jogo has joined #openstack-meeting09:37
*** otter768_ has joined #openstack-meeting09:37
*** egallen has joined #openstack-meeting09:38
*** otter768_ has quit IRC09:39
*** otter76__ has joined #openstack-meeting09:39
*** sacharya has joined #openstack-meeting09:40
*** otter768 has quit IRC09:40
*** otter76__ has quit IRC09:41
*** bvandenh has quit IRC09:41
*** otter768 has joined #openstack-meeting09:41
*** yamahata has joined #openstack-meeting09:41
*** thorst has quit IRC09:42
*** otter768_ has joined #openstack-meeting09:43
*** mhickey has joined #openstack-meeting09:43
*** otter768 has quit IRC09:43
*** sacharya has quit IRC09:44
*** haomaiwa_ has joined #openstack-meeting09:45
*** stanchan has quit IRC09:45
*** otter768 has joined #openstack-meeting09:45
*** otter76__ has joined #openstack-meeting09:47
*** otter768_ has quit IRC09:48
*** tongli has quit IRC09:48
*** otter768_ has joined #openstack-meeting09:49
*** otter76__ has quit IRC09:49
*** otter768 has quit IRC09:50
*** otter768_ has quit IRC09:51
*** otter768 has joined #openstack-meeting09:51
*** ozamiatin has quit IRC09:52
*** yamahata has quit IRC09:53
*** otter768_ has joined #openstack-meeting09:53
*** otter76__ has joined #openstack-meeting09:55
*** otter768 has quit IRC09:56
*** otter768 has joined #openstack-meeting09:56
*** otter76__ has quit IRC09:57
*** otter768_ has quit IRC09:57
*** ndipanov has joined #openstack-meeting09:57
*** haomaiwa_ has quit IRC09:58
*** gjayavelu has quit IRC09:58
*** otter768_ has joined #openstack-meeting09:58
*** otter768_ has quit IRC10:00
*** otter768_ has joined #openstack-meeting10:00
*** otter768 has quit IRC10:01
*** otter768 has joined #openstack-meeting10:02
*** otter768_ has quit IRC10:02
*** otter768_ has joined #openstack-meeting10:04
*** otter768 has quit IRC10:04
*** baohua has joined #openstack-meeting10:04
*** hdaniel has quit IRC10:05
*** ddieterly has joined #openstack-meeting10:05
*** otter768_ has quit IRC10:05
*** ruagair has quit IRC10:06
*** otter768 has joined #openstack-meeting10:06
*** craige_ has joined #openstack-meeting10:07
*** haomaiwang has joined #openstack-meeting10:07
*** otter768 has quit IRC10:08
*** otter768 has joined #openstack-meeting10:08
*** salv-orl_ has joined #openstack-meeting10:08
*** craige_ is now known as craige10:09
*** otter768_ has joined #openstack-meeting10:10
*** zhhuabj has quit IRC10:10
*** ddieterly has quit IRC10:10
*** sputnik13 has joined #openstack-meeting10:10
*** salv-orlando has quit IRC10:11
*** otter768_ has quit IRC10:11
*** otter768_ has joined #openstack-meeting10:12
*** otter768 has quit IRC10:13
*** otter768 has joined #openstack-meeting10:14
*** otter768_ has quit IRC10:14
*** electrofelix has joined #openstack-meeting10:15
*** fzdarsky|afk is now known as fzdarsky10:15
*** otter768_ has joined #openstack-meeting10:16
*** otter768 has quit IRC10:16
*** fawadkhaliq has joined #openstack-meeting10:16
*** otter768_ has quit IRC10:17
*** otter768 has joined #openstack-meeting10:17
*** otter768 has quit IRC10:19
*** otter768 has joined #openstack-meeting10:19
*** hdaniel has joined #openstack-meeting10:20
*** tfukushima has quit IRC10:21
*** otter768_ has joined #openstack-meeting10:21
*** otter768 has quit IRC10:21
*** tfukushima has joined #openstack-meeting10:22
*** rossella_s has quit IRC10:22
*** rossella_s has joined #openstack-meeting10:22
*** Qiming has quit IRC10:22
*** otter768_ has quit IRC10:23
*** otter768 has joined #openstack-meeting10:23
*** otter768_ has joined #openstack-meeting10:25
*** otter768 has quit IRC10:26
*** otter768_ has quit IRC10:27
*** otter768 has joined #openstack-meeting10:27
*** sputnik13 has quit IRC10:28
*** sputnik13 has joined #openstack-meeting10:28
*** otter768 has quit IRC10:28
*** otter768 has joined #openstack-meeting10:29
*** zeih has quit IRC10:30
*** otter768_ has joined #openstack-meeting10:31
*** otter768 has quit IRC10:31
*** Yipei has joined #openstack-meeting10:31
*** haomaiwang has quit IRC10:32
*** Yipei has left #openstack-meeting10:32
*** epico has quit IRC10:33
*** newypei has joined #openstack-meeting10:35
*** hdaniel has quit IRC10:35
*** otter768_ has quit IRC10:35
*** AmirBaleghi11117 has quit IRC10:37
*** baohua has quit IRC10:37
*** baohua_ has joined #openstack-meeting10:37
*** newypei has left #openstack-meeting10:38
*** apoorvad has joined #openstack-meeting10:40
*** AmirBaleghi11117 has joined #openstack-meeting10:40
*** newypei has joined #openstack-meeting10:40
*** thorst has joined #openstack-meeting10:41
*** esker has joined #openstack-meeting10:41
newypeiHi10:43
*** hoangcx has quit IRC10:43
*** haomaiwang has joined #openstack-meeting10:45
*** esker has quit IRC10:45
*** sdake has joined #openstack-meeting10:46
*** newypei has quit IRC10:46
*** thorst has quit IRC10:47
*** hdaniel has joined #openstack-meeting10:49
*** ociuhandu has quit IRC10:51
*** jordanP has left #openstack-meeting10:53
*** haomaiwang has quit IRC10:57
*** hashar has joined #openstack-meeting10:59
*** zeih has joined #openstack-meeting11:00
*** ddieterly has joined #openstack-meeting11:06
*** ljxiash has quit IRC11:06
*** acoles_ is now known as acoles11:06
*** ljxiash has joined #openstack-meeting11:06
*** acoles has left #openstack-meeting11:07
*** salv-orl_ has quit IRC11:07
*** salv-orlando has joined #openstack-meeting11:08
*** haomaiwang has joined #openstack-meeting11:08
*** ljxiash has quit IRC11:09
*** ljxiash has joined #openstack-meeting11:09
*** dims has joined #openstack-meeting11:10
*** ddieterly has quit IRC11:11
*** coolsvap is now known as coolsvap|away11:11
*** zeih has quit IRC11:11
*** dixiaoli has quit IRC11:11
*** markvoelker has joined #openstack-meeting11:13
*** Qiming has joined #openstack-meeting11:14
*** sudipto has joined #openstack-meeting11:16
*** markvoelker has quit IRC11:18
*** ociuhandu has joined #openstack-meeting11:19
*** haomaiwang has quit IRC11:21
*** haomaiwang has joined #openstack-meeting11:24
*** tfukushima has quit IRC11:28
*** paul-carlton2 has joined #openstack-meeting11:28
*** zeih has joined #openstack-meeting11:29
*** dmorita has joined #openstack-meeting11:33
*** haomaiwang has quit IRC11:36
*** sdake has quit IRC11:36
*** dmorita has quit IRC11:39
*** ljxiash has quit IRC11:40
*** ljxiash has joined #openstack-meeting11:40
*** 16WAAH8AU has joined #openstack-meeting11:41
*** thorst has joined #openstack-meeting11:45
*** ljxiash has quit IRC11:45
*** arvinchou_ has joined #openstack-meeting11:47
*** arvinchou_ has quit IRC11:48
*** rfolco has joined #openstack-meeting11:52
*** thorst has quit IRC11:52
*** 16WAAH8AU has quit IRC11:53
*** devananda has quit IRC11:54
*** haomaiwa_ has joined #openstack-meeting11:54
*** devananda has joined #openstack-meeting11:55
*** esker has joined #openstack-meeting11:56
*** tfukushima has joined #openstack-meeting11:57
*** tfukushima has quit IRC11:59
*** tfukushima has joined #openstack-meeting11:59
*** apoorvad has quit IRC12:00
*** esker has quit IRC12:00
*** haomaiwa_ has quit IRC12:01
*** arvinchou_ has joined #openstack-meeting12:02
*** tfukushima has quit IRC12:02
*** tfukushima has joined #openstack-meeting12:02
*** arvinchou_ has quit IRC12:02
*** baohua has joined #openstack-meeting12:02
*** arvinchou_ has joined #openstack-meeting12:03
*** arvinchou_ has quit IRC12:03
*** baohua_ has quit IRC12:03
*** arvinchou_ has joined #openstack-meeting12:04
*** tfukushima has quit IRC12:04
*** hichihara has joined #openstack-meeting12:04
*** arvinchou_ has joined #openstack-meeting12:04
*** tfukushima has joined #openstack-meeting12:05
*** haomaiwang has joined #openstack-meeting12:06
*** arvinchou_ has quit IRC12:06
*** arvinchou_ has joined #openstack-meeting12:06
*** arvinchou_ has quit IRC12:06
*** tfukushima has quit IRC12:06
*** ddieterly has joined #openstack-meeting12:07
*** arvinchou_ has joined #openstack-meeting12:07
*** tfukushima has joined #openstack-meeting12:07
*** arvinchou_ has quit IRC12:07
*** arvinchou_ has joined #openstack-meeting12:08
*** qwebirc26295 has joined #openstack-meeting12:08
*** arvinchou_ has quit IRC12:08
*** tfukushima has quit IRC12:08
*** tfukushima has joined #openstack-meeting12:08
*** nadya has joined #openstack-meeting12:09
*** qwebirc26295 has quit IRC12:09
*** nadya is now known as Guest9029312:09
*** gjayavelu has joined #openstack-meeting12:10
*** tfukushima has quit IRC12:10
*** tfukushima has joined #openstack-meeting12:11
*** ddieterly has quit IRC12:11
*** zhurong has joined #openstack-meeting12:12
*** ajmiller_ has joined #openstack-meeting12:12
*** ajmiller has quit IRC12:12
*** haomaiwang has quit IRC12:13
*** haomaiw__ has joined #openstack-meeting12:13
*** Guest90293 has quit IRC12:13
*** markvoelker has joined #openstack-meeting12:14
*** gjayavelu has quit IRC12:14
*** nadya has joined #openstack-meeting12:17
*** nadya is now known as Guest3344212:17
*** apoorvad has joined #openstack-meeting12:17
*** esker has joined #openstack-meeting12:17
*** hichihara has quit IRC12:17
*** kaisers has quit IRC12:17
*** markvoelker has quit IRC12:18
*** arvinchou_ has joined #openstack-meeting12:19
*** arvinchou_ has quit IRC12:19
*** arvinchou_ has joined #openstack-meeting12:20
*** arvinchou_ has quit IRC12:20
*** arvinchou_ has joined #openstack-meeting12:21
*** arvinchou_ has quit IRC12:21
*** baohua has quit IRC12:21
*** Guest33442 is now known as _nadya_12:21
*** arvinchou_ has joined #openstack-meeting12:21
*** arvinchou_ has quit IRC12:22
*** apoorvad has quit IRC12:22
*** esker has quit IRC12:22
*** arvinchou_ has joined #openstack-meeting12:22
*** baohua has joined #openstack-meeting12:22
*** arvinchou_ has quit IRC12:22
*** rtheis has joined #openstack-meeting12:22
*** arvinchou_ has joined #openstack-meeting12:23
*** arvinchou_ has quit IRC12:23
*** arvinchou_ has joined #openstack-meeting12:23
*** arvinchou_ has quit IRC12:24
*** arvinchou_ has joined #openstack-meeting12:24
*** arvinchou_ has quit IRC12:24
*** arvinchou_ has joined #openstack-meeting12:24
*** arvinchou_ has quit IRC12:25
*** arvinchou_ has joined #openstack-meeting12:25
*** mrmartin has joined #openstack-meeting12:25
*** tfukushima has quit IRC12:25
*** arvinchou_ has quit IRC12:25
*** tfukushima has joined #openstack-meeting12:26
*** arvinchou_ has joined #openstack-meeting12:26
*** arvinchou_ has quit IRC12:26
*** arvinchou_ has joined #openstack-meeting12:27
*** arvinchou_ has quit IRC12:27
*** tfukushima has quit IRC12:27
*** tfukushima has joined #openstack-meeting12:28
*** arvinchou_ has joined #openstack-meeting12:28
*** arvinchou_ has quit IRC12:28
*** arvinchou_ has joined #openstack-meeting12:29
*** arvinchou_ has quit IRC12:30
*** otter768 has joined #openstack-meeting12:32
*** tfukushima has quit IRC12:32
*** tfukushima has joined #openstack-meeting12:32
*** kaisers has joined #openstack-meeting12:33
*** raildo-afk is now known as raildo12:34
*** arvinchou_ has joined #openstack-meeting12:34
*** tfukushima has quit IRC12:34
*** haomaiw__ has quit IRC12:35
*** otter768 has quit IRC12:37
*** doug-fish has joined #openstack-meeting12:38
*** haomaiwa_ has joined #openstack-meeting12:38
*** arvinchou_ has quit IRC12:38
*** arvinchou_ has joined #openstack-meeting12:39
*** amrith is now known as _amrith_12:39
*** apoorvad has joined #openstack-meeting12:39
*** nmagnezi_ has joined #openstack-meeting12:39
*** baoli has joined #openstack-meeting12:41
*** arvinchou_ has quit IRC12:43
*** arvinchou_ has joined #openstack-meeting12:43
*** apoorvad has quit IRC12:43
*** arvinchou_ has quit IRC12:43
*** arvinc_ has joined #openstack-meeting12:43
*** arvinc_ has quit IRC12:44
*** jprovazn has joined #openstack-meeting12:46
*** thorst has joined #openstack-meeting12:47
*** zhhuabj has joined #openstack-meeting12:49
*** resker has joined #openstack-meeting12:50
*** delattec has joined #openstack-meeting12:50
*** haomaiwa_ has quit IRC12:51
*** markvan has quit IRC12:51
*** drankis has joined #openstack-meeting12:52
*** tochi has quit IRC12:52
*** cdelatte has quit IRC12:52
*** gcb has quit IRC12:52
*** resker has quit IRC12:52
*** markvan has joined #openstack-meeting12:53
*** houming has quit IRC12:58
*** haomaiwang has joined #openstack-meeting12:58
*** ljxiash has joined #openstack-meeting12:59
*** adahms has joined #openstack-meeting13:00
*** haomaiwang has quit IRC13:01
*** claudiub has joined #openstack-meeting13:01
*** haomaiwa_ has joined #openstack-meeting13:01
*** arvinc_ has joined #openstack-meeting13:02
*** arvinc_ has joined #openstack-meeting13:03
*** salv-orlando has quit IRC13:03
*** salv-orlando has joined #openstack-meeting13:03
*** ljxiash has quit IRC13:03
*** arvinc_ has quit IRC13:03
*** fawadkhaliq has quit IRC13:05
*** zhurong_ has joined #openstack-meeting13:05
*** doug-fish has quit IRC13:05
*** fawadkhaliq has joined #openstack-meeting13:05
*** zhurong has quit IRC13:05
*** gongysh has joined #openstack-meeting13:06
*** _nadya_ has quit IRC13:06
*** dprince has joined #openstack-meeting13:07
*** zhhuabj has quit IRC13:07
*** ddieterly has joined #openstack-meeting13:07
*** links has quit IRC13:07
*** eranrom has quit IRC13:08
*** zhhuabj has joined #openstack-meeting13:08
*** bochi-michael has quit IRC13:08
*** haomaiwa_ has quit IRC13:09
*** bobh has joined #openstack-meeting13:10
*** weshay_xchat has joined #openstack-meeting13:10
*** nmagnezi_ has quit IRC13:11
*** nmagnezi_ has joined #openstack-meeting13:11
*** bobh has quit IRC13:12
*** ddieterly has quit IRC13:12
*** fawadkhaliq has quit IRC13:15
*** fawadkhaliq has joined #openstack-meeting13:16
*** haomaiwa_ has joined #openstack-meeting13:16
*** claudiub has quit IRC13:17
*** unicell1 has quit IRC13:17
*** unicell has joined #openstack-meeting13:17
*** markvoelker has joined #openstack-meeting13:18
*** haomaiwa_ has quit IRC13:18
*** huats has quit IRC13:19
*** fawadk has joined #openstack-meeting13:19
*** tfukushima has joined #openstack-meeting13:20
*** huats has joined #openstack-meeting13:20
*** Ramanjaneya has quit IRC13:21
*** fawadkhaliq has quit IRC13:21
*** erlon has joined #openstack-meeting13:22
*** zhhuabj has quit IRC13:23
*** f13o has quit IRC13:23
*** sacharya has joined #openstack-meeting13:24
*** doug-fish has joined #openstack-meeting13:24
*** f13o has joined #openstack-meeting13:25
*** sacharya has quit IRC13:29
*** sudipto has quit IRC13:29
*** klkumar has quit IRC13:31
*** jjmb1 has joined #openstack-meeting13:33
*** jjmb has quit IRC13:33
*** apoorvad has joined #openstack-meeting13:34
*** sdake has joined #openstack-meeting13:34
*** harshs has joined #openstack-meeting13:35
*** tfukushima has quit IRC13:36
*** ndipanov has quit IRC13:36
*** cbouch has joined #openstack-meeting13:36
*** tfukushima has joined #openstack-meeting13:36
*** zz_dimtruck is now known as dimtruck13:37
*** apoorvad has quit IRC13:38
*** MaxPC has joined #openstack-meeting13:39
*** Daisy has joined #openstack-meeting13:40
*** haomaiwang has joined #openstack-meeting13:46
*** ddieterly has joined #openstack-meeting13:47
*** cdub has joined #openstack-meeting13:48
*** ddieterl_ has joined #openstack-meeting13:51
*** dimtruck is now known as zz_dimtruck13:51
*** _nadya_ has joined #openstack-meeting13:52
*** neeti has quit IRC13:53
*** doug-fis_ has joined #openstack-meeting13:53
*** ddieterly has quit IRC13:54
*** doug-fish has quit IRC13:55
*** neeti has joined #openstack-meeting13:56
*** baohua has quit IRC13:56
*** absubram has joined #openstack-meeting13:57
*** absubram_ has joined #openstack-meeting13:58
*** baohua has joined #openstack-meeting13:58
*** sfinucan has joined #openstack-meeting13:59
*** dmorita has joined #openstack-meeting14:00
*** haomaiwang has quit IRC14:01
*** andrearosa has joined #openstack-meeting14:01
*** absubram has quit IRC14:01
*** absubram_ is now known as absubram14:01
*** 5EXAAOC18 has joined #openstack-meeting14:01
*** robefran has joined #openstack-meeting14:02
*** kencjohnston has joined #openstack-meeting14:02
*** andrearosa has left #openstack-meeting14:02
*** xyang1 has joined #openstack-meeting14:03
*** andrearosa has joined #openstack-meeting14:03
*** njohnsto_ has joined #openstack-meeting14:03
*** eranrom has joined #openstack-meeting14:03
*** andrearosa has left #openstack-meeting14:04
*** claudiub has joined #openstack-meeting14:04
*** m1dev has joined #openstack-meeting14:04
*** delatte has joined #openstack-meeting14:05
*** dmorita has quit IRC14:05
*** zeih has quit IRC14:05
*** zeih_ has joined #openstack-meeting14:06
*** intr1nsic has quit IRC14:06
*** trozet has joined #openstack-meeting14:06
*** ljxiash has joined #openstack-meeting14:06
*** zeih has joined #openstack-meeting14:07
*** delattec has quit IRC14:08
*** trozet_ has joined #openstack-meeting14:08
*** zeih_ has quit IRC14:09
*** trozet_ has quit IRC14:09
*** intr1nsic has joined #openstack-meeting14:09
*** zeih_ has joined #openstack-meeting14:09
*** trozet_ has joined #openstack-meeting14:09
*** ddieterl_ has quit IRC14:09
*** fawadk has quit IRC14:10
*** zeih_ has quit IRC14:10
*** zeih has quit IRC14:10
*** esker has joined #openstack-meeting14:11
*** mkoderer_cloud has quit IRC14:11
*** harshs has quit IRC14:13
*** njohnsto_ has quit IRC14:13
*** yassine__ has quit IRC14:13
*** njohnsto_ has joined #openstack-meeting14:14
*** gcb_ has joined #openstack-meeting14:14
*** zeih has joined #openstack-meeting14:14
*** bobh has joined #openstack-meeting14:15
*** _matthias__ is now known as _matthias_14:15
*** zeih_ has joined #openstack-meeting14:15
*** njohnsto_ has quit IRC14:16
*** njohnsto_ has joined #openstack-meeting14:16
*** vgridnev has joined #openstack-meeting14:17
*** dkranz has joined #openstack-meeting14:17
*** amitgandhinz has joined #openstack-meeting14:17
*** intr1nsic has quit IRC14:18
*** bvandenh has joined #openstack-meeting14:19
*** zeih has quit IRC14:19
*** esker has quit IRC14:20
*** esker has joined #openstack-meeting14:21
*** rossella_s has quit IRC14:21
*** rossella_s has joined #openstack-meeting14:22
*** zeih has joined #openstack-meeting14:22
*** jmckind has joined #openstack-meeting14:22
*** jichen has quit IRC14:23
*** zeih_ has quit IRC14:25
*** jmckind_ has joined #openstack-meeting14:25
*** lblanchard has joined #openstack-meeting14:26
*** ndipanov has joined #openstack-meeting14:26
*** peristeri has joined #openstack-meeting14:27
*** jmckind has quit IRC14:27
*** irenab has quit IRC14:28
*** jckasper has joined #openstack-meeting14:28
*** banix has joined #openstack-meeting14:29
*** amitgandhinz has quit IRC14:29
*** neelashah has joined #openstack-meeting14:29
*** ljxiash has quit IRC14:29
*** amitgandhinz has joined #openstack-meeting14:29
*** _amrith_ is now known as amrith14:30
*** trozet_ has quit IRC14:30
*** ljxiash has joined #openstack-meeting14:32
*** trozet_ has joined #openstack-meeting14:32
*** yassine__ has joined #openstack-meeting14:32
*** otter768 has joined #openstack-meeting14:32
*** yassine__ has quit IRC14:33
*** yassine__ has joined #openstack-meeting14:33
*** zeih has quit IRC14:33
*** neeti has quit IRC14:34
*** apoorvad has joined #openstack-meeting14:35
*** trozet has quit IRC14:35
*** zeih has joined #openstack-meeting14:35
*** trozet_ is now known as trozet14:35
*** itzdilip has joined #openstack-meeting14:37
*** otter768 has quit IRC14:38
*** itzdilip has left #openstack-meeting14:38
*** topol has joined #openstack-meeting14:38
*** zz_dimtruck is now known as dimtruck14:38
*** yingjun has joined #openstack-meeting14:39
*** itzdilip1 has joined #openstack-meeting14:39
*** yingjun has left #openstack-meeting14:39
*** trozet_ has joined #openstack-meeting14:39
*** zhurong_ has quit IRC14:39
*** blmartin has joined #openstack-meeting14:40
*** blmartin has left #openstack-meeting14:40
*** apoorvad has quit IRC14:40
*** tfukushima has quit IRC14:41
*** ddieterly has joined #openstack-meeting14:42
*** ddieterly has quit IRC14:42
*** Kevin_Zheng has quit IRC14:42
*** ddieterly has joined #openstack-meeting14:42
*** hdaniel has quit IRC14:43
*** rbowen has joined #openstack-meeting14:44
*** lpabon has joined #openstack-meeting14:45
*** dmorita has joined #openstack-meeting14:45
*** fawadkhaliq has joined #openstack-meeting14:47
*** esker has quit IRC14:48
*** esker has joined #openstack-meeting14:48
*** dmorita has quit IRC14:50
*** dslevin_ has quit IRC14:50
*** cbouch has quit IRC14:51
*** lpabon has quit IRC14:51
*** jmckind has joined #openstack-meeting14:52
*** eharney has quit IRC14:54
*** hashar has quit IRC14:55
*** xyang has joined #openstack-meeting14:55
*** zqfan has joined #openstack-meeting14:55
*** jmckind_ has quit IRC14:56
*** xyang has quit IRC14:56
*** gordc has joined #openstack-meeting14:56
*** piet has joined #openstack-meeting14:57
*** lpabon has joined #openstack-meeting14:57
*** cdent has joined #openstack-meeting14:57
*** baoli has quit IRC14:58
*** dprince has quit IRC14:58
*** dprince has joined #openstack-meeting14:59
*** neelashah1 has joined #openstack-meeting15:00
gordc#startmeeting telemetry15:00
*** llu-laptop has joined #openstack-meeting15:00
openstackMeeting started Thu Jan  7 15:00:24 2016 UTC and is due to finish in 60 minutes.  The chair is gordc. Information about MeetBot at http://wiki.debian.org/MeetBot.15:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.15:00
*** openstack changes topic to " (Meeting topic: telemetry)"15:00
openstackThe meeting name has been set to 'telemetry'15:00
llu-laptopo/15:00
ildikovo/15:00
sileht\o15:00
zqfanhi15:00
*** neelashah has quit IRC15:00
liushengo/15:00
ildikovHappy New Year! :)15:00
gordchey cool. people are back from holidays15:01
*** 5EXAAOC18 has quit IRC15:01
llu-laptophappy 201615:01
gordchappy new years.15:01
*** baoli has joined #openstack-meeting15:01
*** pradk has joined #openstack-meeting15:01
_nadya_o/15:01
*** haomaiwang has joined #openstack-meeting15:01
pradko/15:01
*** isaacb has quit IRC15:01
*** spotz_zzz is now known as spotz15:01
gordcok let's start this.15:02
*** balajiiyer has joined #openstack-meeting15:02
cdentoh, hey, hi15:02
gordc#topic roadmap items (new/old/blockers) https://wiki.openstack.org/wiki/Telemetry/RoadMap15:02
*** openstack changes topic to "roadmap items (new/old/blockers) https://wiki.openstack.org/wiki/Telemetry/RoadMap (Meeting topic: telemetry)"15:02
gordctyped in wrong window15:02
*** annegentle has joined #openstack-meeting15:03
*** dslev has joined #openstack-meeting15:03
gordcjust for reference, the m-2 milestone will be in about 1.5 weeks15:03
_nadya_gordc: is it still ok to merge specs?15:04
gordci think we have most things covered (except if someone wants to start looking at polling cache)15:04
*** rderose has joined #openstack-meeting15:04
*** cdub has quit IRC15:04
gordc_nadya_: yep, we're pretty relaxed on that. after m-2 we'll start being a lot more critical on whether something can make it in on time15:04
ildikovm-3 is end of Febr, so it should be ok15:05
gordc_nadya_: your caching item is probablysomething big so that should close sooner rather than later15:05
_nadya_gordc: ok, cool. I'm investigating caching now, so will take a look at polling. Especially if it relates to "improve instance metering"15:05
gordc_nadya_: sure. please sync with liusheng on that.15:06
_nadya_gordc: ok!15:06
gordci'm going to assume rally tests are not in scope for mitaka15:06
gordcwe dont really have a name tied to that.15:06
liushengwill keep eyes on it ;)15:06
gordcjust an fyi, i've merged the initial structure for aodhclient15:07
*** mrmartin has quit IRC15:07
gordchttps://github.com/openstack/python-aodhclient15:08
gordci have a topic later to discuss what syntax we want15:08
*** bmwiedemann has joined #openstack-meeting15:08
gordcliusheng: are we still on schedule for composite alarms?15:08
liushenggordc: I am working on it15:09
*** bvandenh has quit IRC15:09
*** bvandenh has joined #openstack-meeting15:09
*** eharney has joined #openstack-meeting15:10
gordcliusheng: cool cool.15:10
liushenggordc: will complete the bp in few days15:10
silehtgordc, I have still work on keystonev3 and aodh15:10
silehtgordc, and found a bug in ceilometerclient15:10
*** doug-fis_ is now known as doug-fish15:11
gordcsileht: yeah i saw that, you think it needs to be ported to aodhclient?15:11
*** bmwiedemann has left #openstack-meeting15:11
silehtgordc, no it's on the redirection code from ceilometer to aodh15:11
gordcah cool cool15:11
liushenggordc: fyi, there is a change about alarm dashboard intergration, https://review.openstack.org/#/c/215569/15:12
silehtAlso my oslo.messaging batching code is ready15:12
*** absubram has quit IRC15:12
liushenggordc: should we think about aodhclient ?15:12
*** ifat_afek_ has joined #openstack-meeting15:12
_nadya_gordc: btw, we did some ceilometer-related stuff for Rally, let me find links... #link https://review.openstack.org/#/q/topic:sample_generator_batching15:12
gordcliusheng: cool, i was just giong to say i need to follow up on that15:12
*** jmckind_ has joined #openstack-meeting15:12
*** eranrom has quit IRC15:12
_nadya_#link https://review.openstack.org/#/c/244007 #link https://review.openstack.org/#/c/243841/15:12
sileht(but gate is failing for bug unrelated to my chagne)15:13
*** baohua has quit IRC15:13
*** edtubill has joined #openstack-meeting15:13
*** neelashah has joined #openstack-meeting15:13
gordc_nadya_: are you using sileht's batching code?15:13
*** eranrom has joined #openstack-meeting15:13
_nadya_gordc: not sure. is sileht's code in Rally or in Ceilo?15:14
gordcsileht: that's great. can't wait to get that in.15:14
*** topol_ has joined #openstack-meeting15:14
gordc_nadya_: it's not in yet.15:14
llu-laptop_nadya_: glad to see that15:14
gordcsileht: we can create misleading charts to show how much better it is ;)15:14
_nadya_and one more #link https://review.openstack.org/#/c/237754/15:15
silehtgordc, yeah good news thx _nadya_15:15
gordc300% faster sound like a good number?15:15
silehtlol15:15
*** jaypipes has joined #openstack-meeting15:15
gordcas long as we don't explain how we got numbers ;)15:15
*** neelashah1 has quit IRC15:16
*** jmckind has quit IRC15:16
gordc_nadya_: do you know if ityaptin  is still looking at componentisation?15:16
gordc(not really important but i thought i'd ask)15:16
_nadya_gordc: no, we decided that it's better to do improving instead of refactoring15:17
gordc_nadya_: agreed15:17
_nadya_gordc: will abandon the spec15:17
*** topol has quit IRC15:17
gordckk, let's take a look at it next cycle (and finalise 'what to do with ceilometer api')15:17
_nadya_yep15:17
*** iyamahat has joined #openstack-meeting15:18
*** baohua has joined #openstack-meeting15:18
gordc#action remember to create item for austin summit re: ceilometer api15:18
*** yamahata has joined #openstack-meeting15:18
*** rbak has joined #openstack-meeting15:18
*** dane has joined #openstack-meeting15:18
ildikovmy favourite topic :)15:18
gordci guess last item is the poc for multiple definition files...15:19
*** mtanino has joined #openstack-meeting15:19
gordcpradk: any work there?15:19
*** vhoward has joined #openstack-meeting15:19
pradkgordc, havent looked much into that part yet.. i know someone had a patch to support loading files from a dir15:19
gordcyeah peristeri15:19
peristeriHey gordc15:20
pradkgordc, yea15:20
*** med_` has joined #openstack-meeting15:20
*** med_ has quit IRC15:20
*** jtomasek has quit IRC15:20
gordcperisteri: you still looking at that multiple file loading stuff?15:20
pradkgordc, i think the biggest part ogf that is to get input from other projects on if they are willing to own and maintain the files15:21
pradkperisteri, is your stuff merged yet?15:21
*** Daisy_ has joined #openstack-meeting15:21
ildikovpradk: regarding willingness I would not hope much15:21
peristerigordc, yes, I was tied up with some internal stuff. I should have the time to finish it today/tomorrow.15:21
pradkgordc, i can look into kicking off an email thread and see what people say15:21
gordcpradk: there was a thread a few months back.15:21
gordcthey probably wont' maintain it.15:21
*** neelashah has quit IRC15:21
gordcbut i think it's probably more consumable if we split the files regardless.15:22
ildikovgordc: I think I remember that one15:22
*** neelashah has joined #openstack-meeting15:22
*** Daisy has quit IRC15:22
pradkgordc, yea agree with that15:22
ildikovgordc: +115:22
gordcildikov: yeah, i don't think anyone wants to actually own anything... we're all too good at the art of deferring.15:22
pradkgordc, i'll look into that in conjuntion with peristeri's patch for M3 perhaps15:23
ildikovsmaller files would be great, better structure, I hope15:23
gordcpradk:15:23
gordccool cool15:23
ildikovgordc: yeah, I know :(15:23
*** timcline has joined #openstack-meeting15:23
*** numans has quit IRC15:23
*** robefran has quit IRC15:24
gordclet's switch to aodhclient and run through other projects.15:24
gordcoh wait midcycle.15:24
gordc#topic virtual midcycle?15:24
*** openstack changes topic to "virtual midcycle? (Meeting topic: telemetry)"15:24
gordcdo we want one? we have any pressing items to discuss?15:25
gordcor does everyone have a work item that they are content with?15:25
*** neelashah1 has joined #openstack-meeting15:25
*** jtomasek has joined #openstack-meeting15:25
_nadya_I have two: transformers and metadata caching. But we can discuss it in ML or irc, as you wish :)15:26
*** neelashah has quit IRC15:26
pradki'm ok with skipping unless we really have stuff to go over for couple of days..15:26
*** Daisy_ has quit IRC15:27
gordckk. let's just push on virtual midcycle then.15:27
*** Daisy has joined #openstack-meeting15:27
gordci don't see many spcs to discuss15:28
gordc_nadya_: feel free to push the topics to ML.15:28
_nadya_ok15:28
gordc(might be faster than waiting for a midcycle anyways)15:28
*** nelsnelson has quit IRC15:28
_nadya_maybe I'll start here if we have time :)15:28
gordcif anything comes up that we feel like will be debateable we can setup a hangout session and announce on list15:29
*** nelsnelson has joined #openstack-meeting15:29
*** baohua has quit IRC15:29
*** Daisy has quit IRC15:29
gordc_nadya_: sure. let's do aodhclient first (it'll probably be short15:29
*** Daisy has joined #openstack-meeting15:29
gordc#topic how to represent gnocchi alarms in client15:29
*** openstack changes topic to "how to represent gnocchi alarms in client (Meeting topic: telemetry)"15:29
gordcfor reference, i've added https://review.openstack.org/#/c/263887/3/aodhclient/shell.py15:30
gordcbasic alarm CRUD commands15:30
gordcsimilar to ceilometercilent15:30
*** neelashah1 has quit IRC15:30
liushengdo we have a plan about aodhclient release ?15:30
*** annegentle has quit IRC15:30
gordconly diff is i added alarm search which actually points to complex alarm api15:30
*** neelashah has joined #openstack-meeting15:30
gordcliusheng: yep, i think we just need the basic ceilometerclient features ported first15:31
liushenggordc: agree15:31
*** annegentle has joined #openstack-meeting15:31
gordci think the questions i have is for alarm history are we ok with:15:31
gordcaodh alarm-histroy show15:31
gordcaodh alarm-history search15:31
pradkgordc, so whats the deprecation like, we still have alarm cli in ceilometer for Mitaka? or will we remove it in favor of aodhclient15:31
gordcignore spelling15:31
*** neelashah has quit IRC15:32
gordcpradk: i will probably change all the ceilometerclient alarm calls to aodhclient (if i can)15:32
*** neelashah has joined #openstack-meeting15:32
*** dprince has quit IRC15:32
*** isaacb has joined #openstack-meeting15:32
*** dprince_ has joined #openstack-meeting15:32
gordcbut ceilometerclienet alarming functionality won't be removed (if ever, since i'm not porting everything and it's different syntax)15:33
llu-laptopI think we already redirect the alarm api calls in ceilometerclient to aodh, right?15:33
gordcllu-laptop: yep15:33
ildikovI'm ok with the proposal15:33
gordcildikov: cool cool15:33
*** zeih has quit IRC15:33
gordcoh also, i was thinking of *leaving out* combination alarm support from aodhclient15:33
gordcconsidering we want people to use composite alarm (when it is added)15:34
gordc^ another reason for keeping ceilometerclient alarming code15:35
*** dims_ has joined #openstack-meeting15:35
liushenggordc: :)15:35
llu-laptopgordc: in that case, we should state clearly in release notes of aodhclient15:35
*** ozamiatin has joined #openstack-meeting15:35
ildikovllu-laptop: +115:35
gordcllu-laptop: that it doesn't support combination alarms?15:35
ildikovalso the admin guide needs to be checked once the new client is ready to fly15:36
llu-laptopgordc: yep, and don't misguide people to think aodhclient is the alarm part of ceilometerclient15:36
gordcildikov: yep15:36
*** dims has quit IRC15:36
*** nonameentername has quit IRC15:36
liushengllu-laptop: yes, agree,15:36
llu-laptopto avoid confusion and futher explanations15:36
gordcllu-laptop: cool cool. yeah. i'm ok to have a direct port, i just didn't feel like porting something that we will deprecated15:36
ildikovgordc: I couldn't get the install guide section in still, the packages are not ready as much as I saw not long ago :(15:37
llu-laptopgordc: agreed15:37
gordcildikov: *sigh*15:37
ildikovgordc: I know, a big one :(15:37
gordcildikov: should we just make it for fedora and leave ubuntu/suse out?15:38
gordcor does suse have correct packages?15:38
ildikovI can try to push for the first patch of the doc and have the Suse part later, when it's ready, but I didn't get answer regarding the Ubuntu package bug still15:38
*** nonameentername has joined #openstack-meeting15:38
ildikovgordc: last time they didn't have, so I split the original patch and have the Suse part in WIP15:38
ildikovgordc: also added a workaround to the Ubuntu part15:39
ildikovwill ping the docco guys to check at least that one15:39
gordcworkaround == use debian? :)15:39
gordcildikov: sounds good15:39
ildikovalthough that's for Mitaka, hey don't backport parts15:39
ildikovgordc: lol :)15:39
*** slagle has quit IRC15:39
*** zeih has joined #openstack-meeting15:39
gordcoh. i had one last item for client. how do we want to describe gnocchi alarm?15:40
ildikovok, side track ended, sorry :)15:40
gordc^ jd__, sileht15:40
*** lpabon has left #openstack-meeting15:40
ildikovin what sense do we mean describe here?15:40
*** garthb has joined #openstack-meeting15:40
gordc"aodh gnocchi-alarm *" or just reuse "aodh alarm *" and add type15:41
*** adahms has quit IRC15:41
ildikovah, ok, the command name15:41
gordcand whatever other additional params are required15:41
llu-laptopspeaking of that, I have the same question about event alarm15:41
ildikovmy vote would be on the second option or smth like15:42
gordcllu-laptop: that too15:42
llu-laptopwe're planning to add new types of event alarm15:42
liushengthe alarm-gnocchi-* commands are too long :(15:42
gordci guess it's related15:42
*** sigmavirus24_awa is now known as sigmavirus2415:42
llu-laptopso aodh event-alarm or aodh alarm -t <type>15:42
jd__o/15:42
* jd__ reads backlog15:42
gordcllu-laptop: i guess both event alarm and gnocchi alarm are in same boat.. and same as composite15:43
gordcseems like i should try to support a 'type' param and just let people use aodh alarm * -type blah15:43
llu-laptopI saw a potential stevedore use case here :)15:43
jd__I think alarm --type would be better15:43
liusheng+115:43
jd__'cause it's likely more easy to extend, or less weird15:43
ildikovyeah, more generic15:43
llu-laptop+1 for -t15:44
ildikovjd__: +115:44
gordckk. makes sense to me. will work on that.15:44
zqfan+1 for -t15:44
gordcwill raise if i run into any blocker15:44
gordcthat's all for me. let's move on to ceilometer topics if any?15:45
gordc#topic ceilometer topics15:45
*** openstack changes topic to "ceilometer topics (Meeting topic: telemetry)"15:45
gordcanything?15:45
liushengWSME deprecation ?15:46
llu-laptopsorry, one more question about aodhclient,15:46
Qiming+1000 for -t15:46
gordcliusheng: i don't know if we have a resource but if we do go for it.15:46
gordcllu-laptop: sure15:46
llu-laptopi'm gonna give some presentation to some customers next week, should I encourage them to use aodhclient now?15:47
llu-laptopor ask them to wait to mitaka release?15:47
gordcllu-laptop: i'm not really done yet. but i guess for mitaka they should use it (i should have it all good by then)15:47
gordcllu-laptop: oh yeah, let's say aodhclient is for mitaka only15:47
llu-laptopgordc: got that15:47
gordcanything earlier is "use at own risk"15:48
*** neelashah has quit IRC15:48
gordcanything for ceilometer?15:48
llu-laptopliusheng: please go on15:48
*** itzdilip1 has quit IRC15:48
*** neelashah has joined #openstack-meeting15:48
gordcif someone can review my doc spec, that'd be great: https://review.openstack.org/#/c/242216/15:49
gordclet's go gnocchi15:49
gordc#topic gnocchi topics15:49
*** openstack changes topic to "gnocchi topics (Meeting topic: telemetry)"15:49
gordcjd__: we targeting something big for last half of cycle?15:50
*** gcb_ has quit IRC15:50
jd__just the split of archive15:50
*** electrofelix has quit IRC15:50
jd__s15:50
gordccool cool15:50
gordcif i have time i'll look at tagging support15:50
jd__sheeprine has something on that15:51
gordci have random thoughts but nothing on paper15:51
gordcoh cool15:51
*** dprince_ has quit IRC15:51
gordci'll wait and see then15:51
jd__but if you have some thoughts, please share :)15:51
*** dprince has joined #openstack-meeting15:51
*** tongli has joined #openstack-meeting15:51
*** electrofelix has joined #openstack-meeting15:51
gordci'll keep an eye and unleash manifesto when i finish client15:51
gordcopen discussion?15:52
gordc#topic open discussion15:52
*** openstack changes topic to "open discussion (Meeting topic: telemetry)"15:52
*** jose_idar has left #openstack-meeting15:52
*** Akis__ has joined #openstack-meeting15:52
_nadya_I'd like to share some test results with you15:52
gordcsure15:52
_nadya_I had 3 notification agents and coordination enabled15:53
_nadya_Test description:15:53
_nadya_30 000 samples with cpu metric was sent in total15:53
_nadya_1000 resources was used and samples were sent in batches 1000 samples each. Each batch contained all resources, it means that all samples in a batch belonged to different resources.15:53
_nadya_Also, cpu for each resource is increasing by 20 each time.15:53
*** rbak_ has joined #openstack-meeting15:53
_nadya_Ideally, cpu.delta should be 20 for all resources15:53
*** neelashah has quit IRC15:53
*** neelashah has joined #openstack-meeting15:53
_nadya_try to take a look here https://www.dropbox.com/s/r5ik5l89gb0c5vq/transformers.png?dl=015:54
*** madorn has joined #openstack-meeting15:54
_nadya_is it accessible?15:55
llu-laptopsorry, dropbox is also banned in PRC15:55
*** rbak has quit IRC15:55
*** liamji has joined #openstack-meeting15:55
_nadya_oh((15:55
gordc_nadya_: what is the y access?15:55
_nadya_llu-laptop: what can I use instead?15:55
*** Akis_ has quit IRC15:55
gordcllu-laptop: picture a rectangle with a diagonal line from bottom left to top right :)15:56
*** neelashah1 has joined #openstack-meeting15:56
_nadya_yep :) it's to make it clear what data was send15:56
llu-laptop_nadya_: don't bother, I'll try to find a way to access it through company VPN tomorrow when I in office15:56
_nadya_gordc: y is metric value15:57
llu-laptopI don't know if liusheng can access that :)15:57
_nadya_so the plot below should be a line with y=2015:57
liushengllu-laptop: no15:57
*** apoorvad has joined #openstack-meeting15:57
liushengllu-laptop: apparently :(15:57
*** neelashah has quit IRC15:58
*** sacharya has joined #openstack-meeting15:58
_nadya_but you see that we have 320, it means that we lost 16 samples during transformation15:58
*** galstrom_zzz is now known as galstrom15:58
_nadya_and one more picture https://www.dropbox.com/s/oen9c7hdwxmxt5k/redis_vs_rabbit.png?dl=015:58
_nadya_the plot below with 3 notification agents but with Redis for caching . It's better, but still can't get "20" line15:59
*** vijendar has joined #openstack-meeting15:59
gordc_nadya_: want to carry this on in #openstack-telemetry (i have a feeling someone is going to yell at exactly 1600)16:00
*** Leom has joined #openstack-meeting16:00
gordcok. let's switch16:00
_nadya_gordc: ok16:00
gordcthanks everyone16:00
gordc#endmeeting16:00
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"16:00
openstackMeeting ended Thu Jan  7 16:00:24 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)16:00
openstackMinutes:        http://eavesdrop.openstack.org/meetings/telemetry/2016/telemetry.2016-01-07-15.00.html16:00
*** kencjohnston has quit IRC16:00
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/telemetry/2016/telemetry.2016-01-07-15.00.txt16:00
openstackLog:            http://eavesdrop.openstack.org/meetings/telemetry/2016/telemetry.2016-01-07-15.00.log.html16:00
*** haomaiwang has quit IRC16:01
*** kencjohnston has joined #openstack-meeting16:01
*** cdub has joined #openstack-meeting16:01
*** llu-laptop has left #openstack-meeting16:01
*** haomaiwa_ has joined #openstack-meeting16:01
*** apoorvad has quit IRC16:02
*** lezbar__ has quit IRC16:02
*** Daisy has quit IRC16:02
*** cdent has left #openstack-meeting16:02
*** sacharya has quit IRC16:02
*** Daisy has joined #openstack-meeting16:03
*** liusheng has quit IRC16:03
*** pots has quit IRC16:03
*** tsymanczyk has quit IRC16:03
*** pots has joined #openstack-meeting16:03
*** banix has quit IRC16:04
*** pots3 has joined #openstack-meeting16:04
*** ihrachys has quit IRC16:04
*** SridharG has quit IRC16:04
*** pots2 has quit IRC16:06
*** vahidh has joined #openstack-meeting16:07
*** gordc has left #openstack-meeting16:07
*** Daisy has quit IRC16:07
*** merooney has joined #openstack-meeting16:08
*** lezbar has joined #openstack-meeting16:08
*** neelashah1 has quit IRC16:08
*** salv-orl_ has joined #openstack-meeting16:08
*** neelashah has joined #openstack-meeting16:08
*** kebray has joined #openstack-meeting16:09
*** salv-orlando has quit IRC16:11
*** eranrom has quit IRC16:11
*** Qiming has quit IRC16:12
*** jmckind has joined #openstack-meeting16:12
*** jmckind_ has quit IRC16:16
*** topol has joined #openstack-meeting16:16
*** Akis_ has joined #openstack-meeting16:16
*** Akis__ has quit IRC16:16
*** absubram has joined #openstack-meeting16:17
*** topol_ has quit IRC16:18
*** zeih has quit IRC16:19
*** nmagnezi_ has quit IRC16:22
*** _nadya_ has quit IRC16:22
*** robefran has joined #openstack-meeting16:24
*** rbowen has quit IRC16:27
*** jschwarz has joined #openstack-meeting16:27
*** rderose has quit IRC16:27
*** jschwarz has left #openstack-meeting16:27
*** rderose has joined #openstack-meeting16:28
*** harshs has joined #openstack-meeting16:28
*** isaacb has quit IRC16:29
*** jdurgin1 has joined #openstack-meeting16:30
*** galstrom is now known as galstrom_zzz16:32
*** ddieterly has quit IRC16:32
*** weshay_xchat has quit IRC16:32
*** harshs has quit IRC16:33
*** rderose has quit IRC16:33
*** otter768 has joined #openstack-meeting16:33
*** weshay_xchat has joined #openstack-meeting16:34
*** belmoreira has quit IRC16:34
*** sacharya has joined #openstack-meeting16:34
*** sacharya has quit IRC16:34
*** sacharya has joined #openstack-meeting16:35
*** piet has quit IRC16:38
*** banix has joined #openstack-meeting16:38
*** otter768 has quit IRC16:38
*** garthb has quit IRC16:39
*** med_` is now known as med_16:39
*** med_ has quit IRC16:39
*** med_ has joined #openstack-meeting16:39
*** med_ is now known as med16:40
*** med is now known as med_16:40
*** Sukhdev has joined #openstack-meeting16:41
*** piet has joined #openstack-meeting16:43
*** diazjf has joined #openstack-meeting16:44
*** neelashah has quit IRC16:45
*** paul-carlton2 has quit IRC16:45
*** neelashah has joined #openstack-meeting16:45
*** zaro has quit IRC16:46
*** zaro has joined #openstack-meeting16:46
*** baoli has quit IRC16:46
*** dslev has quit IRC16:47
*** AmirBaleghi11117 has quit IRC16:47
*** unicell1 has joined #openstack-meeting16:51
*** qwebirc94124 has joined #openstack-meeting16:51
*** unicell has quit IRC16:52
*** qwebirc94124 has quit IRC16:52
*** liamji has quit IRC16:53
*** drankis has quit IRC16:54
*** gyee has joined #openstack-meeting16:55
*** ihrachys has joined #openstack-meeting16:57
*** jichen has joined #openstack-meeting16:58
*** jlanoux has quit IRC16:58
*** dslevin_ has joined #openstack-meeting16:59
*** dims has joined #openstack-meeting16:59
*** dpaterson has joined #openstack-meeting17:00
*** ihrachys has quit IRC17:00
mtreinish#startmeeting qa17:00
openstackMeeting started Thu Jan  7 17:00:42 2016 UTC and is due to finish in 60 minutes.  The chair is mtreinish. 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
dpatersono/17:01
*** haomaiwa_ has quit IRC17:01
mtreinishhi who's here for today?17:01
dpatersono/17:01
*** asselin has joined #openstack-meeting17:01
*** 77CAAHQRX has joined #openstack-meeting17:01
mtreinishdpaterson: heh, well it might be a quick meeting :)17:01
dpatersondumb question17:01
*** ihrachys has joined #openstack-meeting17:02
dpaterson1700 isn't 1:00 EDT?17:02
persiaIt is, but EST applies at this time of year.17:02
persia(technically, 13:00 EDT)17:02
mtreinishit's 1:00 EDT but we're in standard time right now17:02
*** dims_ has quit IRC17:02
mtreinishyeah what persia said :)17:03
dpatersonsaid it was dumb question :)17:03
*** s3wong has joined #openstack-meeting17:03
mtreinishandreaf, sdague, dtroyer, afazekas, jordanP: around?17:03
mtreinishok, well lets go through the agenda maybe more people will pop up later17:04
*** merooeny_ has joined #openstack-meeting17:04
*** galstrom_zzz is now known as galstrom17:04
mtreinish#topic QA Code Sprint17:04
*** openstack changes topic to "QA Code Sprint (Meeting topic: qa)"17:04
*** tsymanczyk has joined #openstack-meeting17:04
mtreinishI just wanted to mention on a meeting that we announced the QA midcycle code sprint yesterday17:05
*** tsymanczyk is now known as Guest2620917:05
mtreinishall the details are on:17:05
mtreinish#link https://wiki.openstack.org/wiki/QA/CodeSprintMitakaBoston17:05
*** esker has quit IRC17:05
mtreinishI just wanted to mention it on the meeting too17:06
mtreinishdoes anyone have anything on this topic?17:06
*** rderose has joined #openstack-meeting17:06
*** baoli has joined #openstack-meeting17:07
mtreinishok, then lets move on17:07
mtreinish#topic Spec Reviews17:07
*** openstack changes topic to "Spec Reviews (Meeting topic: qa)"17:07
mtreinish#link https://review.openstack.org/#/q/status:open+project:openstack/qa-specs,n,z17:07
mtreinishit looks like there are still a couple of specs undergoing review17:07
mtreinishdoes anyone want to discuss any of them?17:08
*** cdent has joined #openstack-meeting17:08
*** merooney has quit IRC17:08
mtreinishmkoderer: has a pretty simple one here: https://review.openstack.org/25993417:08
*** spzala has quit IRC17:09
mtreinishwell I guess there's nothing else to discuss here... :)17:09
*** drankis has joined #openstack-meeting17:09
mtreinish#topic Priority Items17:10
*** openstack changes topic to "Priority Items (Meeting topic: qa)"17:10
mtreinish#link https://etherpad.openstack.org/p/mitaka-qa-priorities17:10
*** s3wong has quit IRC17:10
mtreinishwe're approaching m2 and there are a few items targetting m2 on the etherpad17:10
mtreinishdoes anyone want to talk about one of those?17:10
*** lezbar has quit IRC17:10
*** tellesnobrega_af is now known as tellesnobrega17:12
mtreinishI think lets just change the format for today17:12
mtreinishdpaterson: was there anything you wanted to discuss today?17:12
*** Sukhdev has quit IRC17:12
*** lezbar has joined #openstack-meeting17:12
*** mrmartin has joined #openstack-meeting17:13
*** paul-carlton2 has joined #openstack-meeting17:13
dpatersonI've got a couple of tweaks to my existing cli patches which will happen today17:13
mtreinishdpaterson: ok cool, I'll keep an eye out for those17:13
dpatersonThen I was planning on focusing on run implementation17:13
*** sfinucan has quit IRC17:13
*** Sukhdev has joined #openstack-meeting17:13
mtreinishdpaterson: ok, dwalleck said he was working on a spec for that17:14
mtreinishI'm not sure the current status there though17:14
dpatersonI will circle back with him17:14
mtreinishcool17:14
dpatersonI believe he is attending sprint as well17:14
mtreinishyeah, looks like he put his name on the wiki17:14
mtreinishbut we don't want to wait until the sprint to start on it :)17:15
* cdent is lurking17:15
dpatersonindeed17:15
mtreinishcdent: is there a topic (or topics) you wanted to talk about today?17:16
mtreinishcdent: it's just you, dpaterson, and me today17:16
*** ygbo has quit IRC17:17
*** slagle has joined #openstack-meeting17:17
*** cdub has quit IRC17:18
mtreinishwell, I guess lets move on to critical reviews17:18
*** leeantho has joined #openstack-meeting17:18
mtreinish#topic Critical Reviews17:18
*** openstack changes topic to "Critical Reviews (Meeting topic: qa)"17:18
mtreinishdoes anyone have any reviews they'd like to get extra eyes on?17:18
*** apoorvad has joined #openstack-meeting17:18
*** piet has quit IRC17:19
mtreinishoomichi put this on the agenda:17:19
mtreinish#link https://review.openstack.org/#/c/257660/17:19
*** piet has joined #openstack-meeting17:19
mtreinishany other reviews today?17:20
*** rbowen has joined #openstack-meeting17:20
* cdent is lagging something serious17:21
cdentI have no topics for today, just showing my face.17:21
mtreinishcdent: heh, ok no worries17:21
mtreinishwell I guess let's move to open discussion17:22
*** jprovazn has quit IRC17:22
mtreinish#topic Open Discussion17:22
*** openstack changes topic to "Open Discussion (Meeting topic: qa)"17:22
mtreinishdoes anyone have any topics they'd like to discuss today17:22
*** rderose has quit IRC17:22
mtreinishnow is your opportunity to bring it up17:22
*** _nadya_ has joined #openstack-meeting17:23
* cdent cues the music17:23
*** mrmartin has quit IRC17:23
*** apoorvad has quit IRC17:23
*** Swami has joined #openstack-meeting17:24
*** Swami_ has joined #openstack-meeting17:24
*** garthb has joined #openstack-meeting17:24
*** garyk has quit IRC17:24
mtreinishheh, well I guess everyone is still in vacation mode today17:24
mtreinishIf there's nothing else I guess we'll end here17:25
*** sudipto has joined #openstack-meeting17:25
mtreinishok, I'm gonna call it17:25
mtreinishthanks everyone17:25
mtreinish#endmeeting17:26
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"17:26
openstackMeeting ended Thu Jan  7 17:26:00 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)17:26
dpatersonsure17:26
openstackMinutes:        http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-01-07-17.00.html17:26
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-01-07-17.00.txt17:26
openstackLog:            http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-01-07-17.00.log.html17:26
* cdent waves17:26
*** gjayavelu has joined #openstack-meeting17:27
*** sigmavirus24 is now known as sigmavirus24_awa17:27
*** sdake has quit IRC17:29
*** mudassirlatif has joined #openstack-meeting17:30
*** zehicle has quit IRC17:31
*** yassine__ has quit IRC17:31
*** numans has joined #openstack-meeting17:32
*** diazjf has quit IRC17:32
*** ujuc has joined #openstack-meeting17:32
*** cdent has left #openstack-meeting17:32
*** mrmartin has joined #openstack-meeting17:33
*** dpaterson has quit IRC17:33
*** sdake has joined #openstack-meeting17:34
*** sdake has quit IRC17:34
*** Sukhdev has quit IRC17:34
*** tellesnobrega is now known as tellesnobrega_af17:38
*** diazjf has joined #openstack-meeting17:39
*** armax has joined #openstack-meeting17:40
*** comay has joined #openstack-meeting17:42
* andreaf sneaks in17:44
andreafupz it's over already17:44
*** matrohon has quit IRC17:45
*** gjayavelu has quit IRC17:46
*** dane_leblanc_ has joined #openstack-meeting17:46
*** ihrachys has quit IRC17:47
*** jungleboyj has joined #openstack-meeting17:48
*** paul-carlton2 has quit IRC17:49
*** dane has quit IRC17:49
*** garyk has joined #openstack-meeting17:50
*** balajiiyer has quit IRC17:50
*** cschwede has quit IRC17:50
*** balajiiyer has joined #openstack-meeting17:51
*** jdurgin1 has quit IRC17:51
*** Tango has joined #openstack-meeting17:52
*** dmorita has joined #openstack-meeting17:52
*** rbowen has quit IRC17:53
*** rebase has joined #openstack-meeting17:55
*** SumitNaiksatam has joined #openstack-meeting17:56
*** 77CAAHQRX has quit IRC18:01
*** daneyon_ has joined #openstack-meeting18:01
*** haomaiwang has joined #openstack-meeting18:01
daneyon_#startmeeting container-networking18:01
openstackMeeting started Thu Jan  7 18:01:37 2016 UTC and is due to finish in 60 minutes.  The chair is daneyon_. Information about MeetBot at http://wiki.debian.org/MeetBot.18:01
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.18:01
*** bvandenh has quit IRC18:01
*** openstack changes topic to " (Meeting topic: container-networking)"18:01
openstackThe meeting name has been set to 'container_networking'18:01
daneyon_Agenda18:01
daneyon_#link https://wiki.openstack.org/wiki/Meetings/Containers#Agenda18:01
daneyon_i'll give everyone a few minutes to review the agenda.18:02
daneyon_#topic roll call18:02
*** openstack changes topic to "roll call (Meeting topic: container-networking)"18:02
*** iyamahat has quit IRC18:02
dane_leblanc_o/18:02
*** iyamahat has joined #openstack-meeting18:02
Tangoo/18:02
*** paul-carlton2 has joined #openstack-meeting18:03
daneyon_Thank you dane_leblanc_ Tango for joining.18:03
dane_leblanc_daneyon: The agenda link is for containers, not container networking?18:03
daneyon_you will need to scroll down to hit the subteam agenda18:04
dane_leblanc_#link https://wiki.openstack.org/wiki/Meetings/Containers#Container_Networking_Subteam_Meeting18:04
daneyon_that's it, thx18:04
*** mrmartin has quit IRC18:04
daneyon_#topic Flannel host-gw patch18:05
*** openstack changes topic to "Flannel host-gw patch (Meeting topic: container-networking)"18:05
daneyon_#link https://review.openstack.org/#/c/241866/18:05
*** dmorita has quit IRC18:05
TangoSo I got to spend some more time on this in December before the break18:06
daneyon_Tango have you been able to spend any time on this patch?18:06
*** mhickey has quit IRC18:06
*** esker has joined #openstack-meeting18:06
*** eghobo has joined #openstack-meeting18:06
daneyon_how is it coming along?18:06
TangoI debugged and found the problem:  an extra route on the local host causing the response to be trapped18:06
TangoSo the work around is to delete these extra route, and everything works very well18:07
TangoI notified Angus, he is looking into replicating the problem to fix the code18:07
daneyon_so basicly each flanneld host creates a route to other flanneld hosts for the flannel subnet that sits behind the host, correct?18:07
*** tellesnobrega_af is now known as tellesnobrega18:07
*** kencjohnston has quit IRC18:07
*** dmorita has joined #openstack-meeting18:08
TangoYes, there is one route in the routing table for each other flannel host18:08
*** zeih has joined #openstack-meeting18:08
Tangothis allows the packet to reach the target host without encapsulation18:08
daneyon_right18:08
*** penick has quit IRC18:08
TangoThe performance looks very good:  on a 10 GBits/sec network, I am getting 6 GBits/sec18:08
*** rbowen has joined #openstack-meeting18:08
Tangowith hostgw18:08
daneyon_so this adding routes to the other flannel subnets with the next-hop of each flannel host would be expected.18:09
daneyon_is the route you;re reffering to some other route that is being added?18:09
daneyon_nice!18:09
TangoFor vxlan, I get 1.7 Gbits/sec18:09
dane_leblanc_Wow, significant difference18:09
*** rderose has joined #openstack-meeting18:09
daneyon_i would expect a big difference18:09
TangoAnd for udp, it's pretty bad:  0.385 GBits/sec18:09
dane_leblanc_Is this for packets of 500 bytes or so?18:10
TangoSo this does answer the cost of encapsulation18:10
*** hongbin has joined #openstack-meeting18:10
hongbino/18:10
TangoThe MTU is set at 150018:10
*** thangp has joined #openstack-meeting18:10
TangoI use iperf3 to run the test18:10
daneyon_i think the flannel vxlan will be a much better option when magnum has support for ironic hosts and the cloud provider has vxlan hw in the ironic hosts18:10
eghoboTango: we got the same numbers at our infra ;)18:10
*** derekh has quit IRC18:11
daneyon_hi hongbin thanks for joining18:11
Tangoeghobo: great, coorelation18:11
*** tongli_ has joined #openstack-meeting18:11
daneyon_eghobo for vxlan, hostgw mode or both?18:11
*** esker has quit IRC18:11
eghoboudp, vxlan18:12
*** spzala has joined #openstack-meeting18:12
*** topol_ has joined #openstack-meeting18:12
TangoSo I am picking up the patch that Angus started, with the work around for now until the bug is fixed in Flannel18:12
daneyon_Tango could you push the latest patch set so others can test drive?18:12
eghoboi need OpenStack changes for hostgw, but no changes allow during holidays18:13
Tangoyep, working on that right now, should have it shortly18:13
*** bvandenh has joined #openstack-meeting18:13
dane_leblanc_Tango: the bug description lists the host-gw option as unconditional. Should the description be changed to what's listed as option (2)?18:13
*** esker has joined #openstack-meeting18:13
*** lblanchard1 has joined #openstack-meeting18:13
TangoI will change the option so that the user can specify any option:  udp, vxlan, hostgw18:14
*** topol has quit IRC18:14
daneyon_Tango +1 re dane_leblanc_ updating the commit message to state option 218:14
*** elmiko has quit IRC18:14
dane_leblanc_Tango: Sounds great.18:14
*** tongli has quit IRC18:14
*** dkranz has quit IRC18:14
daneyon_Tango I am still confused on the extra route issue18:14
*** garthb_ has joined #openstack-meeting18:14
*** eharney has quit IRC18:14
*** markvoelker has quit IRC18:14
*** ajo has quit IRC18:14
daneyon_I understand how hostgw mode works, what was the problem with the routes being added?18:15
*** trozet has quit IRC18:15
TangoSo there is one route for every other flannel host:  if there are n hosts, you would see n-1 route in the table18:15
*** garthb has quit IRC18:15
TangoThe problem is that there is one route for the local host itself, which is not needed and not correct18:15
*** lblanchard has quit IRC18:15
daneyon_right, these routes are how the flannel host selects the correct hop to send packets.18:15
*** trozet_ has quit IRC18:15
Tangoso the number of route is n routes instead of n-118:16
daneyon_ah18:16
*** merooeny_ has quit IRC18:16
*** weshay_xchat has quit IRC18:16
daneyon_i see now18:16
*** elmiko has joined #openstack-meeting18:16
TangoThe local route confuses the response packet18:16
daneyon_so, that must be an issue when using hostgw in a standalone setup too18:16
Tangoprobably18:17
daneyon_is their an issue that has been created in upstream flannel? If not, I think it's a good idea to create one and add a link to it in the review18:17
daneyon_Tango thanks for pushing through the issue18:18
TangoOne question I want check with everyone is, what should the default backend option be:  udp, vxlan, or hostgw18:18
daneyon_I think the hostgw option will make a lot of magnum users :-)18:18
*** bdrich has joined #openstack-meeting18:18
hongbinYes, if it works18:19
daneyon_I say leave the default as-is18:19
TangoAngus was suggesting hostgw since it's the best, but this assumes all the nodes are on the same L2 network18:19
Tangolater when we add more advanced networking, it may break18:19
daneyon_when the changes bake for a while and we get feedback, we can then change the default18:19
Tangoudp is the most general18:19
daneyon_and hostygw is a good solution for a small-med size cluster... not for large though18:20
Tangotrue18:20
Tangoso maybe we leave the default as udp, and in the user guide, give guidance on what to use18:20
dane_leblanc_host-gw would eventually be a good option when we get Kuryr integrated, right?18:20
daneyon_and when M supports ironic nodes and a cloud provider has vxlan hw, I would expect to see vxlan be a solid option for balancing scale and perf18:20
Tangodane_leblanc_: maybe not, since kuryr would allow connecting between different networks18:21
*** cwolferh has quit IRC18:21
*** ajo has joined #openstack-meeting18:21
*** cwolferh has joined #openstack-meeting18:21
daneyon_dane_leblanc_ kuryr would be a completely different network-driver with it's own options18:21
dane_leblanc_daneyon: I see.18:22
*** ndipanov has quit IRC18:22
daneyon_or kuryr would fall under the libnetwork driver and pass a label to specify which libnetwork driver (kuryr,calico,weave, etc.) to use18:22
*** e0ne has joined #openstack-meeting18:23
daneyon_eg --network-droiver=libnetwork, --label=libnetwork-driver=kuryr or --label=libnetwork-driver=overlay etc..18:23
*** ifat_afek_ has quit IRC18:23
daneyon_s/droiver/driver18:24
*** _nadya_ has quit IRC18:24
daneyon_#action Tango to update https://review.openstack.org/#/c/241866/ to include wip patch set and updated commit msg to indicate option 218:25
daneyon_any other discussion about the hostgw patch?18:25
*** vahidh has quit IRC18:25
daneyon_#topic Review Action Items18:25
*** openstack changes topic to "Review Action Items (Meeting topic: container-networking)"18:25
daneyon_ACTION: danehans to address the 2-daemon approach on the kube irc and provide add'l info through Magnum ML18:26
*** cwolferh has quit IRC18:26
daneyon_I sent an msg to the ML before the holiday break.18:26
*** ihrachys has joined #openstack-meeting18:27
daneyon_Brendan Burns from kube said containerizing etcd, flannel and kube services were out of documentation and support convenience.18:27
*** eharney has joined #openstack-meeting18:27
*** trozet has joined #openstack-meeting18:28
*** dkranz has joined #openstack-meeting18:28
TangoDo they recommend this approach?18:28
daneyon_ATM i think it's still best to run flannel and etcd on the host instead of a container. The 2 docker daemon solution overcomplicates things.18:28
hongbin+118:28
*** esker has quit IRC18:28
*** mrmartin has joined #openstack-meeting18:28
hongbinIt is not the common practice in CoreOS as well18:28
daneyon_Tango they don;t recommend it or recommend against it. They are taking a Switzerland approach ;-)18:29
daneyon_I think it's up to us to make the call18:29
*** ihrachys has quit IRC18:29
*** weshay_xchat has joined #openstack-meeting18:29
Tangook, I guess the reason we were thinking doing this is to simplify things, so if it's more complicated, then maybe not18:29
daneyon_However, if we don't containwrize flannel, we need to update the flannel pkg in our images so vxlan works again18:30
*** rderose has quit IRC18:30
hongbindaneyon_: I think Tango built a new image already?18:30
*** rderose has joined #openstack-meeting18:30
TangoSo I have been working on using diskimagebuilder to build new images18:30
daneyon_oh, good18:31
daneyon_any details you can share Tango on your DIB progress?18:31
TangoI uploaded a new one:  fedora-21-7.qcow218:31
*** gyee has quit IRC18:31
*** zeih has quit IRC18:31
TangoThis has k8s 1.1, docker 1.9.1, flannel 0.5.518:31
daneyon_is this still an atomic image or simply f21?18:31
TangoThe image is fedora only without atomic18:32
Tangof2118:32
*** MaxPC has quit IRC18:32
daneyon_ok18:32
*** MaxPC1 has joined #openstack-meeting18:32
TangoI skip atomic to make it easier to work with, you can run apt-get install18:32
daneyon_how is it coming along making it an "official" image?18:32
daneyon_yeah, atomic is a PITA18:32
dane_leblanc_Yay for apt-get18:33
*** dneary has quit IRC18:33
TangoSince we move to k8s 1.1, we need more testing on the API18:33
daneyon_i think we still need to support a micro os, but I would like that to be coreos and forget atomic18:33
hongbinsimply because the heat templates are developed from a guy from Redhat :)18:33
hongbinat the very beginning18:33
*** esker has joined #openstack-meeting18:33
daneyon_not a pressing need, but something more long-term18:33
daneyon_as long as we have at least 1 OS that is well supported by Magnum and is easy to use, maintaine, etc..18:34
hongbinCoreOS is almost ready18:34
hongbinI have patches that are under review18:34
*** otter768 has joined #openstack-meeting18:34
*** ljxiash has quit IRC18:34
hongbin#link https://review.openstack.org/#/q/status:open+project:openstack/magnum+branch:master+topic:bp/coreos-k8s-bay18:34
daneyon_hongbin right on. larsks did a great job, now we need to continue tailoring the templates to meet our needs.18:35
daneyon_nice hongbin18:35
hongbindaneyon_: agreed18:35
*** haomaiwang has quit IRC18:35
hongbinI am all for moving away from Atomic18:35
*** harlowja has quit IRC18:35
TangoGood to hear agreement on atomic18:35
*** trozet_ has joined #openstack-meeting18:36
daneyon_Tango can you post a link to the f21 image so we have it recorded?18:36
eghobohongbin: +1 but I still think we need Ubuntu as well18:36
Tangohttps://fedorapeople.org/groups/magnum/fedora-21-7.qcow218:36
daneyon_#link https://fedorapeople.org/groups/magnum/fedora-21-7.qcow218:36
*** harlowja has joined #openstack-meeting18:36
daneyon_Tango thanks18:36
hongbineghobo: want a BP for ubuntu?18:37
daneyon_eghobo I am all for supporting Ubuntu or any other add'l distro as long as it's well supported by the community18:37
daneyon_the matrix of support can get out of hand18:37
*** mrmartin has quit IRC18:37
eghobohongbin: I think BP is exists, Tango?18:38
TangoI am setting up DIB to choose fedora, ubuntu, and I guess coreOS now that we are close to getting it working18:38
daneyon_i would much rather have a solid solution on 1 distro than breakage on multiple distros18:38
dane_leblanc_What image should be used as default for upstream gate testing? Whatever is smallest?18:38
Tango+1, but we do have to show user how to create their own image18:39
hongbindane_leblanc_: The gate is using Atomic18:39
Tangodane_leblanc_: I am also trying to get one of the mininal image to work, either fedora or ubunu18:39
*** otter768 has quit IRC18:39
Tangothis would solve the size problem18:40
daneyon_yeah, i think f21 minimal is key to the gate18:40
daneyon_otherwise it's a pretty big image18:40
*** Leom has quit IRC18:40
daneyon_#topic Future Meetings18:41
*** openstack changes topic to "Future Meetings (Meeting topic: container-networking)"18:41
daneyon_I know we discussed this topic briefly before the holiday break18:41
daneyon_Unless the group disagrees, I think we can move our discussions back to the general magnum meetings.18:42
daneyon_If the group would like to continue the sub team, I would like to ask someone to chair the meetings.18:42
daneyon_thoughts?18:43
*** trozet_ has quit IRC18:43
hongbindaneyon_: you are not available to chair this meeting?18:43
daneyon_hongbin I'm divided18:43
hongbinnp from me to move it back if you want18:44
dane_leblanc_daneyon: I would agree with moving back to using just the container meeting. Doesn't seem to be too much network-specific stuff to discuss18:44
*** topol_ has quit IRC18:44
daneyon_I am being pulled into a few different directions and I don;t feel i have the necessary time to lead the sub team18:44
TangoSounds reasonable, we can resume if there is not enough time in the general meeting18:44
daneyon_OK18:45
*** paul-carlton2 has quit IRC18:45
daneyon_The I will consider that an agreement and let Adrian know that we are moving our discussion back to the general meeting.18:45
*** ayoung has quit IRC18:46
daneyon_I think these meetings have been helpful over the last 6 months.18:46
daneyon_I appreciate everyone's involvement in magnum networking.18:46
*** ayoung has joined #openstack-meeting18:46
TangoSeems like we have an agreement, and Adrian can kick us back out if we take too much time in the general meeting18:46
daneyon_we are headed in the right direction.18:47
*** vahidh has joined #openstack-meeting18:47
*** sudipto has quit IRC18:47
*** pradk has quit IRC18:47
daneyon_If we can get the hostgw patch merged and add a few network-drivers, then I will be very :-)18:47
*** ujuc has quit IRC18:47
*** fzdarsky has quit IRC18:47
*** fzdarsky has joined #openstack-meeting18:48
TangoI do want to mention an observation that we may want to keep an eye on18:48
daneyon_#agreed Move the subteam meeting back to the general magnum meeting #link https://wiki.openstack.org/wiki/Meetings/Containers#Weekly_Containers_Team_Meeting18:48
*** trozet has quit IRC18:48
daneyon_Tango go ahead18:48
*** rbowen has quit IRC18:48
TangoThere seems to be divergence between the Docker community and Kubernetes community with regard to networking18:48
daneyon_agreed18:48
TangoThis would complicate things for Magnum18:49
daneyon_one of the reasons why i chose --network-driver instead of --libnetwork-driver18:49
Tangoalthough it does give Magnum a chance to be agnostic and give user choices18:49
TangoI not sure how things will shake out, but at the moment it's very confusing18:49
daneyon_i feel that I was prepared for the goog<>docker war between networking.18:50
*** s3wong has joined #openstack-meeting18:50
*** kencjohnston has joined #openstack-meeting18:50
*** pvaneck has joined #openstack-meeting18:50
Tangokuryr seems to lean toward docker libnetwork for now18:51
daneyon_for example contiv is a container networking solution that has support for kube and docker libnetwork18:51
daneyon_i believe calico too18:51
*** tongli has joined #openstack-meeting18:51
daneyon_when using --network-driver=calico with a k8s bay type, the M templates will need to make sure the correct DIR's, bins, config files, etc.. are orchestrated18:52
daneyon_the same when using --network-driver=calico with a swarm bay type18:52
*** tongli has quit IRC18:53
*** tongli_ has quit IRC18:53
Tangoanyway, a lot of activities on networking ahead18:53
daneyon_in genreal, as we add drivers we will see a lot more heat templates or conditions in the jinja/heat conditional support templates18:53
daneyon_we need to get conditional logic in heat templates or implement the jinja layer that was discussed at the last mid cycle18:54
daneyon_I believe Rob Pothier is working with the Heat community to add conditional support18:54
*** dpaterson has joined #openstack-meeting18:54
*** sigmavirus24_awa is now known as sigmavirus2418:54
Tangodaneyon_: Is there a BP yet on adding kuryr as a driver?18:54
daneyon_IMO this will be huge for Magnum to support a minimal # of templates18:54
*** novas0x2a|laptop has joined #openstack-meeting18:54
daneyon_not that i know of Tango18:54
daneyon_the last we discussed, one of 2 things needed to happen18:55
daneyon_1. Magnum add support for ironic hosts18:55
daneyon_2. kuryr add support for nested VM's18:55
*** Daisy has joined #openstack-meeting18:55
daneyon_as we discussed in the past, I would expect someone fomr the K team to take the lead on adding the K driver to M18:56
daneyon_Same goes with any other driver that gets added.18:56
daneyon_If support lags in the future for a particular driver, then it gets pulled18:56
*** sputnik13 has joined #openstack-meeting18:56
*** haomaiwang has joined #openstack-meeting18:56
daneyon_and M only includes drivers that are actively maintained18:56
daneyon_otherwise we go down the same path and pain of our distro support18:57
hongbinsounds good18:57
daneyon_we have just a few mins left18:57
daneyon_#topic Open Discussion18:57
*** openstack changes topic to "Open Discussion (Meeting topic: container-networking)"18:57
daneyon_any open discssion?18:57
*** dmorita has quit IRC18:57
daneyon_quick?18:57
daneyon_:-)18:57
*** eranrom has joined #openstack-meeting18:58
*** dmorita has joined #openstack-meeting18:58
*** dmorita has quit IRC18:58
daneyon_Otherwise I'll send a msg to Adrian and the mailer that the sub team is merging back to the general community.18:58
*** electrofelix has quit IRC18:58
daneyon_I'll take that as no open discussion18:59
daneyon_thanks again for everyone's support!!!18:59
*** dmorita_ has joined #openstack-meeting18:59
*** Daisy has quit IRC18:59
TangoThanks daneyon_ for hosting18:59
daneyon_and Happy New Year18:59
*** trozet has joined #openstack-meeting18:59
daneyon_yw18:59
dane_leblanc_Happy New Year!18:59
daneyon_take care everyone and have a great day.18:59
daneyon_#endmeeting18:59
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"18:59
openstackMeeting ended Thu Jan  7 18:59:56 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)18:59
openstackMinutes:        http://eavesdrop.openstack.org/meetings/container_networking/2016/container_networking.2016-01-07-18.01.html18:59
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/container_networking/2016/container_networking.2016-01-07-18.01.txt19:00
openstackLog:            http://eavesdrop.openstack.org/meetings/container_networking/2016/container_networking.2016-01-07-18.01.log.html19:00
*** hongbin has left #openstack-meeting19:00
*** neelashah has quit IRC19:00
*** haomaiwang has quit IRC19:01
*** kebray has quit IRC19:01
*** markvoelker has joined #openstack-meeting19:03
*** eghobo has left #openstack-meeting19:04
*** jjmb has joined #openstack-meeting19:05
*** markvoelker_ has joined #openstack-meeting19:05
*** jjmb1 has quit IRC19:06
*** spzala has quit IRC19:06
*** rebase has quit IRC19:06
*** aimon has joined #openstack-meeting19:06
*** ijw has joined #openstack-meeting19:07
*** esker has quit IRC19:07
*** iyamahat has quit IRC19:07
*** yamahata has quit IRC19:07
*** rbowen has joined #openstack-meeting19:07
*** ozamiatin has quit IRC19:07
*** e0ne has quit IRC19:08
*** markvoelker has quit IRC19:09
*** dslevin_ has quit IRC19:10
*** esker has joined #openstack-meeting19:11
*** vijendar has quit IRC19:11
*** dpaterson has quit IRC19:11
*** Sukhdev_ has joined #openstack-meeting19:13
*** Sukhdev_ has quit IRC19:14
*** markvoelker has joined #openstack-meeting19:14
*** neelashah has joined #openstack-meeting19:14
*** pradk has joined #openstack-meeting19:14
*** Sukhdev_ has joined #openstack-meeting19:14
*** baoli has quit IRC19:14
*** mrmartin has joined #openstack-meeting19:15
*** fawadkhaliq has quit IRC19:16
*** cwolferh has joined #openstack-meeting19:17
*** markvoelker_ has quit IRC19:17
*** Tango has quit IRC19:17
*** ijw has quit IRC19:17
*** robefran has quit IRC19:18
*** robefran has joined #openstack-meeting19:19
*** penick has joined #openstack-meeting19:21
*** kebray has joined #openstack-meeting19:21
*** ajmiller_ is now known as ajmiller19:22
*** mrmartin has quit IRC19:22
*** unicell1 has quit IRC19:24
*** iyamahat has joined #openstack-meeting19:26
*** dslevin_ has joined #openstack-meeting19:28
*** esker has quit IRC19:28
*** yamahata has joined #openstack-meeting19:28
*** harshs has joined #openstack-meeting19:29
*** esheffield has quit IRC19:29
*** venkatesh has quit IRC19:29
*** Guest38743 has quit IRC19:29
*** timcline_ has joined #openstack-meeting19:29
*** vgridnev_ has joined #openstack-meeting19:29
*** sputnik13_ has joined #openstack-meeting19:29
*** rtheis_ has joined #openstack-meeting19:29
*** alexpilotti has joined #openstack-meeting19:29
*** egallen_ has joined #openstack-meeting19:30
*** garthb__ has joined #openstack-meeting19:31
*** nikhil_k has joined #openstack-meeting19:31
*** neelashah1 has joined #openstack-meeting19:31
*** ganso_ has joined #openstack-meeting19:31
*** unicell has joined #openstack-meeting19:31
*** jraim_ has joined #openstack-meeting19:32
*** iyamahat has quit IRC19:33
*** dims_ has joined #openstack-meeting19:33
*** iyamahat has joined #openstack-meeting19:33
*** marios_ has joined #openstack-meeting19:34
*** dims has quit IRC19:34
*** yonglihe_ has joined #openstack-meeting19:35
*** ljxiash has joined #openstack-meeting19:35
*** etoews_ has joined #openstack-meeting19:35
*** ameade_ has joined #openstack-meeting19:35
*** powerbsd has joined #openstack-meeting19:36
*** ociuhandu has quit IRC19:36
*** macsz has quit IRC19:36
*** bradjones_ has joined #openstack-meeting19:37
*** bradjones_ has quit IRC19:37
*** bradjones_ has joined #openstack-meeting19:37
*** reed_ has joined #openstack-meeting19:37
*** stevemar_znc has joined #openstack-meeting19:37
*** philipw_ has joined #openstack-meeting19:37
*** alpha_ori_ has joined #openstack-meeting19:38
*** pradk has quit IRC19:38
*** neelashah has quit IRC19:38
*** sputnik13 has quit IRC19:38
*** garthb_ has quit IRC19:38
*** timcline has quit IRC19:38
*** zqfan has quit IRC19:38
*** vgridnev has quit IRC19:38
*** f13o has quit IRC19:38
*** rtheis has quit IRC19:38
*** egallen has quit IRC19:38
*** bradjones has quit IRC19:38
*** adrianofr has quit IRC19:38
*** alexpilo_ has quit IRC19:38
*** jorge_munoz has quit IRC19:38
*** ganso has quit IRC19:38
*** n0ano has quit IRC19:38
*** kbyrne has quit IRC19:38
*** marios has quit IRC19:38
*** jamespage has quit IRC19:38
*** nikhil has quit IRC19:38
*** albertom has quit IRC19:38
*** ameade has quit IRC19:38
*** briancurtin has quit IRC19:38
*** reed has quit IRC19:38
*** sileht has quit IRC19:38
*** lxsli has quit IRC19:38
*** alpha_ori has quit IRC19:38
*** etoews has quit IRC19:38
*** yonglihe has quit IRC19:38
*** philipw has quit IRC19:38
*** vdrok- has quit IRC19:38
*** stevemar has quit IRC19:38
*** jraim has quit IRC19:38
*** egallen_ is now known as egallen19:38
*** bradjones_ is now known as bradjones19:38
*** alpha_ori_ is now known as alpha_ori19:38
*** powerbsd is now known as albertom19:38
*** edtubill has quit IRC19:38
*** reed_ is now known as reed19:39
*** yonglihe_ is now known as yonglihe19:39
*** ganso_ is now known as ganso19:39
*** kebray has quit IRC19:39
*** spzala_ has joined #openstack-meeting19:39
*** lxsli has joined #openstack-meeting19:39
*** adrianofr has joined #openstack-meeting19:40
*** ljxiash has quit IRC19:40
*** adrianofr has quit IRC19:40
*** adrianofr has joined #openstack-meeting19:40
*** _nadya_ has joined #openstack-meeting19:40
*** pradk has joined #openstack-meeting19:40
*** stevemar_znc is now known as stevemar19:40
*** ijw has joined #openstack-meeting19:40
*** ameade_ is now known as ameade19:40
*** jraim_ is now known as jraim19:40
*** f13o has joined #openstack-meeting19:41
*** jamespage has joined #openstack-meeting19:41
*** jamespage has quit IRC19:41
*** jamespage has joined #openstack-meeting19:41
*** jckasper has quit IRC19:41
*** sileht has joined #openstack-meeting19:41
*** etoews_ is now known as etoews19:42
*** kebray has joined #openstack-meeting19:42
*** kbyrne has joined #openstack-meeting19:42
*** jckasper has joined #openstack-meeting19:43
*** gjayavelu has joined #openstack-meeting19:44
*** harshs has quit IRC19:44
*** sigmavirus24 is now known as sigmavirus24_awa19:45
*** zqfan has joined #openstack-meeting19:45
*** briancurtin has joined #openstack-meeting19:45
*** jckasper has quit IRC19:46
*** jckasper has joined #openstack-meeting19:46
*** vdrok- has joined #openstack-meeting19:46
*** harshs has joined #openstack-meeting19:46
*** jckasper has quit IRC19:47
*** jckasper has joined #openstack-meeting19:48
*** sigmavirus24_awa is now known as sigmavirus2419:48
*** Sukhdev_ has quit IRC19:48
*** jckasper has quit IRC19:52
*** cbouch has joined #openstack-meeting19:52
*** jckasper has joined #openstack-meeting19:53
*** ijw has quit IRC19:53
*** dhellmann_ has joined #openstack-meeting19:55
*** zehicle has joined #openstack-meeting19:55
*** zehicle has quit IRC19:55
*** zehicle has joined #openstack-meeting19:55
*** zehicle has quit IRC19:56
*** zehicle has joined #openstack-meeting19:56
*** zehicle has quit IRC19:56
*** esker has joined #openstack-meeting19:57
*** zehicle has joined #openstack-meeting19:57
*** zehicle has quit IRC19:57
*** numans has quit IRC19:57
*** drankis has quit IRC19:57
*** zehicle has joined #openstack-meeting19:57
*** zehicle has quit IRC19:58
*** zehicle has joined #openstack-meeting19:58
*** zehicle has quit IRC19:58
*** zehicle has joined #openstack-meeting19:59
*** zehicle has quit IRC19:59
*** hdaniel has joined #openstack-meeting19:59
*** dims_ has quit IRC20:00
*** zehicle has joined #openstack-meeting20:00
*** zehicle has quit IRC20:00
*** zehicle has joined #openstack-meeting20:00
*** zehicle has quit IRC20:01
*** esker has quit IRC20:01
*** zehicle has joined #openstack-meeting20:02
*** zehicle has quit IRC20:02
*** rob__ has joined #openstack-meeting20:02
*** rob__ has quit IRC20:02
*** esker has joined #openstack-meeting20:02
*** rob__ has joined #openstack-meeting20:02
*** rob__ has quit IRC20:03
*** esker has quit IRC20:03
*** dane_leblanc_ has quit IRC20:03
*** rob__ has joined #openstack-meeting20:03
*** rob__ has quit IRC20:03
*** diazjf1 has joined #openstack-meeting20:04
*** esker has joined #openstack-meeting20:04
*** harshs has quit IRC20:04
*** rob__ has joined #openstack-meeting20:04
*** rob__ has quit IRC20:04
*** diazjf has quit IRC20:04
*** rob__ has joined #openstack-meeting20:05
*** rob__ has quit IRC20:05
*** rob__ has joined #openstack-meeting20:05
*** MaxPC1 has quit IRC20:05
*** MaxPC has joined #openstack-meeting20:05
*** rob__ has quit IRC20:05
*** vijendar has joined #openstack-meeting20:06
*** rob__ has joined #openstack-meeting20:06
*** rob__ has quit IRC20:06
*** rob__ has joined #openstack-meeting20:07
*** MarkAtwood1 has joined #openstack-meeting20:07
*** rob__ has quit IRC20:07
*** rob__ has joined #openstack-meeting20:07
*** rob__ has quit IRC20:07
*** esker has quit IRC20:08
*** rob__ has joined #openstack-meeting20:08
*** armax has quit IRC20:08
*** rob__ has quit IRC20:08
dtroyerola20:09
*** rob__ has joined #openstack-meeting20:09
*** armax has joined #openstack-meeting20:09
dtroyerI'm late, anyone still around for an OSC meeting?20:09
*** esker has joined #openstack-meeting20:09
*** rob__ has quit IRC20:09
*** kebray has quit IRC20:09
*** rfolco has quit IRC20:09
*** gjayavelu has quit IRC20:09
*** MaxPC has quit IRC20:09
*** rob__ has joined #openstack-meeting20:09
*** MaxPC has joined #openstack-meeting20:09
*** rob__ has quit IRC20:10
*** rob__ has joined #openstack-meeting20:10
*** haomaiwang has joined #openstack-meeting20:10
*** galstrom is now known as galstrom_zzz20:10
*** rob__ has quit IRC20:10
*** dane_leblanc_ has joined #openstack-meeting20:11
*** rob__ has joined #openstack-meeting20:11
*** rob__ has quit IRC20:11
*** esker has quit IRC20:11
*** dhellmann has quit IRC20:11
*** dhellmann_ is now known as dhellmann20:11
*** rob__ has joined #openstack-meeting20:12
*** rob__ has quit IRC20:12
*** dhellmann has quit IRC20:12
*** topol has joined #openstack-meeting20:12
*** galstrom_zzz is now known as galstrom20:12
*** dims has joined #openstack-meeting20:12
*** rob__ has joined #openstack-meeting20:12
*** MaxPC1 has joined #openstack-meeting20:13
*** rob__ has quit IRC20:13
*** MaxPC has quit IRC20:13
*** Leo_ has joined #openstack-meeting20:13
*** rob__ has joined #openstack-meeting20:13
*** rob__ has quit IRC20:14
*** Tango has joined #openstack-meeting20:14
*** dhellmann has joined #openstack-meeting20:14
*** rob__ has joined #openstack-meeting20:14
*** rob__ has quit IRC20:14
*** Leom has joined #openstack-meeting20:15
*** rob__ has joined #openstack-meeting20:15
*** rob__ has quit IRC20:15
*** changbl has quit IRC20:15
*** rob__ has joined #openstack-meeting20:15
*** kcalman has quit IRC20:16
*** rob__ has quit IRC20:16
*** rob__ has joined #openstack-meeting20:16
*** dmorita_ has quit IRC20:16
*** rob__ has quit IRC20:16
*** tsymanczyk has joined #openstack-meeting20:16
*** haomaiwang has quit IRC20:17
*** rob__ has joined #openstack-meeting20:17
*** tsymanczyk is now known as Guest7494020:17
*** kebray has joined #openstack-meeting20:17
*** rob__ has quit IRC20:17
*** Leo_ has quit IRC20:17
*** rob__ has joined #openstack-meeting20:18
*** rob__ has quit IRC20:18
*** rob__ has joined #openstack-meeting20:18
*** hdaniel has quit IRC20:18
*** rob__ has quit IRC20:19
*** ayoung has quit IRC20:19
*** rob__ has joined #openstack-meeting20:19
*** dims has quit IRC20:19
*** rob__ has quit IRC20:19
*** rob__ has joined #openstack-meeting20:20
*** rob__ has quit IRC20:20
*** esker has joined #openstack-meeting20:20
*** Guest26209 has quit IRC20:20
*** rob__ has joined #openstack-meeting20:20
*** rob__ has quit IRC20:21
*** Guest74940 has quit IRC20:21
*** rob__ has joined #openstack-meeting20:21
*** esker has quit IRC20:21
*** rob__ has quit IRC20:21
*** aeng has joined #openstack-meeting20:22
*** dims has joined #openstack-meeting20:22
*** dims has quit IRC20:23
*** rob__ has joined #openstack-meeting20:24
*** vhoward has quit IRC20:24
*** jckasper has quit IRC20:24
*** rob__ has quit IRC20:24
*** fernnest_ has quit IRC20:24
*** rob__ has joined #openstack-meeting20:25
*** fernnest_ has joined #openstack-meeting20:25
*** rob__ has quit IRC20:25
*** rob__ has joined #openstack-meeting20:25
*** rob__ has quit IRC20:26
*** rob__ has joined #openstack-meeting20:26
*** timcline_ has quit IRC20:26
*** rob__ has quit IRC20:26
*** _nadya_ has quit IRC20:27
*** rob__ has joined #openstack-meeting20:27
*** whenry has joined #openstack-meeting20:27
*** rob__ has quit IRC20:27
*** rob__ has joined #openstack-meeting20:27
*** jckasper has joined #openstack-meeting20:28
*** rob__ has quit IRC20:28
*** hdaniel has joined #openstack-meeting20:28
*** rob__ has joined #openstack-meeting20:28
*** rob__ has quit IRC20:28
*** rob__ has joined #openstack-meeting20:29
*** rob__ has quit IRC20:29
*** rob__ has joined #openstack-meeting20:30
*** rob__ has quit IRC20:30
*** rob__ has joined #openstack-meeting20:30
*** rob__ has quit IRC20:31
*** rob__ has joined #openstack-meeting20:31
*** amrith is now known as _amrith_20:31
*** rob__ has quit IRC20:31
*** rob__ has joined #openstack-meeting20:32
*** rob__ has quit IRC20:32
*** rob__ has joined #openstack-meeting20:32
*** rob__ has quit IRC20:33
*** rob__ has joined #openstack-meeting20:33
*** dprince has quit IRC20:33
*** rob__ has quit IRC20:33
*** rob__ has joined #openstack-meeting20:34
*** rob__ has quit IRC20:34
*** timcline has joined #openstack-meeting20:34
*** jichen has quit IRC20:34
*** rob__ has joined #openstack-meeting20:34
*** rob__ has quit IRC20:35
*** rob__ has joined #openstack-meeting20:35
*** otter768 has joined #openstack-meeting20:35
*** rob__ has quit IRC20:35
*** rob__ has joined #openstack-meeting20:36
*** rob__ has quit IRC20:36
*** rob__ has joined #openstack-meeting20:36
*** rob__ has quit IRC20:37
*** rob__ has joined #openstack-meeting20:37
*** rob__ has quit IRC20:37
*** rob__ has joined #openstack-meeting20:38
*** rob__ has quit IRC20:38
*** rob__ has joined #openstack-meeting20:39
*** ayoung has joined #openstack-meeting20:39
*** rob__ has quit IRC20:39
*** matrohon has joined #openstack-meeting20:39
*** rob__ has joined #openstack-meeting20:39
*** dims has joined #openstack-meeting20:39
*** rob__ has quit IRC20:40
*** rob__ has joined #openstack-meeting20:40
*** rob__ has quit IRC20:40
*** otter768 has quit IRC20:40
*** rob__ has joined #openstack-meeting20:41
*** rob__ has quit IRC20:41
*** rob__ has joined #openstack-meeting20:41
*** rob__ has quit IRC20:42
*** rob__ has joined #openstack-meeting20:42
*** rob__ has quit IRC20:42
*** rob__ has joined #openstack-meeting20:43
*** rob__ has quit IRC20:43
*** rob__ has joined #openstack-meeting20:43
*** rob__ has quit IRC20:44
*** jckasper has quit IRC20:44
*** rob__ has joined #openstack-meeting20:44
*** jckasper has joined #openstack-meeting20:44
*** rob__ has quit IRC20:44
*** jmckind_ has joined #openstack-meeting20:45
*** rob__ has joined #openstack-meeting20:45
*** rob__ has quit IRC20:45
*** jckasper has quit IRC20:45
*** jckasper has joined #openstack-meeting20:46
*** rob__ has joined #openstack-meeting20:46
*** rob__ has quit IRC20:46
*** rob__ has joined #openstack-meeting20:46
*** rob__ has quit IRC20:47
*** dmorita has joined #openstack-meeting20:47
*** jmckind has quit IRC20:47
*** rob__ has joined #openstack-meeting20:47
*** rob__ has quit IRC20:47
*** rob__ has joined #openstack-meeting20:48
*** rob__ has quit IRC20:48
*** piet has quit IRC20:48
*** esker has joined #openstack-meeting20:48
*** rob__ has joined #openstack-meeting20:48
*** unicell has quit IRC20:48
*** rob__ has quit IRC20:49
*** rob__ has joined #openstack-meeting20:49
*** rob__ has quit IRC20:49
*** ccarmack has joined #openstack-meeting20:50
*** rob__ has joined #openstack-meeting20:50
*** rob__ has quit IRC20:50
*** rfolco has joined #openstack-meeting20:50
*** rob__ has joined #openstack-meeting20:51
*** CaptTofu___ is now known as CaptTofu20:51
*** rob__ has quit IRC20:51
*** zqfan has quit IRC20:51
*** rob__ has joined #openstack-meeting20:51
*** rob__ has quit IRC20:52
*** rob__ has joined #openstack-meeting20:52
*** rob__ has quit IRC20:52
*** rob__ has joined #openstack-meeting20:53
*** rob__ has quit IRC20:53
*** dmorita has quit IRC20:53
*** dmorita has joined #openstack-meeting20:53
*** rob__ has joined #openstack-meeting20:53
*** rob__ has quit IRC20:54
*** cdent has joined #openstack-meeting20:54
*** rob__ has joined #openstack-meeting20:54
*** rob__ has quit IRC20:54
*** iben_ has quit IRC20:54
*** rfolco has quit IRC20:54
*** rob__ has joined #openstack-meeting20:55
*** gjayavelu has joined #openstack-meeting20:55
*** rob__ has quit IRC20:55
*** rob__ has joined #openstack-meeting20:56
*** rob__ has quit IRC20:56
*** rob__ has joined #openstack-meeting20:56
*** esker has quit IRC20:56
*** rob__ has quit IRC20:57
*** rob__ has joined #openstack-meeting20:57
*** rob__ has quit IRC20:57
*** matrohon has quit IRC20:58
*** rob__ has joined #openstack-meeting20:58
*** rob__ has quit IRC20:58
*** rob__ has joined #openstack-meeting20:58
*** rob__ has quit IRC20:59
*** rlrossit has joined #openstack-meeting20:59
*** rob__ has joined #openstack-meeting20:59
*** rob__ has quit IRC20:59
*** mriedem has joined #openstack-meeting21:00
*** rob__ has joined #openstack-meeting21:00
*** lblanchard1 has quit IRC21:00
*** rob__ has quit IRC21:00
mriedem#startmeeting nova21:00
openstackMeeting started Thu Jan  7 21:00:44 2016 UTC and is due to finish in 60 minutes.  The chair is mriedem. Information about MeetBot at http://wiki.debian.org/MeetBot.21:00
*** jckasper has quit IRC21:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.21:00
*** openstack changes topic to " (Meeting topic: nova)"21:00
openstackThe meeting name has been set to 'nova'21:00
tonybo/21:00
claudiubo/21:00
alaskio/21:00
*** ociuhandu has joined #openstack-meeting21:00
cburgesso/21:00
*** rob__ has joined #openstack-meeting21:01
cdento/21:01
*** macsz has joined #openstack-meeting21:01
dansmitho/21:01
rlrossito/21:01
*** rob__ has quit IRC21:01
mriedem#link agenda https://wiki.openstack.org/wiki/Meetings/Nova21:01
*** auggy has joined #openstack-meeting21:01
*** jckasper has joined #openstack-meeting21:01
russellbo/21:01
edleafe\o21:01
macsz\\//,21:01
*** changbl has joined #openstack-meeting21:01
scottdahi21:01
auggyo/~21:01
*** rob__ has joined #openstack-meeting21:01
mriedemthere are a few things so let's get started21:01
mriedem#topic release status21:01
*** openstack changes topic to "release status (Meeting topic: nova)"21:01
sdagueo/21:01
mriedemJan 21: Nova non-priority feature freeze21:01
mriedemJan 19-21: mitaka-221:01
*** rob__ has quit IRC21:01
bauzas\o21:02
*** _gryf has joined #openstack-meeting21:02
mriedemso 2 weeks21:02
*** rob__ has joined #openstack-meeting21:02
mriedemany questions about that?21:02
*** rob__ has quit IRC21:02
mriedem#topic regular reminders21:02
*** openstack changes topic to "regular reminders (Meeting topic: nova)"21:02
mriedemreview priorities are here https://etherpad.openstack.org/p/mitaka-nova-priorities-tracking21:02
*** tjones has joined #openstack-meeting21:02
mriedem#link review priorities https://etherpad.openstack.org/p/mitaka-nova-priorities-tracking21:02
*** rob__ has joined #openstack-meeting21:03
*** fzdarsky has quit IRC21:03
mriedem#topic bugs21:03
*** openstack changes topic to "bugs (Meeting topic: nova)"21:03
*** rob__ has quit IRC21:03
*** matrohon has joined #openstack-meeting21:03
mriedemgate has been okish except for the py34 job21:03
mriedemsuper flaky with mox lately21:03
mriedemhence an effort to cleanup mox usage in tests21:03
mriedemstarting with https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:master+topic:bp/remove-mox21:03
*** rob__ has joined #openstack-meeting21:03
mriedem#link remove-mox cleanup https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:master+topic:bp/remove-mox21:03
*** rob__ has quit IRC21:03
mriedemaside from that, we've been trying to keep on top of known racy py34 failures with the blacklist in tree21:04
*** raildo is now known as raildo-afk21:04
bauzasthat's a large story21:04
mriedemin here21:04
*** rob__ has joined #openstack-meeting21:04
mriedemhttps://github.com/openstack/nova/blob/master/tests-py3.txt21:04
sdagueyeh, I'd like to turn some of the fakes into real fixtures during the process. But if we can hack away at known races with mox3 it might help.21:04
mriedemyeah, so the first step is an easy one, which is replacing self.stubs.Set with self.stub_out21:04
*** rob__ has quit IRC21:04
*** nic has joined #openstack-meeting21:04
mriedemwhich uses fixtures21:04
mriedemelse let's blacklist known bad things to stop any bleeding21:05
*** rob__ has joined #openstack-meeting21:05
sdagueright, it's super straight forward, it's just a lot of patches21:05
bauzascan I actually ask why we shouldn't put non-voting py34 until the series merges ?21:05
sdaguebauzas: so... 2017?21:05
*** rob__ has quit IRC21:05
bauzasI dunno21:05
mriedemit came up21:05
bauzasbut it seems we're hitting more races now21:05
*** rob__ has joined #openstack-meeting21:05
dansmithsdague: wasn't that originally your desire? to make it non-voting?21:05
sdaguegit grep 'self.stubs.Set' | wc -l21:05
sdague200321:05
*** jckasper has quit IRC21:05
sdaguedansmith: take it off the gate21:06
*** rob__ has quit IRC21:06
*** changbl has quit IRC21:06
dansmithso only voting on check you mean?21:06
sdagueyes21:06
dansmithokay21:06
bauzasthat sounds fair21:06
*** rob__ has joined #openstack-meeting21:06
sdagueexcept, that might be tricky because of the way the job def is21:06
*** rob__ has quit IRC21:06
mriedemit's part of a group isn't it?21:06
mriedemlike python-jobs?21:06
sdagueyeh21:06
bauzasoh21:06
*** rob__ has joined #openstack-meeting21:07
sdagueanyway, lets see if transition off mox helps21:07
mriedemyou'd have to not use the group i'd thing21:07
mriedemyeah, i think the fake image stub thing will help a bit21:07
*** MaxPC has joined #openstack-meeting21:07
mriedemsince it's global and pervasive21:07
*** rob__ has quit IRC21:07
mriedemit's what the vmware api tests were choking on in the gate all week21:07
mriedemmoving on21:07
*** rob__ has joined #openstack-meeting21:07
mriedemthird party ci status21:07
mriedemi haven't really been paying attention lately honestly21:08
*** rob__ has quit IRC21:08
*** MaxPC1 has quit IRC21:08
mriedem#link 3rd party ci status http://ci-watch.tintri.com/project?project=nova&time=7+days21:08
*** rob__ has joined #openstack-meeting21:08
mriedemok21:08
mriedemonto critical bugs21:08
*** rob__ has quit IRC21:08
mriedem#topic critical bugs21:08
*** openstack changes topic to "critical bugs (Meeting topic: nova)"21:08
mriedemthere is a series for a security bug that starts here https://review.openstack.org/#/c/264812/21:08
mriedem#link security bug fix starts here https://review.openstack.org/#/c/264812/21:08
mriedemthe first patch has a +@21:09
*** rob__ has joined #openstack-meeting21:09
mriedem*+221:09
mriedemand there are backports proposed to stable/liberty and kilo already,21:09
*** rob__ has quit IRC21:09
mriedembut since it's a 3-patch series per branch, i want to make sure master is good before we take them into stable21:09
mriedemany other critical bugs to bring up?21:09
*** rob__ has joined #openstack-meeting21:09
mriedemmoving on21:10
*** rob__ has quit IRC21:10
*** mudassirlatif_ has joined #openstack-meeting21:10
sdaguethat wasn't reviewed before going public?21:10
mriedemprobably21:10
sdaguetypically those don't go public until they have both +2s good to go21:10
*** rob__ has joined #openstack-meeting21:10
mriedemi didn't know how much we just rubber stamp those21:10
dansmithI believe it was, but it still gets normal review in gerrit21:10
*** jckasper has joined #openstack-meeting21:10
*** rob__ has quit IRC21:10
dansmithI was told that the disclosure has to have code available, and code in gerrit == available21:10
dansmithnot in a build or anything21:10
*** MaxPC1 has joined #openstack-meeting21:11
*** MaxPC has quit IRC21:11
dansmithwe wait until it has high confidence of being the right solution before disclosure, which is why we pre-review21:11
tonybIt'd be great to get them but blocking for good reassons is fine.21:11
*** rob__ has joined #openstack-meeting21:11
sdagueok, when I was part of these in the past we didn't move to gerrit until the approvals were lined up21:11
*** rob__ has quit IRC21:11
dansmithsdague: sure, but that doesn't mean slam them in with no other eyes21:11
dansmiththat's all21:11
*** rob__ has joined #openstack-meeting21:11
sdagueok21:11
tjonesmriedem: is the fake image stub thing the same as changing self.set.Stubs to stub_out or is it something else?21:12
*** rob__ has quit IRC21:12
*** macsz has quit IRC21:12
mriedemtjones: same21:12
mriedemthe patch is already approved21:12
tjonesgracias21:12
mriedemlike 10 min ago though21:12
*** rob__ has joined #openstack-meeting21:12
mriedemany more on that security bug?21:12
*** mudassirlatif has quit IRC21:12
*** mudassirlatif_ is now known as mudassirlatif21:12
*** rob__ has quit IRC21:12
mriedemmarkus_z had a request for volunteers to be on bug duty https://wiki.openstack.org/wiki/Nova/BugTriage#Weekly_bug_skimming_duty21:13
mriedemthere was a ML thread on it also21:13
*** rob__ has joined #openstack-meeting21:13
mriedemlooks like a rotating 1 week thing21:13
*** rob__ has quit IRC21:13
mriedemanyway, read on if you're interested21:13
mriedem#link bug volunteers for a week https://wiki.openstack.org/wiki/Nova/BugTriage#Weekly_bug_skimming_duty21:13
*** rob__ has joined #openstack-meeting21:13
mriedem#topic stable branch status21:14
*** openstack changes topic to "stable branch status (Meeting topic: nova)"21:14
*** haomaiwang has joined #openstack-meeting21:14
dansmith"effed"21:14
*** rob__ has quit IRC21:14
mriedemheh21:14
mriedemyeah so i managed to merge a thing that broke triple-o on stable/liberty last night21:14
mriedembut i blame jenkins21:14
mriedemamong others...21:14
*** rob__ has joined #openstack-meeting21:14
mriedemanyway, here are the stable/liberty open reviews https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/liberty,n,z21:14
*** MaxPC has joined #openstack-meeting21:14
mriedem#link stable/liberty nova reviews https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/liberty,n,z21:14
*** rob__ has quit IRC21:14
mriedemi'd like to get as much of that flushed through this week so we can release 12.0.1 next week21:15
mriedembut that is going to need to wait for the backport of that security fix21:15
*** MaxPC1 has quit IRC21:15
*** rob__ has joined #openstack-meeting21:15
mriedemi see 3 changes out there that have a +2 but missing the approval21:15
*** rob__ has quit IRC21:15
mriedemstable/kilo reviews https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/kilo,n,z21:15
mriedemi haven't looked at kilo since the break21:15
mriedemlooks like there are quite a few out there21:15
*** rob__ has joined #openstack-meeting21:15
*** rob__ has quit IRC21:16
mriedemanything else for stable?21:16
mriedemoh yeah, upper-constraints for stable/liberty is having some growing pains, tracked here https://etherpad.openstack.org/p/stable-liberty-constraints-sanity21:16
*** rob__ has joined #openstack-meeting21:16
sdagueso, I thought kilo was just security fixes at this point, right?21:16
mriedemfor those that like to make their lives worse21:16
*** gcb has joined #openstack-meeting21:16
sdagueI'm surprised that things like https://review.openstack.org/#/c/264795/ are backports21:16
*** rob__ has quit IRC21:16
mriedemi'd have to check the actual dates21:17
tonybsdague: kilo is security only liberty is more open21:17
*** rob__ has joined #openstack-meeting21:17
mriedemi wasn't sure if that's after juno was eol21:17
*** rob__ has quit IRC21:17
sdagueok, so I think a lot of those kilo backports should probably be nixed given that21:17
*** unicell has joined #openstack-meeting21:17
*** rob__ has joined #openstack-meeting21:18
mriedemyeah maybe21:18
*** rromans has quit IRC21:18
*** cwolferh has quit IRC21:18
*** rajinir has joined #openstack-meeting21:18
mriedemcritical impact type bugs which are not necessarily security issues have been given a pass in the past too21:18
*** rob__ has quit IRC21:18
*** piet has joined #openstack-meeting21:18
mriedemlike things that impact the gate for example21:18
sdaguesure, performance tweaks seem to be out of scope though21:18
mriedembut yeah, most of that list needs a good scrubbing for sure21:18
*** MaxPC1 has joined #openstack-meeting21:18
*** rob__ has joined #openstack-meeting21:18
mriedemwell, cern reported that one when they upgraded to kilo21:18
*** ccarmack has left #openstack-meeting21:18
mriedemand it's 5 LOC21:19
*** rob__ has quit IRC21:19
*** MaxPC has quit IRC21:19
*** haomaiwang has quit IRC21:19
*** rob__ has joined #openstack-meeting21:19
*** neelashah1 has quit IRC21:19
mriedemmoving on?21:19
*** rob__ has quit IRC21:19
mriedem#topic stuck reviews21:20
*** openstack changes topic to "stuck reviews (Meeting topic: nova)"21:20
bauzastbh, cern can disable that if needed21:20
*** penick has quit IRC21:20
bauzasbut let's discuss that offline21:20
*** rob__ has joined #openstack-meeting21:20
mriedemi posted to the ML on a cells v2 patch that adds the flavors tables to the API DB21:20
mriedem#link cells v2 flavors api db ML thread http://lists.openstack.org/pipermail/openstack-dev/2016-January/083518.html21:20
*** rob__ has quit IRC21:20
mriedemthe question is if we should allow those to be soft-deletable21:20
mriedemsince we've previously said no more soft delete, but it turns out the flavor API can read deleted flavors if you have the id21:20
*** rob__ has joined #openstack-meeting21:21
mriedemand you can get the id from an instance get21:21
mriedemso i'm torn21:21
*** rob__ has quit IRC21:21
*** unicell has quit IRC21:21
mriedemwe can discuss in the ML through, it's also cross posted to the ops ML21:21
mriedem*though21:21
sdaguebut only accidentally until you run a db purge right?21:21
*** rob__ has joined #openstack-meeting21:21
mriedemright21:21
bauzasdo we have kind of permalinks ?21:21
*** unicell has joined #openstack-meeting21:21
bauzasfor flavors21:21
melwittback before flavor was stored with the instance, it was how you could still get instance details for an instance whose flavor had since been deleted21:21
dansmithnot accidentally,21:21
sdagueit's not like we guaruntee they will be there forever21:21
dansmiththat's the design21:21
dansmithbut yes, "until a purge"21:21
*** rob__ has quit IRC21:21
sdaguedansmith: right, not really accidental21:22
sdaguebut there is no contract around their longevity21:22
dansmithmelwitt: there's no way to get the current data either.. we need to add a thing I think21:22
*** rob__ has joined #openstack-meeting21:22
dansmithmelwitt: embed the flavor in the instance result21:22
mriedemyeah, we could add a microversion to the server get to show the flavor info21:22
melwittdansmith: oh, okay. didn't know that21:22
sdagueright, we need a new rest api for that21:22
dansmithsdague: correct, but it's also a permalink which is the concern21:22
*** rob__ has quit IRC21:22
mriedemwe also have no CLIs to purge the api db (yet)21:22
edleafejust add a visble column - don't keep calling them deleted21:22
mriedemso this would set precedence21:22
*** rob__ has joined #openstack-meeting21:23
sdaguedansmith: yeh, our permalinks are a bit less permanent then we'd like21:23
*** rob__ has quit IRC21:23
dansmithsdague: yep, I'm not saying we shouldn't do it, I'm just explaining why it gives us heartburn21:23
sdaguehonestly, given that we don't have a contract around how long things will stick around there, I feel like saying the answer is 0 is fine21:23
mriedemi'd realy like operator input on that one before we move forward,21:23
*** rob__ has joined #openstack-meeting21:23
dansmithI think the purge case is a good enough reason to be able to drop it21:23
mriedembut it is blocking cells v2 progress so it's kind of urgent21:23
*** rob__ has quit IRC21:24
alaskiI agree that we should drop it, but want to wait for the operator feedback21:24
dansmithsdague: if we drop the flavor link in the same rev that we add the flavor dump to the instance, that will help avoid it sticking around any longer21:24
mriedemgiven the guys writing the patch are cern i'm assuming they will provide input at some point21:24
dansmithand21:24
*** harshs has joined #openstack-meeting21:24
*** rob__ has joined #openstack-meeting21:24
dansmiththis might be a good reason for people to move up a few microversions if losing flavor stuff immediately makes them uncomfortable21:24
sdaguedansmith: that's an API change, we need a microversion21:24
*** rob__ has quit IRC21:24
sdagueyeh21:24
dansmithsdague: we need a microversion for both changes21:24
sdagueah, ok21:24
dansmithsdague: I'm saying do both the drop and add in the same one,21:24
*** rob__ has joined #openstack-meeting21:25
dansmiths/,$//21:25
*** baoli has joined #openstack-meeting21:25
mriedemi'm not sure how we have a microversion for the flavors db model thing in the api db21:25
sdagueyeh, that seems fine. Is anyone working on the API change?21:25
*** rob__ has quit IRC21:25
*** dneary has joined #openstack-meeting21:25
mriedemsdague: no, it came up as an idea in the cells meeting yesterday21:25
sdagueGET /servers/{id}/flavor21:25
dansmithsdague: oh wait21:25
*** rob__ has joined #openstack-meeting21:25
sdagueand start using that as our permalinks21:25
dansmithsdague: that's not what I was thinking, but that's a great idea21:25
*** rob__ has quit IRC21:26
*** baoli_ has joined #openstack-meeting21:26
sdagueoh, I though that's what we'd decided at summit, just hadn't gotten around to yet21:26
dansmiththe thing I hated, was that we'd be returning a wrong permalink because $api21:26
alaskimriedem: we don't microversion the flavor migration, but deleted flavors look like purged flavors at that point21:26
dansmithbut if we did that then we could just say stored permalinks are wrong,21:26
*** rob__ has joined #openstack-meeting21:26
*** ccarmack1 has joined #openstack-meeting21:26
*** rob__ has quit IRC21:26
dansmithI feel like the link/ref thing returned in something like instance is the link to it right now, not necessarily that you can capture that url forever and expect it to work21:26
dansmithso just changing how/where we point the permalink seems totally  fine to me21:27
*** rob__ has joined #openstack-meeting21:27
*** rob__ has quit IRC21:27
sdagueok, I can help dig on the API side early next week, especially if it will help unblock cells v2 stuff21:27
edleafepermalink for some value of perma21:27
*** rob__ has joined #openstack-meeting21:27
dansmithedleafe: it's actually not a permalink, it's an "href"21:27
mriedemso it sounds like we have a path forward and opinion on what we'd like to do21:27
dansmithedleafe: literally a pointer to the flavor21:28
*** rob__ has quit IRC21:28
mriedemand the api would probably be a dep on the cells v2 change, but we'd have focused review on the spec and change21:28
*** jungleboyj has quit IRC21:28
*** rob__ has joined #openstack-meeting21:28
mriedemsdague: dansmith: alaski: please express opinions/etc in the ML thread21:28
sdagueok, will do21:28
*** rob__ has quit IRC21:28
mriedemmoving on21:28
mriedem#topic open discussion21:28
*** openstack changes topic to "open discussion (Meeting topic: nova)"21:28
*** nikhil_k is now known as nikhil21:29
mriedem#link midcycle details https://wiki.openstack.org/wiki/Sprints/NovaMitakaSprint21:29
*** rob__ has joined #openstack-meeting21:29
*** cdub has joined #openstack-meeting21:29
*** njohnsto_ has quit IRC21:29
mriedem#link ideas for midcycle https://etherpad.openstack.org/p/mitaka-nova-midcycle21:29
*** rob__ has quit IRC21:29
dansmithI have an idea for the midcycle21:29
mriedemit sounds like the cinder midcycle is happening in the US at the exact same time21:29
anteayaso far the neutron folks attending are armax and carl_baldwin21:29
dansmith"tell rob__ to cut it out"21:29
*** rob__ has joined #openstack-meeting21:29
anteayamriedem: and keystone21:29
*** rob__ has quit IRC21:30
*** baoli has quit IRC21:30
mriedemanteaya: keystone huh21:30
_gryfdansmith, that the same thing…21:30
*** rob__ has joined #openstack-meeting21:30
mriedemi guess the only keystone related stuff i know of going on are the keystoneauth changes21:30
stevemarmriedem: darn those keystone guys21:30
mriedemand whatever project/service catalog work sdague is doing21:30
*** njohnsto_ has joined #openstack-meeting21:30
*** rob__ has quit IRC21:30
anteaya#link https://wiki.openstack.org/wiki/Sprints/KeystoneMitakaSprint21:30
anteayakeystone is also happening at the same time21:31
mriedemmultiattach is a major thing for cinder21:31
*** rob__ has joined #openstack-meeting21:31
mriedemso it sounds like some of the cinder people want to do a hangout at some point during the week21:31
*** rob__ has quit IRC21:31
mriedemproblem with the multiattach stuff is it's not a priority and our meetup is the week after non-priority FF21:31
anteayamriedem: sorry I changed thoughts without indicating I was changing21:31
*** rob__ has joined #openstack-meeting21:31
mriedemthat's fine, just trying to figure out what the cross-project impacts are21:31
anteayamriedem: yup21:32
mriedemi don't know what hot button things neutron people care about for nova in mitaka21:32
*** rob__ has quit IRC21:32
mriedemanyway, if nothing else on the midcycle, moving on21:32
anteayaokay if there are any I'll encourage them to communicate21:32
*** rob__ has joined #openstack-meeting21:32
mriedemthanks21:32
mriedem#link TC review on containers in nova's mission https://review.openstack.org/#/c/256440/21:32
*** rob__ has quit IRC21:32
mriedem^ has a healthy dose of -1 on it21:32
*** rob__ has joined #openstack-meeting21:33
sdagueunrelated to that, has there been any motion on privsep?21:33
mriedemso if you have an opinion, i guess state it there21:33
*** rob__ has quit IRC21:33
mriedemsdague: i heard someone in cinder say this week that it would be N at the earliest21:33
sdaguebecause osbrick and osvif are both in a weird place without it21:33
tonybsdague: the os-brick stuff is in progress21:33
*** rob__ has joined #openstack-meeting21:33
tonybsdague: I think that there is enough privsep in place to enable os-vif21:33
sdaguemriedem: really?21:34
mriedemsdague: yeah, os-brick is looking to move some more common lvm stuff out of nova and cinder into os-brick but it needs more rootwrap type stuff with it21:34
*** macsz has joined #openstack-meeting21:34
*** rob__ has quit IRC21:34
*** penick has joined #openstack-meeting21:34
mriedemonly what i heard in the cinder meeting this week21:34
mriedemi don't know the details21:34
*** mrmartin has joined #openstack-meeting21:34
*** rob__ has joined #openstack-meeting21:34
tonybFWIW gus will be at the MC21:34
dansmithsheesh21:34
*** rob__ has quit IRC21:34
*** topol has quit IRC21:34
*** ijw has joined #openstack-meeting21:34
mriedemdansmith: plan on talking about a lot of things21:35
dansmithhow far away do we have to have the midcycle to get the aussies to not come?21:35
sdagueok, that's something we should reset on. Because we've crippled upgrade21:35
*** rob__ has joined #openstack-meeting21:35
*** ccarmack has joined #openstack-meeting21:35
*** rob__ has quit IRC21:35
mriedemsdague: something for the oslo meeting?21:35
dansmithsdague: wait, what?21:35
tonybdansmith: keep trying21:35
dansmithtonyb: :P <321:35
*** rob__ has joined #openstack-meeting21:35
sdagueevery new thing that goes into osbrick that requires filter adjustment means lock step nova/cinder/osbrick upgrade21:36
*** rob__ has quit IRC21:36
dansmithah21:36
mriedemi'm not aware of anything new really in that regard yet for mitaka21:36
*** esker has joined #openstack-meeting21:36
tonybcan we do the provsep conversion in nova/cinder and then move it?21:36
mriedembut i haven't checked21:36
*** rob__ has joined #openstack-meeting21:36
*** baoli_ has quit IRC21:36
*** ljxiash has joined #openstack-meeting21:36
sdaguetonyb: that's what I was hoping the plan was going to be21:36
*** rob__ has quit IRC21:37
mriedemso is anyone stepping up here to push on this?21:37
mriedempush it real good?21:37
*** baoli has joined #openstack-meeting21:37
tonybsdague: then I think we should try to make that the plan21:37
sdaguemriedem: who is point on os-brick?21:37
*** rob__ has joined #openstack-meeting21:37
mriedemhemna:21:37
*** njohnsto_ has quit IRC21:37
* mriedem assumes21:37
*** matrohon has quit IRC21:37
*** rob__ has quit IRC21:37
*** Sukhdev has joined #openstack-meeting21:37
scottdamriedem: yes, it would be hemna21:37
hemnawha?21:38
*** rob__ has joined #openstack-meeting21:38
sdagueok, I'll poke a bit21:38
*** ccarmack1 has quit IRC21:38
mriedem#action sdague to poke hemna21:38
*** rob__ has quit IRC21:38
mriedem(about os-brick and privsep)21:38
hemnaoh privsep21:38
hemnaso, it looks like angus has put a small WIP patch up against os-brick21:38
*** rob__ has joined #openstack-meeting21:38
hemnabut honestly, it seems a long ways away21:38
*** njohnsto_ has joined #openstack-meeting21:38
*** rob__ has quit IRC21:39
*** matrohon has joined #openstack-meeting21:39
*** mudassirlatif has quit IRC21:39
hemnahttps://review.openstack.org/#/c/258252/21:39
sdagueright, so I think that os-brick has to be in filter freeze until that is in21:39
hemnathat one and it only covers a small piece21:39
*** Swami_ has quit IRC21:39
*** Swami has quit IRC21:39
tonybhemna: but can we say no new filters in os-brick yet?21:39
mriedem#link WIP os-brick patch for privsep integration https://review.openstack.org/#/c/258252/21:39
sdaguehttps://review.openstack.org/#/c/247372/5 ends up forcing another coupling21:39
*** mudassirlatif has joined #openstack-meeting21:39
*** mrmartin has quit IRC21:39
hemnatonyb, currently we don't21:39
*** rob__ has joined #openstack-meeting21:39
*** rob__ has quit IRC21:39
*** njohnsto_ has quit IRC21:40
hemnaand the filters that are defined in os-brick aren't actually used anywhere21:40
hemna:(21:40
hemnawe are stuck w/ copy/paste into nova and cinder's filters21:40
*** baoli has quit IRC21:40
hemnasadness21:40
*** njohnsto_ has joined #openstack-meeting21:40
*** _amrith_ is now known as amrith21:40
*** baoli has joined #openstack-meeting21:40
hemnaI'm unfamiliar with a filters freeze21:41
*** ljxiash has quit IRC21:41
hemnaI presume we mean rootwrap filters in the case.21:41
sdagueok, we can probably take this offline21:41
hemnaand when is that date ?21:41
hemnaok21:41
hemnasdague, ping me in cinder channel whenever21:41
sdaguehemna: yeh, the point is any rootwrap filter changes end up coupling upgrades21:42
sdaguewhich we really really don't want to be doing21:42
hemnasdague, yup.  totally agree21:42
hemnaI'll see if I can ping angus and help his efforts21:42
sdaguehemna: thanks!21:42
hemnanp21:42
mriedemok, last thing in open discussion21:43
mriedemrlrossit has a specless bp https://blueprints.launchpad.net/nova/+spec/rm-object-dict-compat21:43
dansmithlet's do it21:43
mriedemto remove the dict compat mixin from nova objects21:43
mriedemyeah, this is really just a formality21:43
dansmith(since he already is)21:43
dansmith(doing it)21:43
*** zehicle has joined #openstack-meeting21:43
cdent+121:43
alaski+121:43
bauzas+121:43
mriedemsounds like we're all happy with this21:43
mriedemdansmith: want to approve?21:43
bauzas(who else?)21:43
rlrossitwoo21:43
dansmithmriedem: I want to approve that so hard21:43
mriedemcan i watch from the corner?21:43
mriedemalright,21:44
*** cdub has quit IRC21:44
mriedemanything else for open discussion?21:44
dansmithheh21:44
mriedemgoing once21:44
dansmithI just blew up rlrossit's inbox21:44
mriedemtwice21:44
dansmithbecause launchpad is awesome like that21:44
rlrossityou blew up more than just that ;)21:44
*** baoli has quit IRC21:45
mriedemgeez you weirdos21:45
mriedemalright thanks everyone21:45
mriedem#endmeeting21:45
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"21:45
openstackMeeting ended Thu Jan  7 21:45:08 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)21:45
openstackMinutes:        http://eavesdrop.openstack.org/meetings/nova/2016/nova.2016-01-07-21.00.html21:45
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/nova/2016/nova.2016-01-07-21.00.txt21:45
openstackLog:            http://eavesdrop.openstack.org/meetings/nova/2016/nova.2016-01-07-21.00.log.html21:45
*** ccarmack has left #openstack-meeting21:45
*** _gryf has left #openstack-meeting21:45
*** kebray has quit IRC21:45
*** mriedem has left #openstack-meeting21:45
*** cwolferh has joined #openstack-meeting21:45
*** macsz has left #openstack-meeting21:45
*** rlrossit has left #openstack-meeting21:46
*** kebray has joined #openstack-meeting21:46
*** baoli has joined #openstack-meeting21:46
*** cdent has left #openstack-meeting21:47
*** neelashah has joined #openstack-meeting21:49
*** zehicle has quit IRC21:50
*** cbouch has quit IRC21:50
*** egallen has quit IRC21:50
*** eranrom has quit IRC21:50
*** slagle has quit IRC21:50
*** jaypipes has quit IRC21:50
*** gongysh has quit IRC21:50
*** markvan has quit IRC21:50
*** craige has quit IRC21:50
*** peluse has quit IRC21:50
*** DinaBelova has quit IRC21:50
*** boris-42 has quit IRC21:50
*** obutenko has quit IRC21:50
*** haleyb has quit IRC21:50
*** guitarzan has quit IRC21:50
*** gsilvis has quit IRC21:50
*** adrianofr has quit IRC21:50
*** zehicle has joined #openstack-meeting21:51
*** egallen has joined #openstack-meeting21:51
*** eranrom has joined #openstack-meeting21:51
*** slagle has joined #openstack-meeting21:51
*** jaypipes has joined #openstack-meeting21:51
*** gongysh has joined #openstack-meeting21:51
*** markvan has joined #openstack-meeting21:51
*** craige has joined #openstack-meeting21:51
*** peluse has joined #openstack-meeting21:51
*** DinaBelova has joined #openstack-meeting21:51
*** boris-42 has joined #openstack-meeting21:51
*** obutenko has joined #openstack-meeting21:51
*** haleyb has joined #openstack-meeting21:51
*** guitarzan has joined #openstack-meeting21:51
*** gsilvis has joined #openstack-meeting21:51
*** asimov.freenode.net changes topic to "open discussion (Meeting topic: nova)"21:51
*** ihrachys has joined #openstack-meeting21:52
*** amitgandhinz has quit IRC21:53
*** mudassirlatif has quit IRC21:55
*** Michalik_ has quit IRC21:55
*** thangp has quit IRC21:55
*** mudassirlatif has joined #openstack-meeting21:56
*** rromans has joined #openstack-meeting21:56
*** jckasper has quit IRC21:57
*** zehicle has quit IRC21:57
*** zehicle has joined #openstack-meeting21:57
*** jckasper has joined #openstack-meeting21:57
*** zehicle has quit IRC21:57
*** Michalik_ has joined #openstack-meeting21:58
*** mudassirlatif has quit IRC21:58
*** zehicle has joined #openstack-meeting21:58
*** ayoung has quit IRC21:58
*** zehicle has quit IRC21:58
*** bobh has quit IRC21:58
*** harshs has quit IRC21:58
*** zehicle has joined #openstack-meeting21:59
*** hdaniel has quit IRC21:59
*** zehicle has quit IRC21:59
*** zehicle has joined #openstack-meeting21:59
*** zehicle has quit IRC22:00
*** mudassirlatif has joined #openstack-meeting22:00
*** zehicle has joined #openstack-meeting22:00
*** jckasper has quit IRC22:02
*** thorst has quit IRC22:02
*** xyang1 has quit IRC22:02
*** zehicle has quit IRC22:04
*** mudassirlatif has quit IRC22:05
*** zehicle has joined #openstack-meeting22:05
*** mudassirlatif has joined #openstack-meeting22:05
*** rtheis_ has quit IRC22:05
*** zehicle has quit IRC22:05
*** baoli has quit IRC22:05
*** nic has left #openstack-meeting22:06
*** zehicle has joined #openstack-meeting22:06
*** baoli has joined #openstack-meeting22:06
*** gjayavelu has quit IRC22:06
*** vgridnev_ has quit IRC22:07
*** auggy has left #openstack-meeting22:08
*** rderose has quit IRC22:08
*** salv-orlando has joined #openstack-meeting22:09
*** rromans has quit IRC22:09
*** MaxPC1 has quit IRC22:09
*** MaxPC has joined #openstack-meeting22:09
*** gsilvis has quit IRC22:09
*** gsilvis has joined #openstack-meeting22:10
*** rromans has joined #openstack-meeting22:11
*** Swami has joined #openstack-meeting22:11
*** salv-orl_ has quit IRC22:11
*** matrohon has quit IRC22:12
*** kencjohnston has quit IRC22:13
*** jungleboyj has joined #openstack-meeting22:13
*** MaxPC has quit IRC22:14
*** penick has quit IRC22:15
*** robefran has quit IRC22:15
*** gcb has quit IRC22:16
*** claudiub has quit IRC22:16
*** ihrachys has quit IRC22:16
*** haomaiwa_ has joined #openstack-meeting22:16
*** SumitNaiksatam has quit IRC22:17
*** baoli has quit IRC22:17
*** baoli has joined #openstack-meeting22:18
*** JRobinson__ has joined #openstack-meeting22:19
*** diazjf1 has quit IRC22:19
*** dkranz has quit IRC22:20
*** balajiiyer has quit IRC22:20
*** banix has quit IRC22:21
*** rossella_s has quit IRC22:21
*** haomaiwa_ has quit IRC22:22
*** rossella_s has joined #openstack-meeting22:22
*** neelashah has quit IRC22:23
*** pradk has quit IRC22:24
*** timcline has quit IRC22:24
*** neelashah has joined #openstack-meeting22:24
*** diazjf has joined #openstack-meeting22:25
*** absubram has quit IRC22:26
*** Tango|2 has joined #openstack-meeting22:27
*** thorst_ has joined #openstack-meeting22:27
*** esker has quit IRC22:27
*** esker has joined #openstack-meeting22:28
*** isaacb has joined #openstack-meeting22:29
*** baoli has quit IRC22:29
*** Tango has quit IRC22:29
*** baoli has joined #openstack-meeting22:30
*** vishwanathj has quit IRC22:30
*** jckasper has joined #openstack-meeting22:31
*** thorst_ has quit IRC22:32
*** mudassirlatif has quit IRC22:32
*** penick has joined #openstack-meeting22:32
*** jmckind_ has quit IRC22:33
*** jckasper has quit IRC22:35
*** otter768 has joined #openstack-meeting22:36
*** gyee has joined #openstack-meeting22:36
*** njohnsto_ has quit IRC22:36
*** njohnsto_ has joined #openstack-meeting22:37
*** spzala_ has quit IRC22:37
*** mudassirlatif has joined #openstack-meeting22:37
*** f13o has quit IRC22:37
*** eharney has quit IRC22:39
*** jckasper has joined #openstack-meeting22:40
*** esker has quit IRC22:40
*** otter768 has quit IRC22:40
*** baoli has quit IRC22:41
*** baoli has joined #openstack-meeting22:41
*** leeantho has quit IRC22:43
*** jtomasek has quit IRC22:45
*** isaacb has quit IRC22:46
*** spzala has joined #openstack-meeting22:47
*** spzala_ has joined #openstack-meeting22:48
*** ijw has quit IRC22:50
*** spzala has quit IRC22:51
*** harshs has joined #openstack-meeting22:52
*** diazjf has quit IRC22:53
*** spzala_ has quit IRC22:53
*** baoli has quit IRC22:53
*** baoli has joined #openstack-meeting22:54
*** mudassirlatif has quit IRC22:55
*** rossella_s has quit IRC22:56
*** kebray has quit IRC22:57
*** mudassirlatif has joined #openstack-meeting22:57
*** mudassirlatif has quit IRC22:58
*** zehicle has quit IRC22:59
*** dims_ has joined #openstack-meeting23:00
*** dims has quit IRC23:01
*** mudassirlatif has joined #openstack-meeting23:01
*** sacharya has quit IRC23:02
*** sacharya has joined #openstack-meeting23:03
*** jorge_munoz has joined #openstack-meeting23:03
*** baoli has quit IRC23:05
*** baoli has joined #openstack-meeting23:06
*** erlon has quit IRC23:06
*** sacharya has quit IRC23:07
*** robefran has joined #openstack-meeting23:08
*** neelashah has quit IRC23:09
*** dneary has quit IRC23:10
*** sigmavirus24 is now known as sigmavirus24_awa23:12
*** jungleboyj has quit IRC23:13
*** galstrom is now known as galstrom_zzz23:13
*** ujuc has joined #openstack-meeting23:14
*** ijw has joined #openstack-meeting23:15
*** daneyon_ has quit IRC23:17
*** baoli has quit IRC23:17
*** baoli has joined #openstack-meeting23:18
*** ujuc has quit IRC23:20
*** Swami_ has joined #openstack-meeting23:21
*** dane_leblanc_ has quit IRC23:21
*** safchain has quit IRC23:23
*** adahms has joined #openstack-meeting23:23
*** Swami has quit IRC23:24
*** ujuc has joined #openstack-meeting23:27
*** piet has quit IRC23:28
*** piet has joined #openstack-meeting23:28
*** spotz is now known as spotz_zzz23:29
*** baoli has quit IRC23:29
*** baoli has joined #openstack-meeting23:30
*** jckasper has quit IRC23:32
*** Qiming has joined #openstack-meeting23:32
*** bdrich has quit IRC23:34
*** leeantho has joined #openstack-meeting23:38
*** ljxiash has joined #openstack-meeting23:38
*** tochi has joined #openstack-meeting23:39
*** dims_ has quit IRC23:39
*** doug-fish has quit IRC23:41
*** ljxiash has quit IRC23:43
*** m1dev has quit IRC23:43
*** baoli has quit IRC23:44
*** dims_ has joined #openstack-meeting23:45
*** sacharya has joined #openstack-meeting23:47
*** MIDENN_ has quit IRC23:48
*** ayoung has joined #openstack-meeting23:48
*** weshay_xchat has quit IRC23:49
*** ujuc has quit IRC23:50
*** dims_ has quit IRC23:50
*** sacharya has quit IRC23:51
*** pratap has joined #openstack-meeting23:56
*** piet has quit IRC23:56
*** garthb__ has quit IRC23:57
*** garthb__ has joined #openstack-meeting23:57
*** mdenny has joined #openstack-meeting23:58
*** pratap_ has joined #openstack-meeting23:58

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