Thursday, 2016-01-21

*** pballand has joined #openstack-meeting00:00
*** haomaiwa_ has quit IRC00:01
thinrichsHi all00:01
*** masahito_ has joined #openstack-meeting00:01
pballandhi00:01
thinrichstime for the Congress meeting00:01
thinrichs#startmeeting CongressTeamMeeting00:01
openstackMeeting started Thu Jan 21 00:01:12 2016 UTC and is due to finish in 60 minutes.  The chair is thinrichs. Information about MeetBot at http://wiki.debian.org/MeetBot.00:01
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.00:01
*** openstack changes topic to " (Meeting topic: CongressTeamMeeting)"00:01
openstackThe meeting name has been set to 'congressteammeeting'00:01
masahito_hi00:01
raminenihi00:01
thinrichsHere's my topic list this week…00:01
thinrichs1. mitaka200:02
fabioghi00:02
thinrichs2. distributed arch00:02
thinrichs3. midcycle summit00:02
thinrichs4. push datasource driver00:02
thinrichs5. other status updates00:02
thinrichsAnything else?00:02
*** hoangcx has joined #openstack-meeting00:02
*** rbak has joined #openstack-meeting00:03
thinrichsLet's get started then.  If something else comes to mind, let us know.00:03
thinrichs#topic mitaka200:03
*** openstack changes topic to "mitaka2 (Meeting topic: CongressTeamMeeting)"00:03
thinrichsI just released mitaka2 earlier today00:03
thinrichsSo we're now working on the mitaka3 release.00:03
thinrichsI went through and moved all the blueprints that I know we're actively working on to mitaka300:04
thinrichsIf I missed any, please target them to mitaka3 so we have a sense of the code we expect to land.00:05
thinrichs#link https://blueprints.launchpad.net/congress00:05
thinrichsAny questions or comments about mitaka?00:05
*** cartik has quit IRC00:05
*** cwolferh has joined #openstack-meeting00:06
*** elo has joined #openstack-meeting00:06
thinrichsMoving on then...00:07
thinrichs#topic distributed arch00:07
*** openstack changes topic to "distributed arch (Meeting topic: CongressTeamMeeting)"00:07
thinrichspballand: I saw you pushed some comments/code earlier today but haven't had a chance to look.00:07
thinrichsHow's it going?00:07
*** absubram has quit IRC00:07
*** jckasper has quit IRC00:07
pballandslow but steady00:07
pballandI was hoping ekao would be here00:07
ekcsI’m here.00:08
pballandekcs: hi :-)00:08
*** jckasper has joined #openstack-meeting00:08
pballandekcs is looking at the datasource interface to add to DataService, I’ll let him talk about that proposal - I’m working through comments00:08
pballandgeneral theme is that it is weird to have so many topics - which I agree00:09
pballandunfortunately oslo.messaging logs exceptions if it receives an RPC for an endpoint that it doesn’t have, *even* if the RPC has a different namespace or version00:09
*** haomaiw__ has joined #openstack-meeting00:10
thinrichsI had a question.  Not sure if you answered it in the comments.00:10
pballandif anyone has a different suggestion than using separate topics, I’m open (we can also discuss next week) - otherwise I am continuing on the current path since it is functional00:10
thinrichsWhat is the control bus used for?00:10
*** haomaiw__ has quit IRC00:10
*** haomaiw__ has joined #openstack-meeting00:10
*** dmorita_ has joined #openstack-meeting00:11
pballandthe control bus is used for service discovery and status00:11
pballandfor example, if I am a policy or api service, I may want to know what services and tables exist - those are tracked by the control bus00:11
*** iyamahat has quit IRC00:11
*** iyamahat has joined #openstack-meeting00:12
*** rbak has quit IRC00:12
*** arvinc_ has quit IRC00:12
pballandform the dist-cross-process-dse spec: “ A common directory of data services and their exported tables must be00:12
pballand    published to all services on the DSE.”00:12
*** jckasper has quit IRC00:13
pballanddoes that answer your question?00:13
*** scinawa has quit IRC00:13
thinrichsNot quite00:13
*** dmorita has quit IRC00:13
thinrichsDo we have code today that asks "give me all the tables" or "give me all the services"?00:13
thinrichsOr will we need to ask that question in the distributed arch?00:14
thinrichsThe APIs that list tables make RPCs directly to the service00:14
pballandthe API will need that information00:14
pballandthe API needs to know what services there are00:14
thinrichsSo if we have an API that asks for the list of available datasources, then it will ask the control bus.00:15
thinrichsThat makes sense.00:15
thinrichsI think that's a feature we deprecated, so we won't need it for the upcoming release, but we'll want it once we start putting the datasource APIs back in place.00:15
pballandright - we _could_ have the API service broadcast the question on the bus, but it seems better to me to have a common component00:16
thinrichsDoes anything else need the bus?  I think the policy engine just subscribes to tables and hopes they exist or will exist.00:17
*** Fdaisuke has quit IRC00:17
thinrichss/bus/control bus/00:17
*** PsionTheory has quit IRC00:17
thinrichsSo I'm thinking that once we have pub/sub added to the existing rpc, we can do the integration work.00:17
thinrichsEven if the control bus hasn't been merged.00:18
thinrichsDoes that sound right to everyone?00:18
*** weshay has quit IRC00:19
masahito_I agree for the integration.00:19
thinrichsekcs: want to go over your proposal?00:19
ekcsok00:20
*** su_zhang has quit IRC00:20
*** dmacpher has quit IRC00:21
ekcsI have a preliminary implementation of this bp: https://blueprints.launchpad.net/openstack/?searchtext=dist-datasources-on-bus00:21
*** cutforth has quit IRC00:21
ekcswhere pub-sub messages are sequenced and reordered etc. at the datasources and policy engines.00:21
ekcsbut pballand and I thought it makes more sense to build the functionality straight into the DataService class (replacing current deepsix)00:22
ekcsAny thoughts on that?00:22
*** aimon has joined #openstack-meeting00:22
thinrichsThat sounds like the right abstraction to me.00:23
*** peristeri has quit IRC00:23
*** elo has quit IRC00:23
thinrichsJust a sanity check: does oslo-messaging handle any of this?00:24
thinrichsIf we just use the existing pub/sub, does it not guarantee in-order delivery?00:24
pballandagreed: should simplify transition from deepsix if we have the exact same interface00:24
ekcsAs far as I understand, it depends on the underlying transport. RabbitMQ for example doesn’t guarantee order.00:26
*** elo has joined #openstack-meeting00:26
thinrichsAnother question: can we proceed with the integration work using the native pub/sub?00:26
thinrichsAnd in parallel provide the guarantees we want?00:27
pballandwhat do you mean by native pub/sub?00:27
thinrichsHow often do out-of-order problems happen?00:27
thinrichspballand: doesn't oslo-messaging have pub/sub functions?00:28
pballandoslo-messaging has a ‘Notifier’, but it doesn’t seem to line up well with the DSE00:29
*** dims has quit IRC00:29
*** xingchao has joined #openstack-meeting00:29
*** pvaneck has quit IRC00:30
pballandother that that, the only pub/sub like function I am aware of is “casting” RPCs00:30
thinrichsSo we're still missing pub/sub functionality?00:30
pballandwhich is what my impl is using00:30
fabiogthinrichs: Notifiers does implement a publisher00:31
fabiogbut it is a fire and forget one00:31
*** jckasper has joined #openstack-meeting00:31
fabiogall the services in OpenStack uses the Notifier to send events00:32
masahito_pballand: I think client.cast() with funout=False works as a base function of pub/sub.00:32
pballandmasahito_: agreed00:32
*** sdake_ has joined #openstack-meeting00:32
*** sdake_ has quit IRC00:32
thinrichsmasahito: how long do you think it would take to build pub/sub on top of client.cast()?00:33
*** sdake_ has joined #openstack-meeting00:33
thinrichsWe can always improve the pub/sub implementation, but all of the integration is blocked on having basic pub/sub functionality?00:33
*** tej has joined #openstack-meeting00:33
pballandmy proposal (which I believe is inline with what ekcs is proposing) is to add the existing deepsix interface to DataService using the RPC methods exposed by what I have in review00:34
thinrichsHow long will that take?00:34
masahito_thinrichs: I think it takes less than one day.00:34
*** xingchao has quit IRC00:34
*** sdake has quit IRC00:34
*** pdardeau has left #openstack-meeting00:34
masahito_thinrichs: because pballand have implemented a similar function in dsenode.00:35
thinrichspballand, ekcs: how long do you think your proposal will take?00:35
pballandI think it’s reasonable to have it before the midcycle next week00:35
thinrichsIs it worth having masahito try to get something in place and then upgrade it to your version once its ready?00:35
*** jckasper has quit IRC00:36
pballandI welcome any help, especially from masahito_ :-)00:36
pballandthinrichs: no reason to have two versions...00:36
*** otter768 has joined #openstack-meeting00:36
thinrichspballand: sure, but the plan was to have us all try to do some basic integration work before the cycle.00:37
ekcsthinrichs: at least a week I think. getting everything in deepsix to work on dse2 could have many issues come up.00:37
ekcsi was about to say earlier that it could be an issue to out time line.00:37
*** hoangcx has quit IRC00:38
thinrichsWe've been blocked on this piece for a long time.00:38
thinrichsI think it's worth the cost of some replicated work to ensure we make progress.00:39
pballandjust to make sure we are on the same page: the work is to tie together the deepsix interface (~ 12 methods) on top of the DataService RPC interface00:39
pballandis that right?00:39
*** rbak has joined #openstack-meeting00:40
thinrichspballand: That's always been the basic problem, hasn't it?  the DataService RPC interface is incredibly similar to the oslo-messaging interface, right?00:40
thinrichsAt the very least, the 3 of you will have the experience necessary to trade war stories next week.00:40
ekcspballand: I think putting deepsix interfaces into dataservice would take days. and then implementing reliability and message ordering would take days on top of that.00:40
*** markvoelker_ has quit IRC00:41
*** otter768 has quit IRC00:41
thinrichsIt's time to move on I think.00:41
ekcsmaybe we need to talk to masahito_ some more to understand what he’s proposing to do in less than a day. so we understand where we differ and how to proceed. but in either case if it takes less than a day it’s not a great cost.00:41
*** Swami has quit IRC00:42
thinrichsekcs: agreed.  Would you want to talk/irc with masahito offline?00:42
ekcsthinrichs: yea. pballand can you join too?00:42
pballandyup00:42
masahito_yap00:42
thinrichsGreat!  Thanks you 3.00:43
thinrichs#topic midcycle summit00:43
*** openstack changes topic to "midcycle summit (Meeting topic: CongressTeamMeeting)"00:43
thinrichsJust a reminder that the midcycle summit is next week.00:43
thinrichsfabiog: any comments here?00:43
fabiogyes00:43
thinrichsHave you heard about the monasca summit?  Are we overlapping?00:43
fabiogno00:43
fabiogMonasca is going to be held the following week virtually over webex00:44
fabiogthere are a lot of people in EU that won't be able to travel00:44
fabiogfor our mid-cycle is everyone confirmed?00:44
fabiogI currently have: thinrichs pballand masahito_ ekcs and me00:45
thinrichsThat could be about right.  We knew it would be a skeleton crew this year.00:45
thinrichsSomeone from solinea was planning to stop by for a day.00:45
fabiogok for the logistics00:45
fabiogthis is the address00:45
fabiogCisco Systems, Inc. 285 W. Tasman Drive San Jose California 95134 United States00:45
fabiogI was thinking on a 9:30am PDT start00:46
thinrichs#link https://wiki.openstack.org/wiki/Sprints/CongressMitakaSprint00:46
*** dongwenjuan has joined #openstack-meeting00:46
fabiogwe can meet at the lobby and I will escort in00:46
*** su_zhang has joined #openstack-meeting00:46
thinrichssu_zhang: are you planning to attend the mid-cycle summit next week?00:46
*** dongwenjuan has quit IRC00:47
thinrichsfabiog: sounds good00:47
fabiogok, on Wed evening I was planning to have a group dinner. If Wed is no good for someone we can do it on Tue, is Wed good?00:48
thinrichsWed works for me.00:48
thinrichsSo does Tue00:48
fabiogany type of food/restaurants I should avoid?00:49
ekcsboth good for me.00:49
masahito_both works for me.00:49
ijwfabiog: building D00:49
ekcsactually tue would be much better for me,00:49
fabiogijw: nope, building I (eye)00:49
ijwYeah, you should avoid building D, it's full of Cisco ppl00:49
ijwWoudln't want to eat there00:50
*** winston-d_ has joined #openstack-meeting00:50
fabiogijw: no worries we will have catering at our meeting room00:50
fabiogbreakfast included00:50
thinrichspballand: can you make it for dinner Tue/Wed?00:50
pballandsounds great00:50
pballandTues is better for me too00:50
thinrichsSounds good.00:50
fabiogOk, then, I will book for Tue00:50
*** ajmiller has joined #openstack-meeting00:51
thinrichsfabiog: are you still planning on discussing a deeper monasca integration?00:51
fabiogthinrichs: yes. Even if I am completely blocked by the integration of Monasca client in Openstack00:51
thinrichssounds good00:52
thinrichsWe're running short on time.00:52
thinrichsBefore I forget we'll cancel next week's IRC since many of us will be at the sprint00:52
thinrichsI'll send an email to the ML.00:53
*** sdake has joined #openstack-meeting00:53
thinrichs#topic status updates00:53
*** openstack changes topic to "status updates (Meeting topic: CongressTeamMeeting)"00:53
*** aimon has quit IRC00:53
thinrichsmasahito: how is your push datasource driver going?00:53
thinrichsramineni: any status updates to report?00:53
thinrichs(Go ahead and interleave your answers, since we have 7 min left)00:53
masahito_slow progress this week.00:53
thinrichsIf anyone else has status updates/comments/questions, now is the time.00:53
*** sdake_ has quit IRC00:54
raminenithinrichs: nothing much from my side,00:54
su_zhang@thinrichs: yes00:55
thinrichsekcs: did you get your latest python3 patch sorted?  Is there anything we should discuss here?00:55
masahito_I'm checking OPNFV usecase for push driver. and try to push next patch set before sprint because I guess Monasca want it feature for the integration.00:55
su_zhang@thinrichs: I will be in the meeting00:55
thinrichsfabiog: we have another attendee: su_zhang.  I'll check eventbrite and see if anyone else signed up.00:55
su_zhanglook forward to seeing you guys there00:55
fabiogthinrichs: ok, great.00:56
ekcsthinrichs: yup. I moved the imports to below the copyright statements. and masahito_ decided his comment wasn’t an issue.00:56
masahito_s/it feature/the feature/00:56
thinrichssu_zhang: great! We're looking forward to seeing you again and hearing how Congress is working @Symantec.00:56
su_zhangsounds great!00:56
thinrichsekcs: sounds good00:57
masahito_ekcs: oops, I forgot change review status.00:57
*** rbak has quit IRC00:57
thinrichsmasahito_: sounds good.  I don't think there's a ton of pressure to have your code merged before the sprint, but another iteration makes sense.00:58
thinrichsmasahito_: we'll know how the push driver will end up working and can discuss with fabiog, even if the code isn't in master00:58
thinrichsThat seems to do it for this week.00:59
*** changbl has quit IRC00:59
thinrichsThanks all!  I'm looking forward to the sprint next week!00:59
fabiogsafe travels and see you next week00:59
ekcsthanks!01:00
thinrichs#endmeeting01:00
*** openstack changes topic to "other things (summary/wrap-up (Meeting topic: swift)"01:00
openstackMeeting ended Thu Jan 21 01:00:04 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)01:00
openstackMinutes:        http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-01-21-00.01.html01:00
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-01-21-00.01.txt01:00
openstackLog:            http://eavesdrop.openstack.org/meetings/congressteammeeting/2016/congressteammeeting.2016-01-21-00.01.log.html01:00
*** cwolferh has quit IRC01:00
*** cwolferh has joined #openstack-meeting01:00
*** pballand has quit IRC01:00
*** haomaiw__ has quit IRC01:01
*** pballand has joined #openstack-meeting01:01
*** ricolin has joined #openstack-meeting01:01
*** sputnik13 has quit IRC01:01
*** ddieterly has joined #openstack-meeting01:01
*** haomaiwang has joined #openstack-meeting01:01
*** su_zhang has quit IRC01:02
*** baoli_ has quit IRC01:03
*** alexpilotti has quit IRC01:03
*** safchain has quit IRC01:03
*** thinrichs has quit IRC01:04
*** dmacpher has joined #openstack-meeting01:05
*** banix has joined #openstack-meeting01:06
*** ramineni has left #openstack-meeting01:07
*** salv-orlando has quit IRC01:09
*** aimon has joined #openstack-meeting01:10
*** haomaiwang has quit IRC01:13
*** tej has quit IRC01:14
*** kebray has joined #openstack-meeting01:15
*** kaisers1 has joined #openstack-meeting01:18
*** elo has quit IRC01:19
*** kaisers has quit IRC01:20
*** zhhuabj has quit IRC01:20
*** ivar-laz_ has joined #openstack-meeting01:22
*** vahidh has quit IRC01:22
*** vahidh has joined #openstack-meeting01:23
*** tellesnobrega is now known as tellesnobrega_af01:23
*** _amrith_ is now known as amrith01:24
*** ivar-lazzaro has quit IRC01:25
*** tellesnobrega_af is now known as tellesnobrega01:25
*** elo has joined #openstack-meeting01:27
*** vahidh has quit IRC01:27
*** dmacpher has quit IRC01:29
*** aeng has quit IRC01:29
*** zhhuabj has joined #openstack-meeting01:33
*** penick has quit IRC01:33
*** alexpilotti has joined #openstack-meeting01:38
*** thorst has joined #openstack-meeting01:39
*** Sukhdev has quit IRC01:40
*** ljxiash has joined #openstack-meeting01:41
*** Daisy has joined #openstack-meeting01:42
*** alexpilotti has quit IRC01:43
*** xingchao has joined #openstack-meeting01:45
*** changbl has joined #openstack-meeting01:45
*** Daisy_ has joined #openstack-meeting01:47
*** Daisy_ has quit IRC01:48
*** zhhuabj has quit IRC01:48
*** Daisy has quit IRC01:48
*** alexpilotti has joined #openstack-meeting01:52
*** elo has quit IRC01:52
*** dims has joined #openstack-meeting01:54
*** elo has joined #openstack-meeting01:54
*** novas0x2a|laptop has quit IRC01:55
*** alexpilotti has quit IRC01:56
*** Leo_ has joined #openstack-meeting01:56
*** erlon has quit IRC01:56
*** hoangcx has joined #openstack-meeting01:57
*** haomaiwang has joined #openstack-meeting01:58
*** xingchao has quit IRC01:59
*** bill_az has quit IRC02:00
*** vivekd has joined #openstack-meeting02:00
*** haomaiwang has quit IRC02:01
*** zhhuabj has joined #openstack-meeting02:01
*** 17WABLQSD has joined #openstack-meeting02:01
*** zhhuabj has quit IRC02:01
*** fabiog has quit IRC02:02
*** paul-carlton2 has quit IRC02:04
*** Leo_ has quit IRC02:06
*** masahito_ has quit IRC02:07
*** leeantho has quit IRC02:07
*** davechen has joined #openstack-meeting02:07
*** eric_lopez has joined #openstack-meeting02:10
*** aimon_ has joined #openstack-meeting02:10
*** zhhuabj has joined #openstack-meeting02:10
*** elo has quit IRC02:12
*** davechen1 has joined #openstack-meeting02:12
*** aimon has quit IRC02:13
*** kebray has quit IRC02:14
*** tej has joined #openstack-meeting02:15
*** davechen has quit IRC02:15
*** davechen has joined #openstack-meeting02:17
*** zhurong has joined #openstack-meeting02:18
*** fzdarsky has quit IRC02:19
*** tej has quit IRC02:19
*** davechen1 has quit IRC02:20
*** bochi-michael has joined #openstack-meeting02:20
*** changzhi has joined #openstack-meeting02:20
*** thorst has quit IRC02:20
*** thorst has joined #openstack-meeting02:21
*** yamamoto has joined #openstack-meeting02:23
*** xingchao has joined #openstack-meeting02:23
*** thorst has quit IRC02:25
*** fzdarsky has joined #openstack-meeting02:25
*** huangtianhua has quit IRC02:26
*** baoli has joined #openstack-meeting02:28
*** emsomeoneelse has joined #openstack-meeting02:28
*** tiantian has joined #openstack-meeting02:29
*** s3wong has quit IRC02:31
*** cwolferh has quit IRC02:32
*** julim has quit IRC02:32
*** bobh has joined #openstack-meeting02:33
*** baoli has quit IRC02:33
*** yamamoto has quit IRC02:37
*** yamamoto has joined #openstack-meeting02:37
*** otter768 has joined #openstack-meeting02:37
*** tfukushima has joined #openstack-meeting02:38
*** dmorita_ has quit IRC02:40
*** otter768 has quit IRC02:42
*** dmorita has joined #openstack-meeting02:43
*** iben_ has quit IRC02:44
*** ivar-laz_ has quit IRC02:45
*** ivar-lazzaro has joined #openstack-meeting02:46
*** yamamoto has quit IRC02:46
*** 17WABLQSD has quit IRC02:49
*** 77CAAADFV has joined #openstack-meeting02:49
*** roxanaghe has quit IRC02:50
*** harshs has joined #openstack-meeting02:53
*** apoorvad has quit IRC02:55
*** kencjohnston has joined #openstack-meeting02:56
*** roxanaghe has joined #openstack-meeting02:59
*** iyamahat has quit IRC03:00
*** banix has quit IRC03:02
*** dgonzalez has quit IRC03:03
*** ivar-lazzaro has quit IRC03:04
*** dmorita has quit IRC03:07
*** eric_lopez has quit IRC03:07
*** dmorita has joined #openstack-meeting03:07
*** tricksters has joined #openstack-meeting03:08
*** unicell has quit IRC03:09
*** baoli has joined #openstack-meeting03:10
*** otter768 has joined #openstack-meeting03:10
*** epico has joined #openstack-meeting03:11
*** agireud has quit IRC03:11
*** dgonzalez has joined #openstack-meeting03:13
*** bobh has quit IRC03:14
*** agireud has joined #openstack-meeting03:15
*** doug-fish has joined #openstack-meeting03:16
*** banix has joined #openstack-meeting03:17
*** doug-fish has quit IRC03:21
*** cody-somerville_ has joined #openstack-meeting03:22
*** oomichi is now known as oomichi_away03:23
*** banix has quit IRC03:24
*** thorst has joined #openstack-meeting03:25
*** tricksters has quit IRC03:26
*** elo has joined #openstack-meeting03:26
*** agireud has quit IRC03:27
*** banix has joined #openstack-meeting03:27
*** thorst has quit IRC03:30
*** rromans has quit IRC03:30
*** rromans has joined #openstack-meeting03:32
*** ljxiash has quit IRC03:32
*** ljxiash has joined #openstack-meeting03:32
*** ljxiash has quit IRC03:33
*** ljxiash has joined #openstack-meeting03:33
*** kencjohnston has quit IRC03:36
*** yamamoto_ has joined #openstack-meeting03:39
*** dgonzalez has quit IRC03:39
*** dgonzalez has joined #openstack-meeting03:40
*** sdake has quit IRC03:41
*** sdake has joined #openstack-meeting03:41
*** dims has quit IRC03:42
*** armax has quit IRC03:42
*** eric_lopez has joined #openstack-meeting03:46
*** elo has quit IRC03:46
*** ricolin has quit IRC03:48
*** JRobinson__ has quit IRC03:49
*** jckasper has joined #openstack-meeting03:50
*** jckasper has quit IRC03:51
*** MaxPC has joined #openstack-meeting03:51
*** jckasper has joined #openstack-meeting03:51
*** xingchao has quit IRC03:52
*** roxanaghe has quit IRC03:52
*** agireud has joined #openstack-meeting03:52
*** xingchao has joined #openstack-meeting03:52
*** tochi has joined #openstack-meeting03:52
*** banix has quit IRC03:53
*** su_zhang has joined #openstack-meeting03:53
*** alexpilotti has joined #openstack-meeting03:53
*** baoli has quit IRC03:54
*** roxanaghe has joined #openstack-meeting03:54
*** alexpilotti has quit IRC03:58
*** 77CAAADFV has quit IRC03:59
*** haomaiwa_ has joined #openstack-meeting03:59
*** haomaiwa_ has quit IRC04:01
*** haomaiwa_ has joined #openstack-meeting04:01
*** ricolin has joined #openstack-meeting04:05
*** vgridnev has joined #openstack-meeting04:05
*** kencjohnston has joined #openstack-meeting04:06
*** ljxiash has quit IRC04:08
*** ljxiash has joined #openstack-meeting04:08
*** aeng has joined #openstack-meeting04:09
*** Fdaisuke has joined #openstack-meeting04:11
*** ljxiash has quit IRC04:13
*** sdake_ has joined #openstack-meeting04:13
*** eric_lopez has quit IRC04:15
*** sdake has quit IRC04:15
*** dmorita has quit IRC04:15
*** tej has joined #openstack-meeting04:16
*** dmorita has joined #openstack-meeting04:17
*** kencjohnston has quit IRC04:18
*** armax has joined #openstack-meeting04:20
*** xingchao has quit IRC04:21
*** claudiub has quit IRC04:21
*** trozet has joined #openstack-meeting04:21
*** FallenPe_ has joined #openstack-meeting04:22
*** sdake has joined #openstack-meeting04:22
*** tej has quit IRC04:22
*** FallenPe_ has quit IRC04:23
*** sdake_ has quit IRC04:24
*** rhagarty_ has quit IRC04:24
*** rhagarty_ has joined #openstack-meeting04:24
*** ricolin has quit IRC04:24
*** FallenPegasus has quit IRC04:25
*** thorst has joined #openstack-meeting04:27
*** ddieterly has quit IRC04:28
*** kencjohnston has joined #openstack-meeting04:31
*** novas0x2a|laptop has joined #openstack-meeting04:31
*** otter768 has quit IRC04:31
*** kencjohnston has quit IRC04:32
*** yfujioka has joined #openstack-meeting04:34
*** thorst has quit IRC04:34
*** MaxPC has quit IRC04:34
*** vgridnev has quit IRC04:35
*** ricolin has joined #openstack-meeting04:37
*** jckasper has quit IRC04:39
*** jckasper has joined #openstack-meeting04:39
*** Ramanjaneya_ has joined #openstack-meeting04:42
*** jckasper has quit IRC04:45
*** singhj has quit IRC04:46
*** singhj has joined #openstack-meeting04:47
*** coolsvap|away is now known as coolsvap04:49
*** nelsnels_ has quit IRC04:53
*** nelsnelson has joined #openstack-meeting04:56
*** vgridnev has joined #openstack-meeting04:58
*** Ramanjaneya_ has quit IRC04:59
*** Ramanjaneya has joined #openstack-meeting05:00
*** roxanaghe has quit IRC05:00
*** haomaiwa_ has quit IRC05:01
*** ljxiash has joined #openstack-meeting05:01
*** ljxiash has quit IRC05:01
*** haomaiwang has joined #openstack-meeting05:01
*** ljxiash has joined #openstack-meeting05:01
*** tfukushima has quit IRC05:01
*** tfukushima has joined #openstack-meeting05:02
*** david-lyle has quit IRC05:02
*** ljxiash has quit IRC05:03
*** piet has joined #openstack-meeting05:03
*** ljxiash has joined #openstack-meeting05:03
*** david-lyle has joined #openstack-meeting05:03
*** FallenPegasus has joined #openstack-meeting05:04
*** markvoelker has joined #openstack-meeting05:07
*** roxanaghe has joined #openstack-meeting05:07
*** cwolferh has joined #openstack-meeting05:08
*** JRobinson__ has joined #openstack-meeting05:09
*** JRobinson__ has quit IRC05:10
*** xingchao has joined #openstack-meeting05:11
*** JRobinson__ has joined #openstack-meeting05:11
*** markvoelker has quit IRC05:12
*** SridharG has joined #openstack-meeting05:12
*** markvoelker has joined #openstack-meeting05:12
*** su_zhang has quit IRC05:13
*** tej has joined #openstack-meeting05:19
*** aeng has quit IRC05:23
*** tej has quit IRC05:24
*** zhurong has quit IRC05:26
*** SridharG has quit IRC05:28
*** ddieterly has joined #openstack-meeting05:28
*** doug-fish has joined #openstack-meeting05:30
*** vishwanathj has quit IRC05:33
*** thorst has joined #openstack-meeting05:33
*** ddieterly has quit IRC05:33
*** doug-fish has quit IRC05:35
*** SridharG has joined #openstack-meeting05:40
*** xingchao has quit IRC05:40
*** thorst has quit IRC05:40
*** emsomeoneelse has quit IRC05:42
*** xinwu has quit IRC05:42
*** vivekd has quit IRC05:44
*** doug-fish has joined #openstack-meeting05:44
*** vgridnev has quit IRC05:45
*** xingchao has joined #openstack-meeting05:46
*** merooney has quit IRC05:47
*** doug-fish has quit IRC05:49
*** winston-d_ has quit IRC05:52
*** xinwu has joined #openstack-meeting05:52
*** zhurong has joined #openstack-meeting05:53
*** SridharG has quit IRC05:54
*** adahms has quit IRC05:56
*** dmorita has quit IRC05:57
*** jjmb1 has quit IRC05:57
*** jjmb has joined #openstack-meeting05:57
*** apoorv has joined #openstack-meeting05:59
*** haomaiwang has quit IRC06:01
*** haomaiwa_ has joined #openstack-meeting06:01
*** markvoelker_ has joined #openstack-meeting06:01
*** hichihara has joined #openstack-meeting06:02
*** markvoelker has quit IRC06:05
*** macjack has joined #openstack-meeting06:05
*** markvoelker has joined #openstack-meeting06:05
*** markvoelker_ has quit IRC06:06
*** harshs has quit IRC06:08
*** xinwu has quit IRC06:08
*** vgridnev has joined #openstack-meeting06:08
*** dmorita has joined #openstack-meeting06:09
*** oomichi_away is now known as oomichi06:11
*** dmorita has quit IRC06:11
*** sirushti has joined #openstack-meeting06:12
*** piet has quit IRC06:14
*** ayoung has quit IRC06:16
*** numans has joined #openstack-meeting06:17
*** tej has joined #openstack-meeting06:20
*** neeti has joined #openstack-meeting06:21
*** vishwanathj has joined #openstack-meeting06:23
*** _nadya_ has joined #openstack-meeting06:24
*** tej has quit IRC06:24
*** vgridnev has quit IRC06:26
*** dmorita has joined #openstack-meeting06:27
*** SridharG has joined #openstack-meeting06:29
*** ddieterly has joined #openstack-meeting06:30
*** derekh has joined #openstack-meeting06:31
*** dmorita has quit IRC06:31
*** otter768 has joined #openstack-meeting06:32
*** Ravikiran_K has joined #openstack-meeting06:33
*** unicell has joined #openstack-meeting06:33
*** ddieterly has quit IRC06:34
*** ricolin has quit IRC06:35
*** gcb has quit IRC06:35
*** gcb has joined #openstack-meeting06:35
*** ljxiash has quit IRC06:36
*** otter768 has quit IRC06:37
*** xinwu has joined #openstack-meeting06:37
*** sdake has quit IRC06:38
*** thorst has joined #openstack-meeting06:38
*** jprovazn has joined #openstack-meeting06:38
*** gyee has quit IRC06:39
*** evgenyf has joined #openstack-meeting06:40
*** iyamahat has joined #openstack-meeting06:40
*** winston-d_ has joined #openstack-meeting06:42
*** ljxiash has joined #openstack-meeting06:42
*** thorst has quit IRC06:45
*** Ravikiran_K is now known as ravikiranse06:46
*** zhhuabj has quit IRC06:46
*** ravikiranse is now known as Ravikiran_K06:46
*** dmacpher has joined #openstack-meeting06:47
*** vgridnev has joined #openstack-meeting06:47
*** hoangcx has quit IRC06:48
*** Ravikiran_K has left #openstack-meeting06:48
*** Ravikiran_K has joined #openstack-meeting06:49
*** hoangcx has joined #openstack-meeting06:50
*** eranrom has joined #openstack-meeting06:50
*** alexpilotti has joined #openstack-meeting06:51
*** alexpilotti has quit IRC06:55
*** haomaiwa_ has quit IRC07:01
*** haomaiwang has joined #openstack-meeting07:01
*** trozet has quit IRC07:03
*** agireud has quit IRC07:04
*** AmirBaleghi11111 has joined #openstack-meeting07:05
*** achanda has quit IRC07:06
*** FallenPegasus has quit IRC07:08
*** alexpilotti has joined #openstack-meeting07:11
*** dmorita has joined #openstack-meeting07:13
*** roxanaghe has quit IRC07:14
*** agireud has joined #openstack-meeting07:16
*** alexpilotti has quit IRC07:16
*** neeti has quit IRC07:17
*** dmorita has quit IRC07:18
*** alop has quit IRC07:19
*** rcernin has joined #openstack-meeting07:20
*** AmirBaleghi11112 has joined #openstack-meeting07:22
*** AmirBaleghi11111 has quit IRC07:23
*** Ravikiran_K has left #openstack-meeting07:25
*** vgridnev has quit IRC07:26
*** fzdarsky has quit IRC07:27
*** fzdarsky has joined #openstack-meeting07:27
*** synegy34 has quit IRC07:27
*** ddieterly has joined #openstack-meeting07:31
*** su_zhang has joined #openstack-meeting07:31
*** gatekeep has joined #openstack-meeting07:31
*** alexpilotti has joined #openstack-meeting07:32
*** nmagnezi has joined #openstack-meeting07:34
*** JRobinson__ has quit IRC07:34
*** ddieterly has quit IRC07:36
*** neeti has joined #openstack-meeting07:36
*** alexpilotti has quit IRC07:37
*** davidhadas_ has joined #openstack-meeting07:38
*** thorst has joined #openstack-meeting07:43
*** cbartz has joined #openstack-meeting07:45
*** safchain has joined #openstack-meeting07:48
*** unicell has quit IRC07:49
*** unicell has joined #openstack-meeting07:49
*** andymaier has joined #openstack-meeting07:50
*** thorst has quit IRC07:50
*** alexpilotti has joined #openstack-meeting07:50
*** ricolin has joined #openstack-meeting07:52
*** numans has quit IRC07:52
*** macsz has joined #openstack-meeting07:53
*** jtomasek has joined #openstack-meeting07:55
*** alexpilotti has quit IRC07:55
*** hoangcx_ has joined #openstack-meeting08:00
*** otter768 has joined #openstack-meeting08:00
*** dmorita has joined #openstack-meeting08:00
*** hoangcx has quit IRC08:00
*** korzen has joined #openstack-meeting08:00
*** haomaiwang has quit IRC08:01
*** ihrachys has joined #openstack-meeting08:01
*** haomaiwang has joined #openstack-meeting08:01
*** ayoung has joined #openstack-meeting08:01
*** otter768_ has joined #openstack-meeting08:02
*** mkoderer_ is now known as mkoderer08:03
*** davidhadas_ has quit IRC08:03
*** otter768_ has quit IRC08:04
*** otter76__ has joined #openstack-meeting08:04
*** dmorita has quit IRC08:04
*** otter768 has quit IRC08:04
*** bvandenh has joined #openstack-meeting08:05
*** otter76__ has quit IRC08:05
*** otter768 has joined #openstack-meeting08:06
*** achanda has joined #openstack-meeting08:06
*** otter768 has quit IRC08:07
*** otter768 has joined #openstack-meeting08:07
*** otter768_ has joined #openstack-meeting08:09
*** otter768 has quit IRC08:09
*** alexpilotti has joined #openstack-meeting08:11
*** otter768 has joined #openstack-meeting08:11
*** otter768_ has quit IRC08:11
*** otter768 has quit IRC08:11
*** achanda has quit IRC08:13
*** AmirBaleghi11112 has quit IRC08:13
*** xingchao has quit IRC08:13
*** bvandenh has quit IRC08:13
*** ildikov has quit IRC08:15
*** alexpilotti has quit IRC08:15
*** ppetit has joined #openstack-meeting08:16
*** tfukushima has quit IRC08:17
*** su_zhang has quit IRC08:18
*** scheuran has joined #openstack-meeting08:18
*** tfukushima has joined #openstack-meeting08:18
*** irenab has joined #openstack-meeting08:18
*** hashar has joined #openstack-meeting08:20
*** tej has joined #openstack-meeting08:21
*** numans has joined #openstack-meeting08:23
*** ajo_ is now known as ajo08:24
*** bvandenh has joined #openstack-meeting08:24
*** zhhuabj has joined #openstack-meeting08:24
*** jdurgin has quit IRC08:24
*** zeih has joined #openstack-meeting08:25
*** jdurgin has joined #openstack-meeting08:25
*** tej has quit IRC08:25
*** dmacpher has quit IRC08:27
*** vgridnev has joined #openstack-meeting08:27
*** hoangcx_ is now known as hoangcx08:28
*** liusheng has quit IRC08:28
*** arvinc_ has joined #openstack-meeting08:28
*** liusheng has joined #openstack-meeting08:29
*** novas0x2a|laptop has quit IRC08:30
*** alexpilotti has joined #openstack-meeting08:32
*** xingchao has joined #openstack-meeting08:32
*** ddieterly has joined #openstack-meeting08:33
*** agireud has quit IRC08:35
*** hichihara has quit IRC08:35
*** armax has quit IRC08:36
*** alexpilotti has quit IRC08:37
*** ddieterly has quit IRC08:37
*** geguileo has quit IRC08:37
*** jckasper has joined #openstack-meeting08:42
*** alexpilotti has joined #openstack-meeting08:43
*** pnavarro has joined #openstack-meeting08:46
*** dmorita has joined #openstack-meeting08:46
*** agireud has joined #openstack-meeting08:47
*** jlanoux has joined #openstack-meeting08:47
*** jckasper has quit IRC08:47
*** toscalix has joined #openstack-meeting08:47
*** thorst has joined #openstack-meeting08:48
*** ijw_ has joined #openstack-meeting08:49
*** geguileo has joined #openstack-meeting08:51
*** dmorita has quit IRC08:51
*** ijw has quit IRC08:52
*** derekh has quit IRC08:52
*** thorst has quit IRC08:55
*** sbelous_ has joined #openstack-meeting08:57
*** bvandenh has quit IRC08:57
*** ijw_ has quit IRC08:58
*** ygbo has joined #openstack-meeting09:00
*** haomaiwang has quit IRC09:01
*** haomaiwang has joined #openstack-meeting09:01
*** mbound has joined #openstack-meeting09:02
*** ildikov has joined #openstack-meeting09:04
*** eranrom has quit IRC09:04
*** agireud has quit IRC09:05
*** agireud has joined #openstack-meeting09:09
*** ndipanov has joined #openstack-meeting09:10
*** sputnik13 has joined #openstack-meeting09:10
*** bvandenh has joined #openstack-meeting09:10
*** markvoelker has quit IRC09:12
*** Liuqing has joined #openstack-meeting09:12
*** ndipanov has quit IRC09:13
*** topol has quit IRC09:15
*** topol_ has joined #openstack-meeting09:16
*** rossella_s has joined #openstack-meeting09:18
*** ndipanov has joined #openstack-meeting09:21
*** rossella_s has quit IRC09:21
*** rossella_s has joined #openstack-meeting09:21
*** tej has joined #openstack-meeting09:22
*** Guest45232 is now known as BobBall09:22
*** paul-carlton2 has joined #openstack-meeting09:23
*** derekh has joined #openstack-meeting09:23
*** yassine has joined #openstack-meeting09:23
*** tej has quit IRC09:26
*** sirushti has quit IRC09:29
*** bvandenh has quit IRC09:30
*** mhickey has joined #openstack-meeting09:31
*** vgridnev has quit IRC09:32
*** vgridnev has joined #openstack-meeting09:33
*** ppetit has quit IRC09:33
*** ddieterly has joined #openstack-meeting09:34
*** bvandenh has joined #openstack-meeting09:34
*** tochi has quit IRC09:36
*** neiljerram has joined #openstack-meeting09:36
*** haomaiwang has quit IRC09:37
*** haomaiwa_ has joined #openstack-meeting09:37
*** ddieterly has quit IRC09:38
*** ppetit has joined #openstack-meeting09:38
*** markvoelker has joined #openstack-meeting09:42
*** bvandenh has quit IRC09:42
*** dmorita has joined #openstack-meeting09:44
*** topol_ is now known as topol09:45
*** dmorita has quit IRC09:48
*** markvoelker has quit IRC09:48
*** AmirBaleghi11112 has joined #openstack-meeting09:49
*** ociuhandu has quit IRC09:52
*** Liuqing has quit IRC09:52
*** thorst has joined #openstack-meeting09:53
*** sdake has joined #openstack-meeting09:55
*** kbyrne has joined #openstack-meeting09:55
*** davechen has quit IRC09:57
*** iyamahat has quit IRC10:00
*** thorst has quit IRC10:00
*** epico has quit IRC10:00
*** haomaiwa_ has quit IRC10:01
*** hoangcx has quit IRC10:01
*** haomaiwang has joined #openstack-meeting10:01
*** sputnik13 has quit IRC10:02
*** electrofelix has joined #openstack-meeting10:03
*** sdake has quit IRC10:05
*** adiantum has joined #openstack-meeting10:06
*** achanda has joined #openstack-meeting10:11
*** arvinc_ has quit IRC10:15
*** achanda has quit IRC10:17
*** kitsuneninetails has joined #openstack-meeting10:17
*** xinwu has quit IRC10:19
*** adiantum1 has joined #openstack-meeting10:19
*** adiantum has quit IRC10:19
*** adiantum1 is now known as adiantum10:19
*** xinwu has joined #openstack-meeting10:20
*** changzhi has quit IRC10:20
*** xinwu has quit IRC10:20
*** banix has joined #openstack-meeting10:22
*** doug-fish has joined #openstack-meeting10:22
*** tej has joined #openstack-meeting10:23
*** Liuqing has joined #openstack-meeting10:24
*** doug-fish has quit IRC10:27
*** tej has quit IRC10:28
*** nurla has quit IRC10:29
*** tfukushima has quit IRC10:31
*** nurla has joined #openstack-meeting10:32
*** singhj has quit IRC10:34
*** ddieterly has joined #openstack-meeting10:34
*** scinawa has joined #openstack-meeting10:36
*** ddieterly has quit IRC10:39
*** markvoelker has joined #openstack-meeting10:39
*** amotoki has quit IRC10:40
*** zhurong has quit IRC10:41
*** scinawa has quit IRC10:43
*** markvoelker has quit IRC10:44
*** ricolin has quit IRC10:47
*** banix has quit IRC10:48
*** e0ne has joined #openstack-meeting10:58
*** thorst has joined #openstack-meeting10:58
*** haomaiwang has quit IRC11:01
*** haomaiwa_ has joined #openstack-meeting11:01
*** jjmb1 has joined #openstack-meeting11:02
*** jjmb has quit IRC11:02
*** xingchao has quit IRC11:03
*** dims has joined #openstack-meeting11:04
*** thorst has quit IRC11:04
*** aysyd has joined #openstack-meeting11:07
*** irenab has quit IRC11:07
*** _nadya_ has quit IRC11:12
*** scinawa has joined #openstack-meeting11:13
*** adiantum has quit IRC11:17
*** _nadya_ has joined #openstack-meeting11:22
*** tej has joined #openstack-meeting11:24
*** ajo has quit IRC11:24
*** ociuhandu has joined #openstack-meeting11:25
*** ajo has joined #openstack-meeting11:25
*** tej has quit IRC11:28
*** jjmb has joined #openstack-meeting11:31
*** vgridnev has quit IRC11:31
*** vgridnev has joined #openstack-meeting11:31
*** yamamoto_ has quit IRC11:31
*** jjmb1 has quit IRC11:31
*** rfolco has joined #openstack-meeting11:32
*** markvoelker has joined #openstack-meeting11:34
*** cschulz has quit IRC11:34
*** ddieterly has joined #openstack-meeting11:35
*** markvoelker has quit IRC11:39
*** ddieterly has quit IRC11:40
*** gcb has quit IRC11:40
*** adiantum has joined #openstack-meeting11:42
*** adahms has joined #openstack-meeting11:49
*** AmirBaleghi11112 has quit IRC11:49
*** gcb has joined #openstack-meeting11:53
*** Ramanjaneya has quit IRC11:54
*** haomaiwa_ has quit IRC12:01
*** haomaiwang has joined #openstack-meeting12:01
*** thorst has joined #openstack-meeting12:02
*** boris-42 has quit IRC12:03
*** arvinc_ has joined #openstack-meeting12:04
*** xingchao has joined #openstack-meeting12:05
*** sdake has joined #openstack-meeting12:05
*** apoorv has quit IRC12:07
*** claudiub has joined #openstack-meeting12:07
*** coolsvap is now known as coolsvap|away12:07
*** arvinc_ has quit IRC12:09
*** thorst has quit IRC12:10
*** scinawa has quit IRC12:11
*** achanda has joined #openstack-meeting12:14
*** vgridnev has quit IRC12:16
*** vgridnev has joined #openstack-meeting12:18
*** haomaiwang has quit IRC12:18
*** raildo-afk is now known as raildo12:20
*** achanda has quit IRC12:20
*** Turanchocks_ has joined #openstack-meeting12:20
*** jjmb1 has joined #openstack-meeting12:22
*** jjmb has quit IRC12:23
*** erlon has joined #openstack-meeting12:24
*** tej has joined #openstack-meeting12:24
*** doug-fish has joined #openstack-meeting12:25
*** oomichi is now known as oomichi_away12:26
*** reedip_ has joined #openstack-meeting12:27
*** markvoelker has joined #openstack-meeting12:29
*** tej has quit IRC12:29
*** cbouch has joined #openstack-meeting12:30
*** dmorita has joined #openstack-meeting12:30
*** otter768 has joined #openstack-meeting12:30
*** oomichi_away has quit IRC12:31
*** nelsnelson has quit IRC12:34
*** dmorita has quit IRC12:35
*** markvoelker has quit IRC12:35
*** otter768 has quit IRC12:35
*** ddieterly has joined #openstack-meeting12:36
*** ujuc has joined #openstack-meeting12:40
*** ddieterly has quit IRC12:41
*** thorst has joined #openstack-meeting12:43
*** jckasper has joined #openstack-meeting12:44
*** Daisy has joined #openstack-meeting12:46
*** zeih has quit IRC12:47
*** jckasper has quit IRC12:48
*** qwebirc52238 has joined #openstack-meeting12:50
*** jckasper has joined #openstack-meeting12:51
*** cschulz has joined #openstack-meeting12:52
*** zeih has joined #openstack-meeting12:53
*** MaxPC has joined #openstack-meeting12:54
*** arvinc_ has joined #openstack-meeting12:54
*** cbouch has quit IRC12:55
*** tochi has joined #openstack-meeting12:56
*** eumel8 has joined #openstack-meeting12:56
*** tochi has quit IRC12:57
*** ianychoi_phone has joined #openstack-meeting12:59
DaisyHi, we will start i18n meeting here.13:00
Daisy#startmeeting OpenStack I18n Meeting13:00
openstackMeeting started Thu Jan 21 13:00:42 2016 UTC and is due to finish in 60 minutes.  The chair is Daisy. Information about MeetBot at http://wiki.debian.org/MeetBot.13:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.13:00
*** openstack changes topic to " (Meeting topic: OpenStack I18n Meeting)"13:00
openstackThe meeting name has been set to 'openstack_i18n_meeting'13:00
ujuchi13:00
eumel8hello :)13:01
*** jckasper has quit IRC13:01
DaisyHi, ujuc, eumel813:01
DaisyWho's else ?13:01
*** haomaiwang has joined #openstack-meeting13:01
Daisyeumel8: is it your first i18n meeting ?13:01
*** jckasper has joined #openstack-meeting13:01
eumel8no13:01
*** pnavarro is now known as pnavarro|lunch13:01
ianychoi_phoneHi!13:01
DaisySorry. Forgive my bad memory. Which team do you from ?13:02
*** winston-d_ has quit IRC13:02
DaisyHi, ianychoi_phone13:02
eumel8german team13:02
eumel8always :)13:02
DaisyAre you Frank ?13:02
eumel8yes13:02
*** baoli has joined #openstack-meeting13:02
DaisyOK. Got it. Thank you for joining us. Let's start.13:02
DaisyWe have a long list to cover today.13:03
Daisy#topic Discussion: Glossary management process13:03
*** openstack changes topic to "Discussion: Glossary management process (Meeting topic: OpenStack I18n Meeting)"13:03
DaisyThe glossary.13:03
DaisyI'm going to use the first solution: saving glossary in po and pot files in Gerrit.13:03
*** jftalta has joined #openstack-meeting13:04
eumel8ok13:04
*** ihrachys has quit IRC13:04
*** toscalix has quit IRC13:04
*** toscalix has joined #openstack-meeting13:04
eumel8but translation is handled by Zanata?13:04
*** pradipta has joined #openstack-meeting13:05
*** ihrachys has joined #openstack-meeting13:05
DaisyFor several reasons: 1. it is simple. 2. Zanata will support glossary editor in the future. I look at their document. It looks good. We may use the glossary editor in Zanata when it is ready. po and pot file format are best format supported by Zanata.13:05
*** jckasper has quit IRC13:05
Daisyeumel8: Yes, we will upload po/pot to Zanata for translation. We just keep a version in our i18n repo.13:06
eumel8then we do so13:06
eumel8+113:06
jftalta+113:06
DaisyThank you for joining, jftalta .13:06
Daisyujuc: any concerns ?13:06
jftaltaHello Daisy13:06
ujucme 2 +1 :)13:07
Daisythank you, ujuc .13:07
ianychoi_phone+113:07
DaisyThank you team. move next.13:07
*** ddieterly has joined #openstack-meeting13:07
Daisy#topic: Discussion: IBM contributions13:07
*** openstack changes topic to ": Discussion: IBM contributions (Meeting topic: OpenStack I18n Meeting)"13:07
eumel8mhmm, Doug is not here13:08
DaisyIBM wants to contribute their translations to community again.  Doug said it was the last time. :)13:08
DaisyBecause they will send translators directly working with us for Mitaka translation, using Zanata.13:08
eumel8ah, very good13:09
DaisyI look at their package. It is not big this time.13:09
DaisyNova: 74 strings13:09
DaisyGlance: 52 strings13:09
DaisyKeystone: 22 strings13:09
DaisyCinder: 620 strings13:09
DaisyCelimeter: 8 strings.13:09
*** jtomasek has quit IRC13:09
DaisyOnly the number of cinder is a big one.  Others are quite small.13:10
jftaltaIBM made a good decision :)13:10
eumel8I'm also a little nervous about the current procedure with IBM but we need any help so we do so.13:10
eumel8for the last time :)13:10
Daisyeumel8: what do you mean ?13:11
*** akuznetsov has joined #openstack-meeting13:11
eumel8I mean the discussion on the mailing list13:11
eumel8with the different positions13:11
*** Guest7791 is now known as bradjones13:12
*** bradjones has joined #openstack-meeting13:12
*** jjmb1 has quit IRC13:12
DaisyYou mean the mail from Akihiro ?13:12
*** amotoki has joined #openstack-meeting13:12
eumel8yes13:12
Daisyok.13:12
DaisyA good point.13:13
*** jjmb has joined #openstack-meeting13:13
*** jungleboyj has quit IRC13:13
amotokihi13:13
ianychoi_phoneHello, amotaki!13:13
DaisyJapanese team did a lot of reviews for IBM last contributions in Liberty release. Japanese team want IBM to adopt their comments.13:13
Daisyamotoki: welcome13:13
*** xingchao has quit IRC13:14
jftaltaHello amotoki13:14
ujuchello13:14
DaisyI spent some time reading their review comments. I think they are very helpful for new comers who want to contribute.13:14
DaisyThe pity is that the comments are not able to extract.13:14
eumel8maybe Doug is able to connect the IBM translators direct to the japanese team13:14
DaisyI have copied them out, and I have forward them to IBM team.13:14
*** bill_az has joined #openstack-meeting13:14
eumel8or  he can invite the guys to i18n13:15
amotokithanks Daisy13:15
DaisyI think IBM team should revise their translations before contributing to community.13:16
DaisyI mean, the Japanese translation.13:16
DaisyNot other languages, because there was no review of other languages in Liberty release.13:16
eumel8are there also contribution from IBM in the installation guide?13:16
DaisyNo, only to messagings.13:16
eumel8ok13:17
Daisyonly to messaging.13:17
*** dprince has joined #openstack-meeting13:17
DaisyNo logs, no web user interfaces.13:17
*** arvinc_ has quit IRC13:17
amotokihonestly I am okay with either decision on IBM contribution to Japanese for Mitaka.13:17
amotokiI just hope we Japanese team and IBM team share our thought towards Newton release.13:18
Daisyquestion: since there was no reviews for IBM contributions for Liberty, except Japanese translations. Do you think we need to create branches for IBM contributions or not ?13:18
*** weshay_xchat has joined #openstack-meeting13:18
*** weshay_xchat is now known as weshay13:18
*** zeih has quit IRC13:19
eumel8good question13:19
eumel8I think yes13:19
DaisyI mean, there was no reviews of other languages for IBM translations last time. Do we need to create branches this time ?( The question is for other language team, not for Japanese team. ).13:19
Daisyfrankly speaking, I don't like to create branches.13:20
ianychoi_phoneFor Korean, I do not have enough time to IVM translations. And we mainly focused install-guide.. I am not sure whether Korean team can review IBM translations, but I am okay to accept IBM translations. I think for Korean team, the focus order would be common-rst -> horizon -> then ibm translations..13:20
ianychoi_phone-1 I do not like another branches13:20
DaisyBecause I don't know how stable Zanata is to support many branches.13:20
*** baoli has quit IRC13:21
amotokiI don't think we need more branch too (it's not from Japanese team view)13:21
ujuci  -1 .13:22
eumel8For German. I took a look into Dougs git repo and there is some space for improvement in translation to German :)13:22
DaisyI will not review IBM translations too. I didn't review them before. They are for messaging only. All the messaging translations are provided by IBM, in my mind. Oh. except nova.pot.13:22
*** jtomasek_ has joined #openstack-meeting13:22
amotokiujuc: what does -1 mean? no branch?13:22
*** jftalta_ has joined #openstack-meeting13:22
*** baoli has joined #openstack-meeting13:22
ujucyep no branch13:22
*** jftalta has quit IRC13:23
Daisyeumel8: I will think about if there are any ways for you to review German translations.13:23
jftalta_Still there...13:24
eumel8I want it, otherwise I have personaly no time for additional reviews13:24
Daisyok. how about you, jftalta_ ?13:24
DaisyWe are talking about whether to review IBM translations, whether to create branches.13:24
*** markvoelker has joined #openstack-meeting13:24
*** tej has joined #openstack-meeting13:25
*** tej has quit IRC13:25
*** tej has joined #openstack-meeting13:26
Daisyoh.13:26
jftalta_Unfortunately, don't have time to review IBM french translations13:26
Daisyok. got it.13:27
jftalta_French team is reorganizing itself presently13:28
eumel8Daisy: then skip the branching13:28
DaisyThank you, eumel8 .13:28
DaisyI need a further thinking. Thank you guys for the input. Very helpful.13:29
DaisyLet's move next.13:29
Daisy#topic Status update: Installation guide translation13:29
*** openstack changes topic to "Status update: Installation guide translation (Meeting topic: OpenStack I18n Meeting)"13:29
DaisyI think we are in good status of installation guide.13:29
*** markvoelker has quit IRC13:29
DaisyThank you ujuc and ianychoi_phone for the Korean translations.13:29
DaisyGreat work!13:30
ujuc:)13:30
ianychoi_phoneThank you so much for all i18n guys :)13:30
DaisyWe have installation guide in Japanese, Chinese and Korean now.13:30
DaisyThere are some bugs report to i18n recently about Chinese translations.13:30
jftalta_French team has to increase effort. It will.13:31
DaisyChinese translations have readers now. When they find errors, they will report bugs. I'm fixing them.13:31
ianychoi_phoneThere might be some Korean bugs.. we will check them.13:31
Daisyjftalta_: I know your team was under reorg.13:31
jftalta_yes13:31
*** cdelatte has joined #openstack-meeting13:32
DaisyNo worries. Mitaka translation will start from March. You will have a lot of work to do. :)13:32
jftalta_But we still have keen people :)13:32
eumel8congrats to Japan, China and Korea. great work, indeed!13:32
amotokiDraft index is really useful for translators: http://docs.openstack.org/draft/draft-index.html13:32
ianychoi_phoneThanks, eumel8 ! :)13:32
DaisyThank you, amotoki .13:32
Daisynext topic13:33
*** rtheis has joined #openstack-meeting13:33
Daisy#topic Status update: Translation check website13:33
*** openstack changes topic to "Status update: Translation check website (Meeting topic: OpenStack I18n Meeting)"13:33
*** egallen has joined #openstack-meeting13:33
DaisyIt's under progress.13:33
eumel8we are on 13% but I'm on it13:33
Daisyeumel8: no worries.13:33
*** lblanchard has joined #openstack-meeting13:33
*** vgridnev has quit IRC13:34
DaisyI'm working on the translation check website. Recently, I studied Puppet to see how to enable the automation jobs, and how to install Zanata client.13:34
Daisyso , still under working.13:35
Daisymove to next13:35
Daisy#topic Status update: Stackalytics feature13:35
*** irenab has joined #openstack-meeting13:35
*** openstack changes topic to "Status update: Stackalytics feature (Meeting topic: OpenStack I18n Meeting)"13:35
jftalta_From OpenStack point of view, will it be a devstack machine with master branches deployed on it ?13:36
DaisyYes, jftalta_13:36
jftalta_oh, sorry...13:36
Daisyit's ok.13:36
jftalta_ok, thanx Daisy13:36
Daisyadiantum: hi, there ?13:36
*** vgridnev has joined #openstack-meeting13:36
DaisyI have a program to pull translator contribution data from Zanata.13:36
DaisyIt is running in my machine now.13:37
*** reedip_ has quit IRC13:37
DaisyBut I don't know how to show the data in stackalytics.13:37
amotokihave you contacted to stackalytics team?13:38
DaisyMy plan is, if we are not able to find a people who help to show the data in stackalytics website, we just public the data in excel file.13:38
amotokiI think the number of stats is not a first priority. I think the first priority is who are translators considered as ATC.13:39
*** pradipta has quit IRC13:39
jftalta_It would be a pity. We need stackalytics. Do you agree ?...13:39
*** jckasper has joined #openstack-meeting13:40
jftalta_On the other hand, amotoki is right13:40
ianychoi_phoneYes I agree, or some help from Zanata guys to get statistics for Summit code...13:40
amotokiwe usually receive such question.13:40
DaisyThe program to pull user contribution data is slow. It will take hours to pull the data. To get a user 's contribution to a version of a project, it will send a query to Zanata. There are a big number of projects and a big number of users. You can image how many time the program need to query Zanata.13:40
Daisyamotoki mentioned a good point.13:41
*** jckasper has quit IRC13:41
*** jckasper has joined #openstack-meeting13:41
DaisyWe need the data to decide who can get ATC free pass.13:41
Daisyjftalta_: it's really a pity that we cannot use stackalaytics.13:42
amotokiof course, stackalytics support is great. no doubt!13:42
*** julim has joined #openstack-meeting13:42
eumel8is the collector program somewhere in git?13:42
DaisyNot yet. eumel8 , I will put it in git when it is proved good.13:43
DaisyAccording to our decision long time ago, people who translated more than 300 words in 6 month can get a free pass.13:43
jftalta_yes, I remember this rule13:44
-amotoki- knows a hack to earn 300 words in several minutes13:44
Daisyso that is from 2015.7 to 2016.113:44
*** TheJulia has left #openstack-meeting13:44
Daisyamotoki: what's the hack ?13:45
-amotoki- top secret13:45
amotokijoke :)13:45
DaisyWe started to use Zanata since Sep, so, we will use the data from Sep to Jan.13:45
*** dguitarbite has quit IRC13:45
*** amrith is now known as _amrith_13:46
amotokiwhen we translate a new string with 50 words using translation memory, we will get 50 words translated /13:46
amotokieven if only 1 word is changed. this is a trick.13:46
Daisydo you mean, 300 is too small for a free pass ?13:46
*** annemccormick has joined #openstack-meeting13:46
amotokiI don't think so.13:46
Daisyok. :)13:46
amotokithe number of translators itself is small.13:47
*** katomo has joined #openstack-meeting13:47
*** dguitarbite has joined #openstack-meeting13:47
Daisyanyway, I think, if 1 patch can get a free pass, 300 words translation is a equal condition.13:47
amotokiagree. good balance.13:47
jftalta_yes, its true. And number of good translators still smaller ;)13:47
amotoki:) and :(13:48
katomo+113:48
*** yamamoto has joined #openstack-meeting13:48
ianychoi_phoneI also agree, 300 words for translators13:48
ujuc+113:48
Daisyhehe13:48
*** cbartz has left #openstack-meeting13:48
DaisyWe are talking about the last topic now.13:48
Daisy#topic ATC status/Free Access Pass13:48
eumel8a work for 2-4 hours13:48
*** openstack changes topic to "ATC status/Free Access Pass (Meeting topic: OpenStack I18n Meeting)"13:48
*** yamamoto has quit IRC13:49
DaisyIn development team, ATC means a patch in 1 year, and a free pass is 1 patch in recent 6 month.13:49
DaisyI don't know when is the time point to refresh ATC.13:50
Daisywhen is time to refresh ATC list. Does anyone know about it ?13:50
*** markvoelker has joined #openstack-meeting13:50
eumel8I asked Stefano about the the feeling from the Foundation but I got no answer yet13:51
jftalta_I don't13:51
amotokiIIRC, contributor of the previous cycle will get a free pass for the next summit.13:51
amotokiI don't know the detail period though.13:51
*** ianychoi_phone has quit IRC13:51
amotokiDaisy: it is better to ask the foundation, stefano, tom ...13:51
*** ianychoi_phone has joined #openstack-meeting13:51
DaisyI'm sure free pass is talking about the latest 6 month. I just don't know when we shall refresh the ATC list.13:52
DaisyOK. I will ask them.13:52
*** cdelatte has quit IRC13:52
ianychoi_phoneNeither do I..13:52
eumel8for Austin it's already sent out13:52
jftalta_Yes. I've already got my code.13:52
*** yamamoto has joined #openstack-meeting13:52
DaisyI think there will be two batches.13:52
amotokieumel8: the first round has been sent out. there are more follow-up rounds.13:53
*** markvoelker has quit IRC13:53
DaisyThe first batch is sent out.13:53
*** hashar has quit IRC13:53
*** markvoelker has joined #openstack-meeting13:53
Daisyamotoki: yes, exactly.13:53
*** arvinc_ has joined #openstack-meeting13:53
DaisyI will work with Tom to make sure our translators will get the ATC code. like what we were doing for Liberty.13:54
*** arvinc_ has quit IRC13:54
*** tej has quit IRC13:54
*** dslevin has quit IRC13:54
Daisy#topic Current plan midcycle meet up13:54
*** openstack changes topic to "Current plan midcycle meet up (Meeting topic: OpenStack I18n Meeting)"13:54
*** tej has joined #openstack-meeting13:54
*** akuznetsov has quit IRC13:54
Daisyeumel8: frankly speaking, I don't have plan for midcycle meet up.13:54
Daisyeumel8: because I don't think our translators are able to travel.13:55
*** arvinc_ has joined #openstack-meeting13:55
*** zhurong has joined #openstack-meeting13:55
Daisyeumel8: I think a local team meet up is more reasonable.13:55
ianychoi_phoneHow about virtual sprint sprint..??13:55
jftalta_I agree with Daisy13:55
ianychoi_phoneSpring...13:56
*** arvinc_ has quit IRC13:56
katomosprint :)13:56
eumel8yes, the plan was a virtual meet up13:56
*** neelashah has joined #openstack-meeting13:56
Daisyianychoi_phone: a virtual sprint is for solving problems.13:56
*** zhurong has quit IRC13:56
*** arvinc_ has joined #openstack-meeting13:56
*** Liuqing has quit IRC13:56
*** arvinc_ has quit IRC13:57
ianychoi_phoneYep, I meant spring sprint kk13:57
*** markvoelker has quit IRC13:57
*** arvinc_ has joined #openstack-meeting13:57
DaisyAt the beginning, I'm think about the translation check website. Then I don't know who are able to help to solve this problem.13:58
*** ljxiash has quit IRC13:58
*** arvinc_ has quit IRC13:58
Daisylet's say, if I organize a virtual sprint to set up translation check website, will you join and help ?13:58
*** arvinc_ has joined #openstack-meeting13:58
*** markvoelker has joined #openstack-meeting13:59
katomoDaisy: yep13:59
ianychoi_phoneSure, definitely! Why not? :)13:59
eumel8yes13:59
*** arvinc_ has quit IRC13:59
ujucyep13:59
*** tej has quit IRC13:59
DaisyGood! That make me much confident.13:59
amotoki /FYI/ andreas and i are working on translation setup improvement. https://review.openstack.org/#/c/262545/13:59
jftalta_Honestly,it will be hard for me13:59
amotokihttps://review.openstack.org/#/q/topic:translation_setup13:59
Daisyhow about next weekend ?14:00
amotokiif you are interested in them, check it.14:00
DaisyI mean, the virtual sprint ?14:00
*** arvinc_ has joined #openstack-meeting14:00
ianychoi_phoneNice :)14:00
*** arvinc_ has quit IRC14:00
*** vishwanathj_ has joined #openstack-meeting14:00
eumel8the next I'm on holiday.14:00
*** ljxiash has joined #openstack-meeting14:00
*** haomaiwang has quit IRC14:01
Daisyoh.14:01
eumel8or you mean 01/30 ?14:01
DaisyYes, eumel8 .14:01
DaisyLet's plan for 2 days.14:01
eumel8ah, thats good14:01
*** haomaiwang has joined #openstack-meeting14:01
DaisyA friday and a  saturday.14:01
*** sdake has quit IRC14:01
*** weshay has quit IRC14:01
ujuc29, 30?14:01
DaisyWe start from 29.14:01
ujucok14:02
eumel8ok14:02
katomoI'm okay as of now14:02
DaisyYes. ujuc . we start from 29 UTC 0600.14:02
ujuc...friday 3pm.. ... ...14:02
ujucKST...;14:03
DaisySorry.14:03
DaisyMaybe Friday evening.14:03
DaisyI don't know if there are meeting after us.14:03
ujuc:)14:03
DaisyI have to stop it. Let14:03
*** ddieterly has quit IRC14:03
Daisylet's move to i18n channel to continue the discussion.14:03
ujucoh yes14:03
ianychoi_phoneOkay!14:03
eumel8ok14:03
ianychoi_phoneThanks for all :)14:03
*** ninag has joined #openstack-meeting14:03
DaisyThank you for joining. Go to #openstack-i18n then.14:04
Daisy#endmeeting14:04
ujucOk14:04
*** openstack changes topic to "other things (summary/wrap-up (Meeting topic: swift)"14:04
eumel8thx14:04
openstackMeeting ended Thu Jan 21 14:04:04 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)14:04
openstackMinutes:        http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2016/openstack_i18n_meeting.2016-01-21-13.00.html14:04
ujuctnx14:04
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2016/openstack_i18n_meeting.2016-01-21-13.00.txt14:04
openstackLog:            http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2016/openstack_i18n_meeting.2016-01-21-13.00.log.html14:04
ujucthx :)14:04
*** katomo has left #openstack-meeting14:04
amotokithanks!14:04
*** rbowen has joined #openstack-meeting14:04
*** eumel8 has left #openstack-meeting14:04
jftalta_Thanx Daisy, thank you all. It was a great meeting :)14:04
*** annegentle has joined #openstack-meeting14:04
*** merooney has joined #openstack-meeting14:04
*** jftalta_ has quit IRC14:04
*** cbouch has joined #openstack-meeting14:05
*** ljxiash has quit IRC14:05
*** Turanchocks_ has quit IRC14:06
*** irenab has quit IRC14:07
*** lezbar has quit IRC14:07
*** lezbar__ has joined #openstack-meeting14:07
*** irenab has joined #openstack-meeting14:08
*** bochi-michael has quit IRC14:11
*** liamji has joined #openstack-meeting14:12
*** xingchao has joined #openstack-meeting14:13
*** qwebirc52238 has quit IRC14:13
*** trozet has joined #openstack-meeting14:14
*** flip214 has quit IRC14:14
*** flip214 has joined #openstack-meeting14:17
*** achanda has joined #openstack-meeting14:17
*** weshay_xchat has joined #openstack-meeting14:18
*** sdake has joined #openstack-meeting14:19
*** jlanoux has quit IRC14:19
*** evgenyf has quit IRC14:20
*** dkranz has joined #openstack-meeting14:20
*** ppetit has quit IRC14:22
*** achanda has quit IRC14:23
*** peristeri has joined #openstack-meeting14:24
*** raildo is now known as raildo-afk14:24
*** rbowen has quit IRC14:26
*** rbowen has joined #openstack-meeting14:26
*** xingchao has quit IRC14:28
*** yamamoto has quit IRC14:28
*** ljxiash has joined #openstack-meeting14:28
*** ianychoi_phone has quit IRC14:28
*** ihrachys has quit IRC14:28
*** balajiiyer has quit IRC14:29
*** Daisy has quit IRC14:30
*** ddieterly has joined #openstack-meeting14:30
*** zeih has joined #openstack-meeting14:31
*** njohnston has joined #openstack-meeting14:31
*** adahms has quit IRC14:31
*** xingchao has joined #openstack-meeting14:31
*** jtomasek has joined #openstack-meeting14:31
*** otter768 has joined #openstack-meeting14:31
*** xingchao has quit IRC14:33
*** kcalman has quit IRC14:33
*** ujuc has quit IRC14:33
*** ddieterly has quit IRC14:34
*** sdake has quit IRC14:35
*** banix has joined #openstack-meeting14:35
*** xingchao has joined #openstack-meeting14:36
*** otter768 has quit IRC14:36
*** absubram has joined #openstack-meeting14:37
*** Ramanjaneya has joined #openstack-meeting14:37
*** xingchao has quit IRC14:37
*** arvinc_ has joined #openstack-meeting14:38
*** arvinc_ has joined #openstack-meeting14:39
*** ihrachys has joined #openstack-meeting14:39
*** xingchao has joined #openstack-meeting14:39
*** dslev has joined #openstack-meeting14:39
*** jmckind has joined #openstack-meeting14:42
*** fawadkhaliq has joined #openstack-meeting14:42
*** tej has joined #openstack-meeting14:43
*** paul-carlton2 has quit IRC14:46
*** jungleboyj has joined #openstack-meeting14:46
*** akuznetsov has joined #openstack-meeting14:46
*** jtomasek_ has quit IRC14:49
*** thangp has joined #openstack-meeting14:49
*** efoley has joined #openstack-meeting14:50
*** _amrith_ is now known as amrith14:50
*** pnavarro|lunch is now known as pnavarro14:50
*** ildikov has quit IRC14:52
*** nelsnelson has joined #openstack-meeting14:53
*** mtanino has joined #openstack-meeting14:54
*** cbouch has quit IRC14:54
*** nelsnels_ has joined #openstack-meeting14:55
*** nelsnelson has quit IRC14:55
*** julim has quit IRC14:56
*** akuznetsov has quit IRC14:56
*** llu-laptop has joined #openstack-meeting14:56
*** ildikov has joined #openstack-meeting14:58
*** jlanoux has joined #openstack-meeting14:59
*** vhoward has joined #openstack-meeting14:59
*** zqfan has joined #openstack-meeting14:59
*** cdent has joined #openstack-meeting15:00
*** ctrath has joined #openstack-meeting15:00
*** gordc has joined #openstack-meeting15:00
*** haomaiwang has quit IRC15:01
gordc#start telemetry15:01
*** vgridnev has quit IRC15:01
*** r-mibu has joined #openstack-meeting15:01
gordc#startmeeting telemetry15:01
openstackMeeting started Thu Jan 21 15:01:28 2016 UTC and is due to finish in 60 minutes.  The chair is gordc. Information about MeetBot at http://wiki.debian.org/MeetBot.15:01
*** ctrath has left #openstack-meeting15:01
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.15:01
*** sgundur has left #openstack-meeting15:01
*** openstack changes topic to " (Meeting topic: telemetry)"15:01
*** haomaiwang has joined #openstack-meeting15:01
ityaptino/15:01
openstackThe meeting name has been set to 'telemetry'15:01
silehto/15:01
zqfanhi15:01
cdento/15:01
liushengo/15:01
r-mibuo/15:01
llu-laptopo/15:01
ildikovo/15:02
gordclet's go.15:02
gordc#topic roadmap items (new/old/blockers) https://wiki.openstack.org/wiki/Telemetry/RoadMap15:02
*** julim has joined #openstack-meeting15:02
*** openstack changes topic to "roadmap items (new/old/blockers) https://wiki.openstack.org/wiki/Telemetry/RoadMap (Meeting topic: telemetry)"15:02
*** idegtiarov_ has joined #openstack-meeting15:02
gordcjust a heads up15:02
*** achatterjee_ has joined #openstack-meeting15:02
idegtiarov_hi!15:02
gordctoday i tagged and released m-2 releases for aodh and ceilometer15:02
achatterjee_Hi15:02
gordci will start with liberty releases soon (if gate works)15:02
*** sigmavirus24_awa is now known as sigmavirus2415:03
gordcand i will also tag whatever is last commit in ceilometerclient15:03
*** fawadkhaliq has quit IRC15:03
*** yamamoto has joined #openstack-meeting15:03
gordcplesae yell now if you need something (it's already too late for m-2)15:03
*** piet has joined #openstack-meeting15:04
cdentI NEED A PIZZA15:04
*** emsomeoneelse has joined #openstack-meeting15:04
gordcthe pizza shop near me closed for renovations15:04
*** kencjohnston has joined #openstack-meeting15:05
_nadya_o/15:05
gordcok. well just a reminder, http://docs.openstack.org/releases/schedules/mitaka.html15:05
gordcyou have ~a month until feature freeze15:06
gordcif anything is dragging, please raise concerns asap15:06
*** xingchao has quit IRC15:06
ildikovI hope I can get the docco in by then for Aodh, I have a +2 now :)15:06
*** achatterjee_ has quit IRC15:07
gordcildikov: :)15:07
*** boris-42 has joined #openstack-meeting15:07
gordcildikov: i don't want to debbie downer again but we will probably need to update again later: http://specs.openstack.org/openstack/ceilometer-specs/specs/mitaka/only-support-sqlalchemy-in-aodh.html15:07
gordcildikov: but let's get your patch in first.15:07
*** achatterjee_ has joined #openstack-meeting15:08
*** ifat_afek has joined #openstack-meeting15:08
*** neeti has quit IRC15:08
gordcok. let's talk about each project15:08
gordc#topic aodh topics15:08
*** openstack changes topic to "aodh topics (Meeting topic: telemetry)"15:09
*** cbouch has joined #openstack-meeting15:09
*** ozamiatin has quit IRC15:09
*** piet has quit IRC15:09
gordcllu-laptop: do you think the event-alarm timeout and multi-worker bps will be done this cycle?15:09
llu-laptopI should ask edwin-zhai about that.15:10
llu-laptoplooks  like his bp still needs review15:10
ildikovgordc: well, let's get this in first and then I'll update15:10
llu-laptopfor the multi-worker, I currently don't have the bandwidth for that, sorry15:10
ildikovgordc: the packaging is still not sorted out either as far as I checked last time :(15:11
gordcllu-laptop: sure, let's defer it then unless you find time.15:11
gordcildikov: i believe ubuntu just made package recently. EmilienM ?15:11
EmilienMo/15:11
gordcaodh ubuntu? ready finally?15:12
EmilienMfor aodh -> yes and it works on mitaka only (trusty and after)15:12
ildikovgordc: would be cool, I will check SUSE too, haven't done it this week15:12
*** sdake has joined #openstack-meeting15:12
EmilienMfor gnocchi: nothing. I created the bug15:12
EmilienMno reply15:12
llu-laptopr-mibu: do you have time to review edwin's event alarm related spec?15:12
*** bdrich has joined #openstack-meeting15:12
gordcEmilienM: surprise.15:12
EmilienMgordc: can I quit?15:12
ildikovEmilienM: great, thanks for the update15:12
gordcwrong window15:12
llu-laptophttps://review.openstack.org/23931215:12
EmilienMlol15:12
llu-laptophttps://review.openstack.org/25816315:12
gordcwe all quit later. but it's secret15:13
r-mibullu-laptop: yep, i've already reviewed #23931215:13
*** akuznetsov has joined #openstack-meeting15:13
*** rbak has joined #openstack-meeting15:13
gordcpradk: do you think you'll get gnocchi alarm rules in soon?15:13
gordcr-mibu: thanks!15:13
r-mibullu-laptop: will check #25816315:13
llu-laptopr-mibu: thx15:13
llu-laptopr-mibu: can you +2 for 239312?15:14
pradkpradk, yea i saw some comments from llu i'll address today.. Zi said he wants to look at tests, i'll check what the status is15:14
r-mibullu-laptop: yes15:14
pradkgordc, ^^15:14
r-mibullu-laptop: do we have spec for multi-worker?15:14
llu-laptopr-mibu: i'm afraid not15:14
gordcpradk: kk. i'm just waiting on tests i think.15:15
r-mibullu-laptop: ok15:15
gordcr-mibu: we will probably delay it unles we get more resource.15:15
llu-laptoppradk: what comment?15:15
r-mibugordc: agree15:15
*** spotz_zzz is now known as spotz15:15
pradkllu-laptop, https://review.openstack.org/#/c/266073/15:16
gordcpradk: let's aim for aodhclient release next week? ok with you?15:16
*** hparekh_ has joined #openstack-meeting15:16
pradkgordc, yea15:16
gordcpradk: cool cool15:16
*** sdake_ has joined #openstack-meeting15:17
*** lazy_prince has joined #openstack-meeting15:19
gordc#action release aodhclient next week when gnocchi rules are in15:19
gordc#action delay event multi-worker15:19
*** liqw has joined #openstack-meeting15:19
gordc#topic ceilometer topics15:19
*** openstack changes topic to "ceilometer topics (Meeting topic: telemetry)"15:19
*** ozamiatin has joined #openstack-meeting15:19
*** achanda has joined #openstack-meeting15:20
*** achanda has quit IRC15:20
gordci guess nothing here. just keep working...15:20
*** achanda has joined #openstack-meeting15:20
gordc_nadya_: any comments on https://review.openstack.org/#/c/267625/15:21
*** jaypipes has joined #openstack-meeting15:21
_nadya_gordc: based on logs, it works better :)15:21
_nadya_gordc: but delta graph is the same, we discussed that15:21
gordc_nadya_: that's better.15:22
*** sdake has quit IRC15:22
gordc_nadya_: i see. i'll take a look at doc again. the deltas will definitely be off once any agent join/leaves15:22
gordc_nadya_: thanks again for studying this.15:22
_nadya_gordc: we need https://review.openstack.org/#/c/209799/ be merged15:22
*** akuznetsov has quit IRC15:23
gordc_nadya_: ack. i'll take a look again.15:23
liusheng_nadya_: thanks, I just updated the spec15:23
*** cschwede has quit IRC15:23
_nadya_gordc: thanks!15:23
gordcllu-laptop: jd__: sileht: if you have time to review polling spec ^15:23
_nadya_liusheng: cool!15:23
*** FallenPegasus has joined #openstack-meeting15:24
_nadya_jfyi, the PoC is here https://review.openstack.org/#/c/267078/315:24
*** vijendar has joined #openstack-meeting15:25
llu-laptopthis one?15:25
llu-laptophttps://review.openstack.org/#/c/209799/15:25
gordcllu-laptop: correct15:25
*** akuznetsov has joined #openstack-meeting15:25
_nadya_ityaptin: do you have anything regarding this^^?15:25
*** fawadkhaliq has joined #openstack-meeting15:25
llu-laptopwill do15:26
ityaptinPoC is out-of-date, because the spec have been updated, but I made some tests15:26
*** zz_dimtruck is now known as dimtruck15:26
gordcllu-laptop: thank you.15:26
*** ddieterly has joined #openstack-meeting15:26
liusheng_nadya_: the change will be smaller if we agree to a global cache directly by pollsters15:26
gordcityaptin: cool cool15:27
ityaptinIt's works good with metadata updating period = 600s and cpu and network polling interval = 1s, for the 50 VMs on devstack.15:27
*** ppetit has joined #openstack-meeting15:27
*** Ramanjaneya has quit IRC15:27
*** Daisy has joined #openstack-meeting15:27
gordcityaptin: nice. that sounds promising.15:27
ityaptinUnfortunately, I don't have a good lab with many compute for testing it.15:27
*** iben_ has joined #openstack-meeting15:28
gordcityaptin: it's optional right? 'global' cache?15:28
ityaptinIn the new spec variant I think yes.15:28
*** xingchao has joined #openstack-meeting15:29
ityaptinliusheng: Am I right? Without global cache we can to store cache in the polling agent cache15:29
gordck. sounds good.15:29
liushengityaptin: if you have any suggestion about the spec, please feel free to comment15:30
ityaptinliusheng: in progress :)15:30
*** timcline has joined #openstack-meeting15:31
liushengityaptin: without global cache, it seems meaningless, right?15:31
*** balajiiyer has joined #openstack-meeting15:31
*** vijendar1 has joined #openstack-meeting15:31
gordcliusheng: the suggestion is people can still continue to use polling as it currently works15:31
*** dmorita has joined #openstack-meeting15:31
gordcbut if they want to minimise queries more, then can switch to global cache15:32
liushenggordc: yeah, I agree that15:32
gordccool cool.15:32
gordclet's change to gnocchi.15:33
gordc#topic gnocchi topics15:33
*** openstack changes topic to "gnocchi topics (Meeting topic: telemetry)"15:33
gordcjd__: sileht: interesting stuff that needs to be discussed?15:33
*** achanda has quit IRC15:33
gordcshould we publish an update to say what's been done for gnocchi since <time>?15:34
*** efoley_ has joined #openstack-meeting15:34
*** vijendar has quit IRC15:34
*** efoley has quit IRC15:34
jd__we could gather release note I guess15:34
*** dprince has quit IRC15:35
jd__I didn't spend time digging into reno, and if it can be integrated into our docco15:35
*** akuznetsov has quit IRC15:35
gordcjd__: it's a lot of work. tbh15:35
jd__gordc: to write it?15:35
gordcyeah.15:35
gordcyou need to gen template, write something in a section...15:36
gordci guess it's just two steps... ijust don't like writing relesae notes i guess15:36
*** asselin__ has quit IRC15:37
*** dmorita has quit IRC15:37
gordc*drop either one of the 'i guess' from sentence above*15:37
*** sdake_ is now known as sdake15:37
*** mbound has quit IRC15:37
gordclet's move on.15:38
*** markvoelker has quit IRC15:38
gordc#topic open discussion15:38
*** openstack changes topic to "open discussion (Meeting topic: telemetry)"15:38
*** jjmb has quit IRC15:38
gordcjust an fyi, we have same opportunity to ask a question in openstack survey this cycle15:38
*** fzdarsky has quit IRC15:39
gordci don't really have a question to ask but if anyone does, i need to submit something by today.15:39
*** fzdarsky has joined #openstack-meeting15:39
*** asselin_ has joined #openstack-meeting15:39
*** annegent_ has joined #openstack-meeting15:39
gordci'll take that as no...15:40
gordclast chance for any additional discussions in this meeting...15:40
*** andymaier has quit IRC15:40
*** hparekh_ has quit IRC15:41
llu-laptopcan we reuse our last cycle's question?15:41
*** su_zhang has joined #openstack-meeting15:41
*** Ramanjaneya has joined #openstack-meeting15:41
*** irenab has quit IRC15:41
*** jmckind has quit IRC15:41
llu-laptoponly 1 question?15:41
gordcllu-laptop: was it helpful?15:41
gordcllu-laptop: yes, one question. same format15:41
gordcllu-laptop: i believe the reply from last cycle was pretty much 'we ues ceilometer data for everythiing'15:42
*** annegentle has quit IRC15:42
*** fawadkhaliq has quit IRC15:42
*** galstrom_zzz is now known as galstrom15:42
llu-laptopi'm just wondering if this survey will have more response, because it's conducted by openstack official?15:43
*** cbouch has quit IRC15:43
*** jmckind has joined #openstack-meeting15:43
gordcllu-laptop: it probably will.15:44
gordci don't remember the actual numbers15:44
llu-laptoplast one seems about 20ish?15:44
*** amotoki has quit IRC15:44
*** ndipanov has quit IRC15:44
llu-laptopbut only 1 question I doubt how it's helpful15:45
*** singhj has joined #openstack-meeting15:45
*** Daisy has quit IRC15:45
gordc154 replies15:45
gordcfrom official survey15:45
*** fzdarsky has quit IRC15:45
*** emagana has joined #openstack-meeting15:45
ildikovwe can try that once more if we don't have anything else15:45
*** singhj has quit IRC15:45
ildikovprolly will not hurt15:46
llu-laptophmm, looks like my memory is in chaos15:46
*** cbouch has joined #openstack-meeting15:46
*** spzala has joined #openstack-meeting15:46
*** ljxiash has quit IRC15:47
*** xingchao has quit IRC15:47
gordcildikov: did we get a lot of value from learning 'use of ceilometer data'?15:47
*** ljxiash has joined #openstack-meeting15:47
*** xingchao has joined #openstack-meeting15:47
ildikovgordc: maybe not, we needed to improve things anyway regardless of the answer of everything15:48
*** singhj has joined #openstack-meeting15:48
gordccorrect. i believe the same question we ask last time was asked at ops midcycle as well.15:49
*** macsz has quit IRC15:49
ildikovgordc: I guess it's too early asking about Aodh as the packaging did not happen that fast15:49
*** jreeves has joined #openstack-meeting15:49
gordcildikov: on ubuntu15:49
gordcand suse15:49
*** hashar has joined #openstack-meeting15:49
gordcbut yeah, i don't think there's enough changes to aodh just yet15:49
ildikovdo we have anything to ask about Gnocchi?15:50
gordcjd__: ^ ?15:50
ildikovdo we know whether people are using it with Ceilo or stand alone?15:50
gordcildikov: i believe that is only packaged in fedora15:50
ildikovgordc: you mean Gnocchi?15:50
gordcildikov: correct15:50
gordcand debuan.15:51
gordcdebian15:51
gordcbug sitting around against ubuntu15:51
gordcso same as aodh 5 months ago15:51
*** fzdarsky has joined #openstack-meeting15:52
jd__gordc: not really I guess15:52
*** macsz has joined #openstack-meeting15:52
*** ljxiash has quit IRC15:52
gordcjd__: kk15:52
llu-laptopspeaking of aodh, does anyone know that http://launchpad.net/aodh is part of http://launchpad.net/openstack ?15:52
ildikovok15:52
ildikovno other question ideas :)15:53
gordcllu-laptop: ildikov if you feel strongly about re-asking same question let me know after meeting. (not 100% against it)15:53
llu-laptopbecause https://blueprints.launchpad.net/openstack/?searchtext=composite-threshold-rule-alarm gives me nothing, but I can access https://blueprints.launchpad.net/aodh/+spec/composite-threshold-rule-alarm15:53
gordcllu-laptop: i'll take a look.15:53
gordci don't really use search in launchpad because it's not really useful15:54
llu-laptopot15:54
llu-laptopit's generated by cliking bp tag in gerrit15:54
*** thinrichs has joined #openstack-meeting15:54
*** nmagnezi has quit IRC15:54
*** kebray has joined #openstack-meeting15:54
gordci see. i'll check after this.15:55
gordcanything else? close this off?15:55
*** achanda has joined #openstack-meeting15:55
gordclet's shut er down. thanks folks15:55
gordc#endmeeting15:56
*** openstack changes topic to "other things (summary/wrap-up (Meeting topic: swift)"15:56
openstackMeeting ended Thu Jan 21 15:56:01 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)15:56
openstackMinutes:        http://eavesdrop.openstack.org/meetings/telemetry/2016/telemetry.2016-01-21-15.01.html15:56
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/telemetry/2016/telemetry.2016-01-21-15.01.txt15:56
openstackLog:            http://eavesdrop.openstack.org/meetings/telemetry/2016/telemetry.2016-01-21-15.01.log.html15:56
*** ifat_afek has left #openstack-meeting15:56
*** zeih has quit IRC15:57
*** angdraug has joined #openstack-meeting15:57
*** cdent has left #openstack-meeting15:58
*** zeih has joined #openstack-meeting15:58
*** achatterjee_ has quit IRC15:58
*** numans has quit IRC15:58
*** iyamahat has joined #openstack-meeting15:59
*** ndipanov has joined #openstack-meeting15:59
*** llu-laptop has quit IRC15:59
*** Sam-I-Am has joined #openstack-meeting16:00
*** ssrikant has joined #openstack-meeting16:00
*** haomaiwang has quit IRC16:01
*** lwilliams has joined #openstack-meeting16:01
*** rbowen has quit IRC16:01
*** achatterjee_ has joined #openstack-meeting16:01
*** markvoelker has joined #openstack-meeting16:01
*** rbowen has joined #openstack-meeting16:01
*** haomaiwa_ has joined #openstack-meeting16:01
*** achatterjee_ has left #openstack-meeting16:01
Sam-I-Amhello16:01
vhowardo/16:01
Sam-I-Amnetworking guide meeting time16:01
*** gmolson has joined #openstack-meeting16:02
*** achanda has quit IRC16:02
Sam-I-Am#startmeeting networking-guide16:02
openstackMeeting started Thu Jan 21 16:02:32 2016 UTC and is due to finish in 60 minutes.  The chair is Sam-I-Am. Information about MeetBot at http://wiki.debian.org/MeetBot.16:02
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.16:02
*** openstack changes topic to " (Meeting topic: networking-guide)"16:02
openstackThe meeting name has been set to 'networking_guide'16:02
*** FallenPegasus has quit IRC16:02
Sam-I-Amanyone here for the networking guide meeting?16:03
*** zeih has quit IRC16:03
jreevesyep16:03
vhowardyes16:03
*** roxanaghe has joined #openstack-meeting16:03
Sam-I-Amcool16:03
Sam-I-Ampast action items16:03
ssrikantyes16:03
Sam-I-Am#topic past action items16:03
*** openstack changes topic to "past action items (Meeting topic: networking-guide)"16:03
Sam-I-Amwe're trying to get people to commit content to the networking guide16:04
Sam-I-Am#link https://etherpad.openstack.org/p/networking-guide16:04
*** scheuran has quit IRC16:04
Sam-I-Amif you think you can help out, put your name next to the item and approximately when you think you can complete it16:04
*** liusheng has quit IRC16:04
Sam-I-Amwe're primarily looking to fill out the intro content so people can understand the underlying concepts of virtual networking16:05
Sam-I-Amnext...16:05
Sam-I-Am#topic preparation for liberty/mitaka16:05
*** openstack changes topic to "preparation for liberty/mitaka (Meeting topic: networking-guide)"16:05
Sam-I-Amthe patch for master merged16:06
Sam-I-Amthe backport to liberty is waiting16:06
Sam-I-Am#link https://review.openstack.org/#/c/270569/16:06
*** r-mibu has left #openstack-meeting16:06
*** nurla has left #openstack-meeting16:06
Sam-I-Amthis patch essentially resolves a bunch of issues regarding conventions16:07
*** nurla has joined #openstack-meeting16:07
Sam-I-Ammight as well fix them all at once16:07
*** balajiiyer has quit IRC16:07
Sam-I-Ami also have another patch that updates the scenarios for liberty16:07
Sam-I-Am#link https://review.openstack.org/#/c/270567/16:07
*** SridharG has quit IRC16:07
jreeveswell, that's a giant commit16:08
Sam-I-Amwe're a little bit behind in net guide updates, so with the new versioning going on, we have to backport these changes16:08
Sam-I-Amonce they're done, we need to do a final cleanup on the liberty stuff and begin working on mitaka updates16:08
Sam-I-Amwhich shouldnt be too much at this point16:08
Sam-I-Amwhich leads me to the next topic16:08
*** gordc has left #openstack-meeting16:09
Sam-I-Amjreeves: yeah it is16:09
Sam-I-Amjreeves: its really not *that* bad16:09
Sam-I-Amunless you're talking about the first patch with all the renames16:09
Sam-I-Amthat one IS pretty big16:09
*** rcernin has quit IRC16:09
Sam-I-Am#topic scenario changes for mitaka16:10
*** openstack changes topic to "scenario changes for mitaka (Meeting topic: networking-guide)"16:10
*** Ramanjaneya has quit IRC16:10
*** lazy_prince has quit IRC16:10
*** yamahata has joined #openstack-meeting16:10
*** ekcs has quit IRC16:10
Sam-I-Amthe ongoing question is do we add support for connecting vms directly to provider nets to the existing scenarios or add new scenarios. the idea is providing the most flexibility without confusing the end-user.16:11
*** ddieterly has quit IRC16:11
*** ddieterly has joined #openstack-meeting16:11
*** yamamoto has quit IRC16:11
*** winston-d_ has joined #openstack-meeting16:11
*** yamamoto has joined #openstack-meeting16:11
Sam-I-Amwe see a lot of interest in hybrid environments where operators can avoid L3 if necessary16:11
*** yamamoto has quit IRC16:11
Sam-I-Amit might help to reorder the scenarios in order of general complexity16:12
Sam-I-Amstarting with basic provider nets and going up to dvr16:12
*** mbound has joined #openstack-meeting16:13
*** amotoki has joined #openstack-meeting16:13
Sam-I-Amother changes include adding multiple dhcp agents to the l3ha and dvr scenarios16:13
Sam-I-Amadding support for the metadata agent to the provider scenarios16:13
Sam-I-Ambunch of little stuff16:13
Sam-I-Amthats it on the agena16:13
Sam-I-Amagenda.16:13
Sam-I-Amanything anyone wants to talk about?16:13
*** dandruta has joined #openstack-meeting16:13
*** spzala has quit IRC16:14
*** spzala has joined #openstack-meeting16:14
lwilliamsi like your idea of putting into order of complexity..   maybe easier to build upon existing that way.  nothing to add to the agenda.16:14
jreeves*crickets*16:14
*** slagle has quit IRC16:14
*** cschwede has joined #openstack-meeting16:14
lwilliamsin etherpad overview info...what does (L) (H) mean..sorry if i missed that.  is that someone signed up for the content?16:15
Sam-I-Amlwilliams: oh, priority16:15
Sam-I-AmL is low, H is high16:15
lwilliamsok, thx16:15
*** korzen has quit IRC16:16
Sam-I-Amanything else?16:16
Sam-I-Amhearing nothing, let's call it a meeting.16:16
lwilliamsnot from me16:16
*** xingchao_ has joined #openstack-meeting16:16
Sam-I-Amthanks for attending. back to work!16:16
ssrikantnot from me16:16
lwilliamsthx Sam-I-Am16:17
*** fawadkhaliq has joined #openstack-meeting16:17
Sam-I-Am#endmeeting16:17
*** openstack changes topic to "other things (summary/wrap-up (Meeting topic: swift)"16:17
openstackMeeting ended Thu Jan 21 16:17:21 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)16:17
openstackMinutes:        http://eavesdrop.openstack.org/meetings/networking_guide/2016/networking_guide.2016-01-21-16.02.html16:17
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/networking_guide/2016/networking_guide.2016-01-21-16.02.txt16:17
openstackLog:            http://eavesdrop.openstack.org/meetings/networking_guide/2016/networking_guide.2016-01-21-16.02.log.html16:17
*** ssrikant has left #openstack-meeting16:17
*** Sam-I-Am has left #openstack-meeting16:17
*** pratikmallya has joined #openstack-meeting16:17
*** ccarmack has joined #openstack-meeting16:18
*** xingcha__ has joined #openstack-meeting16:18
*** lwilliams has quit IRC16:18
*** xingchao has quit IRC16:18
*** bnemec has quit IRC16:18
*** trozet has quit IRC16:19
*** trozet has joined #openstack-meeting16:19
*** bnemec has joined #openstack-meeting16:20
*** rajinir has joined #openstack-meeting16:20
*** xingchao_ has quit IRC16:21
*** vgridnev has joined #openstack-meeting16:21
*** Ramanjaneya has joined #openstack-meeting16:22
*** pratikma_ has joined #openstack-meeting16:22
*** liamji has quit IRC16:23
*** krtaylor has quit IRC16:23
*** egallen has quit IRC16:23
*** raildo-afk is now known as raildo16:24
*** liamji has joined #openstack-meeting16:24
*** xingcha__ is now known as xingchao16:24
*** vishwanathj_ has quit IRC16:25
*** pratikmallya has quit IRC16:25
*** fawadkhaliq has quit IRC16:25
*** egallen has joined #openstack-meeting16:25
*** hashar has quit IRC16:27
*** jvrbanac_ has joined #openstack-meeting16:29
*** adiantum has quit IRC16:29
*** piet has joined #openstack-meeting16:30
*** jvrbanac_ has quit IRC16:30
*** matrohon has joined #openstack-meeting16:31
*** otter768 has joined #openstack-meeting16:32
*** efoley_ is now known as efoley16:32
*** marios has quit IRC16:34
*** krtaylor has joined #openstack-meeting16:35
*** kebray has quit IRC16:35
*** otter768 has quit IRC16:37
*** ozamiatin has quit IRC16:38
*** balajiiyer has joined #openstack-meeting16:42
*** fawadkhaliq has joined #openstack-meeting16:44
*** whenry has quit IRC16:46
*** bdrich has quit IRC16:47
*** rcernin has joined #openstack-meeting16:49
*** cbouch has quit IRC16:49
*** pcarver_ is now known as pcarver16:49
*** slowrie has joined #openstack-meeting16:50
*** ddieterly has quit IRC16:50
*** ddieterly has joined #openstack-meeting16:51
*** vgridnev has quit IRC16:51
*** bnemec has quit IRC16:52
*** cdent has joined #openstack-meeting16:52
*** Leo_ has joined #openstack-meeting16:53
*** Daisy has joined #openstack-meeting16:53
*** marios has joined #openstack-meeting16:54
*** fawadkhaliq has quit IRC16:54
*** fawadkhaliq has joined #openstack-meeting16:54
*** dwalleck has joined #openstack-meeting16:55
*** Leom has joined #openstack-meeting16:55
*** comay has quit IRC16:56
*** gyee has joined #openstack-meeting16:56
*** comay has joined #openstack-meeting16:56
*** markstur has left #openstack-meeting16:57
*** akuznetsova has quit IRC16:57
*** paul-carlton2 has joined #openstack-meeting16:57
*** vgridnev has joined #openstack-meeting16:57
*** Daisy has quit IRC16:58
*** Leo_ has quit IRC16:58
*** davidlenwell has quit IRC16:58
*** baoli has quit IRC16:59
*** davidlenwell has joined #openstack-meeting16:59
*** jklare has quit IRC17:00
*** rderose has joined #openstack-meeting17:00
*** haomaiwa_ has quit IRC17:01
*** jklare has joined #openstack-meeting17:01
*** haomaiwa_ has joined #openstack-meeting17:01
*** vgridnev has quit IRC17:01
*** bnemec has joined #openstack-meeting17:02
*** akuznetsova has joined #openstack-meeting17:02
*** jordanP has joined #openstack-meeting17:02
mtreinish#startmeeting qa17:02
openstackMeeting started Thu Jan 21 17:02:33 2016 UTC and is due to finish in 60 minutes.  The chair is mtreinish. Information about MeetBot at http://wiki.debian.org/MeetBot.17:02
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.17:02
*** openstack changes topic to " (Meeting topic: qa)"17:02
openstackThe meeting name has been set to 'qa'17:02
jordanPhi17:02
mtreinishhi who's here today?17:02
jordanPI'll be a bit afk today17:02
dwallecko/17:02
slowrie.17:03
*** vgridnev has joined #openstack-meeting17:03
mtreinish#link https://wiki.openstack.org/wiki/Meetings/QATeamMeeting#Proposed_Agenda_for_January_21st_2016_.281700_UTC.2917:03
mtreinish^^^ today's agenda17:03
cdento/17:03
*** ygbo has quit IRC17:04
mtreinishok, lets get started17:04
mtreinish#topic QA Code Sprint17:04
*** openstack changes topic to "QA Code Sprint (Meeting topic: qa)"17:04
mtreinish#link https://wiki.openstack.org/wiki/QA/CodeSprintMitakaBoston17:04
mtreinishthis is just a reminder about the code sprint next month17:04
mtreinishif you plan to attend be sure to put your name on the registration table at the bottom of the wiki17:05
*** baoli has joined #openstack-meeting17:05
mtreinishthat's all I had on this topic, is there anything else on it?17:05
*** jdurgin1 has joined #openstack-meeting17:06
*** blogan is now known as patient-zer0-bl017:06
mtreinishok, then lets move on17:06
mtreinish#topic Specs Reviews17:06
*** openstack changes topic to "Specs Reviews (Meeting topic: qa)"17:06
*** edtubill has joined #openstack-meeting17:06
*** patient-zer0-bl0 is now known as patient-0-bl0gan17:06
mtreinish#link https://review.openstack.org/#/q/status:open+project:openstack/qa-specs,n,z17:06
mtreinishdoes anyone have any open spec reviews they'd like to discuss?17:07
*** s3wong has joined #openstack-meeting17:07
dwalleckI do. I put up the tempest run spec earlier this week - https://review.openstack.org/#/c/269934/17:07
*** coolsvap|away has quit IRC17:07
*** apoorvad has joined #openstack-meeting17:07
dwalleckI'd appreciate any comments or feedback. This is all based on what we talked about in Tokyo17:07
mtreinish#link https://review.openstack.org/#/c/269934/17:07
jlanouxo/17:08
*** cjmartinez has joined #openstack-meeting17:08
mtreinishyeah, I need to take a look at that17:09
dwalleckAlso, if there's any higher priority stuff that needs to be done, let me know. I've got a lot of open bandwidth17:09
*** thinrichs has left #openstack-meeting17:09
jordanPyeah, I haven"t read that spec either :(17:09
*** salv-orlando has joined #openstack-meeting17:10
mtreinishok, are there any other specs to discuss?17:11
*** jlwhite has joined #openstack-meeting17:11
slowriemtreinish: I updated the centralized workspaces (https://review.openstack.org/#/c/266094/2) based on your comments in the first patch set17:11
mtreinish#link https://review.openstack.org/#/c/266094/217:11
*** Kevin_Zheng has quit IRC17:12
*** gmolson has quit IRC17:12
mtreinishok, I'll have to swing back to that one too17:12
*** eharney has quit IRC17:12
*** tej has quit IRC17:13
*** nmagnezi has joined #openstack-meeting17:13
*** tej has joined #openstack-meeting17:13
*** ccarmack has quit IRC17:14
mtreinishok, lets move on17:14
mtreinish#topic Priority Items17:14
*** openstack changes topic to "Priority Items (Meeting topic: qa)"17:14
mtreinish#link https://etherpad.openstack.org/p/mitaka-qa-priorities17:14
*** ccarmack has joined #openstack-meeting17:15
mtreinishso this week is m-217:15
*** xingchao has quit IRC17:15
mtreinishand there were a couple of m-2 targetted items on the list17:15
mtreinishstarting from the top, sc68cal and the neutron devstack rewrite (or at least part of it)...17:15
*** arvinc_ has quit IRC17:15
mtreinishthere's also the service client migrations which oomichi has his name next to17:16
mtreinishwhich I think is making progress but isn't quite done yet17:16
mtreinishI'll follow up with him about that later17:17
mtreinishnext on the list is jordanP and the tempest-lib migrations17:17
mtreinishjordanP: any update on that?17:17
jordanPyeah, not really, quite frankly I have very little time now17:17
*** tej has quit IRC17:17
mtreinishok, no worries17:17
jordanPif someone would want to take over this item17:18
jordanPthat would be fine with me17:18
jordanPnot the most sexy work though17:18
*** xingchao has joined #openstack-meeting17:18
mtreinishok, I'll make a note on the etherpad, and see if someone else will take it over17:18
jordanPok17:18
dwalleckjordanP: I might be able to help you out there. Can I ping you later?17:18
jordanPit will be late now here, but tomorrow for sure17:19
jlanouxI'm on the ss validation one but I don't think it will make m-217:19
jlanoux*ssh17:19
mtreinishthe last m2 targetted item is Finalize ssh-auth bp (andreaf, jlanoux)17:19
jordanPyep, that's in the review list17:19
jordanPConsolidate SSH code (jordanP): https://review.openstack.org/#/c/264323/17:19
jordanPno17:19
mtreinish#link https://review.openstack.org/#/c/264323/17:19
jordanPmy bad17:19
jlanouxmtreinish: I have a couple of patch that needs to go in17:19
jordanPwrong review :(17:19
mtreinishheh, ok17:20
mtreinish#undo17:20
openstackRemoving item from minutes: <ircmeeting.items.Link object at 0x97bfbd0>17:20
mtreinishjordanP: do you have a link?17:20
jlanouxactually this is one of them17:20
mtreinishs/jordanP/jlanoux17:20
jlanoux#link https://review.openstack.org/#/c/264323/17:20
jlanoux#link https://review.openstack.org/#/c/259515/17:21
*** Swami has joined #openstack-meeting17:21
*** unicell has quit IRC17:21
jlanouxWhen those 2 are in, I think we can close the ssh-blueprint, if andreaf is ok17:21
jlanouxAnd I can migrate compute and remote_client in tempest_lib17:22
*** spzala has quit IRC17:22
mtreinishok, I'll take a look17:22
*** jogo has quit IRC17:22
*** spzala has joined #openstack-meeting17:22
jlanouxthanks17:22
jordanPI have a comment on patchset 6 for the file remote_client.py17:22
jordanPon 26432317:22
*** cjmartinez is now known as castulo17:23
jordanPmy point is, should the remote client, given it is passed a "server" argument17:23
jordanPshould inspect that server argument to detect and connect to a floating ip17:23
jordanP?17:23
*** spzala_ has joined #openstack-meeting17:23
jordanPor, do we want  to have an extra argument named "floatingip" for that RemoteClient ?17:24
mtreinishjordanP: I think we should just look at the server object17:24
jordanPme too17:24
mtreinishit's all in there anyway17:24
jlanouxI don't think we should17:24
mtreinishalso I think nova has an api for specifying the ip to use on a server. accessIP or soemthing like that17:24
jordanPthe thing is, on some super rare cases not exerciced in Tempest,  a server could have 2 floating IP (because it has 2 NICs)17:24
jlanouxdiscovery will be a complex mechanism to implement and it doesn't bring anyting17:24
*** jogo has joined #openstack-meeting17:25
jordanPit's super easy, we are already iterating on the ADDRESSES attribute of the server, to detect its fixed ip17:25
dwalleckmtreinish: The AccessIPv* is just a copy of the public (if you have a public network) IP adress17:25
jordanPjust do the same for the FIP17:25
jlanouxon a customer point of view, this is not realistic17:25
jlanouxjordanP: if you have multiple FIP, it is not17:25
mtreinishdwalleck: right, but it tells the user which IP to use17:25
*** leeantho has joined #openstack-meeting17:26
mtreinishwhich is the problem here17:26
jordanPjlanoux,  yeah but then in that case we can read the conf.network_for_ssh17:26
dwalleckTo me the question from a separation of concerns standpoint is if the remote client should be making that decision. It really feels like something outside the remote client should decide that17:26
jordanPjlanoux, ok, you are the owner of that patch anyway, if you don"t feel like it, I am fine17:26
*** zeih has joined #openstack-meeting17:27
*** sigmavirus24 is now known as sigmavirus24_awa17:27
jordanPthe current code does not do inspection, so no change required17:27
*** spzala has quit IRC17:27
jordanPI think it would be nice, but not mandatory for that patch to go in17:27
*** ivar-lazzaro has joined #openstack-meeting17:27
*** spzala_ has quit IRC17:28
jlanouxjordanP: ok17:28
mtreinishdwalleck: there are too many layers right now, I don't think it's so clear cut17:28
*** s3wong has quit IRC17:28
jlanouxI don't see the point for a discovery of any IP. As a user I create an IP and I want to use it.17:28
*** rtheis has quit IRC17:28
*** armax has joined #openstack-meeting17:28
*** ivar-laz_ has joined #openstack-meeting17:29
*** rtheis has joined #openstack-meeting17:29
dwalleckmtreinish: That's very true. It would be nice to re-design the process from scratch with a design in mind, but I don't know if there's an appetite for that17:29
*** tej has joined #openstack-meeting17:29
jlanouxI'm thinking of extending the scope of the remote_client, perhaps let it deal with ssh resources17:29
*** jreeves has left #openstack-meeting17:29
jlanouxso the creating and association happens in the remote and we don't need to pass 10000 arguments17:30
*** arvinc_ has joined #openstack-meeting17:30
*** arvinc_ has quit IRC17:31
jordanPjlanoux, later maybe17:31
jordanPenough layer for now :)17:31
mtreinishheh17:31
*** ivar-lazzaro has quit IRC17:31
jlanouxjordanP: of course - but it will remove layers :)17:32
mtreinishok, is there anything else on mitaka priorities?17:32
*** arvinc_ has joined #openstack-meeting17:32
mtreinishoh ttx had an openstack-health m2 goal17:32
mtreinishbut that was half a joke17:32
*** arvinc_ has quit IRC17:32
*** arvinc_ has joined #openstack-meeting17:33
*** dprince has joined #openstack-meeting17:33
*** arvinc_ has quit IRC17:33
*** rtheis has quit IRC17:33
mtreinish#topic Tempest17:33
*** openstack changes topic to "Tempest (Meeting topic: qa)"17:33
*** arvinc_ has joined #openstack-meeting17:34
mtreinishso there are quite links on the agenda for tempest17:34
*** sputnik13 has joined #openstack-meeting17:34
mtreinishjordanP: want to tackle yours first17:34
*** arvinc_ has quit IRC17:34
*** arvinc_ has joined #openstack-meeting17:35
*** fernnest_ has quit IRC17:35
jordanPyep17:35
*** arvinc_ has quit IRC17:35
jordanPso https://review.openstack.org/#/c/259859 was +A now17:35
jordanPso it's not relevant to discuss anymore17:35
mtreinishok17:35
jordanPand Consolidate SSH code (jordanP): https://review.openstack.org/#/c/264323/17:36
*** arvinc_ has joined #openstack-meeting17:36
* andreaf sneaks in17:36
mtreinishheh, didn't we just discuss that one :)17:36
*** arvinc_ has quit IRC17:36
jordanPafter discussion with jlanoux right now, he doesn"t want to do discovery of the floating IP17:36
jordanPyeah, exactly17:36
jordanPso I am good now :)17:36
*** dmorita has joined #openstack-meeting17:36
jordanPI will +2 that patch17:37
*** paul-carlton2 has quit IRC17:37
mtreinishok, that was easy :)17:37
*** e0ne has quit IRC17:37
jlanouxthanks jordanP :)17:37
mtreinishthe other link on the agenda was:17:37
mtreinish#link https://review.openstack.org/#/c/255161/17:37
mtreinishI don't know who added that one though17:37
*** safchain has quit IRC17:37
jordanPsomeone from Japan17:38
*** hemna has quit IRC17:38
jordanPi added it to the wiki17:38
jordanPbut the patch is from someone in japan17:38
jordanPso that patch seems related to tempest plugin obviously17:38
*** macsz has quit IRC17:38
jordanPit could conflict with what andreaf is doing17:38
*** esker has joined #openstack-meeting17:39
jordanPas far as I understand the 2-line patch, it should help people writting plugin, so that they could use their custom clientsManager17:39
mtreinishwell, I don't know if it conflicts with that. I don't see the harm with it17:39
mtreinishyeah, it just lets a subclass override the clientManager class a bit more easily17:40
mtreinishI mean I don't like encouraging using tempest internals externally, but I don't think we need to go out of way to make it hard17:40
mtreinishespecially since tempest-lib isnt all there yet17:40
andreafjordanP, mtreinish: ok - well it doesn't help removing the dependency from tempest17:40
*** SammyD has joined #openstack-meeting17:41
*** whenry has joined #openstack-meeting17:41
andreafjordanP, mtreinish: but I'm not specifically against it either17:41
mtreinishok, is there anything else on tempest for this week?17:42
*** stevebaker has quit IRC17:43
jordanPnot from me17:43
mtreinishok, then let's move on17:43
mtreinish#topic DevStack + Grenade17:43
*** openstack changes topic to "DevStack + Grenade (Meeting topic: qa)"17:43
mtreinishdoes anyone have anything to discuss on devstack or grenade this week?17:43
*** rtheis has joined #openstack-meeting17:43
*** _nadya_ has quit IRC17:44
mtreinishok, I guess not17:45
mtreinishlet's move on then17:45
mtreinish#topic Critical Reviews17:45
*** openstack changes topic to "Critical Reviews (Meeting topic: qa)"17:45
mtreinishDoes anyone have any reviews they'd like to get extra eyes on?17:46
*** matrohon has quit IRC17:46
mtreinishreally, no reviews this week? :)17:47
*** ccarmack has quit IRC17:47
jlanoux:) I gave mine earlier17:48
*** adiantum has joined #openstack-meeting17:48
mtreinishok, if there aren't any reviews I'll guess we'll open the floor17:48
mtreinish#topic Open Discussion17:49
*** openstack changes topic to "Open Discussion (Meeting topic: qa)"17:49
*** toscalix has quit IRC17:49
mtreinishdoes anyone have anything else they'd like to discuss17:49
mtreinishnow is the change to bring it up17:49
mtreinishs/change/chance17:49
*** paul-carlton2 has joined #openstack-meeting17:49
*** davidlenwell has quit IRC17:50
*** su_zhang has quit IRC17:50
*** egallen has quit IRC17:50
*** balajiiyer has quit IRC17:51
*** yassine has quit IRC17:51
*** xingchao has quit IRC17:51
*** emsomeoneelse has quit IRC17:52
mtreinishok, if there isn't anything else to discuss today, I guess we'll end here17:52
mtreinishthanks everyone17:52
mtreinish#endmeeting17:52
*** openstack changes topic to "other things (summary/wrap-up (Meeting topic: swift)"17:52
openstackMeeting ended Thu Jan 21 17:52:37 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)17:52
openstackMinutes:        http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-01-21-17.02.html17:52
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-01-21-17.02.txt17:52
openstackLog:            http://eavesdrop.openstack.org/meetings/qa/2016/qa.2016-01-21-17.02.log.html17:52
*** xingchao has joined #openstack-meeting17:52
*** SammyD has quit IRC17:52
*** unicell has joined #openstack-meeting17:53
*** efoley has left #openstack-meeting17:54
*** bvandenh has joined #openstack-meeting17:54
*** slowrie has left #openstack-meeting17:54
*** SumitNaiksatam has joined #openstack-meeting17:55
*** ndipanov has quit IRC17:55
*** davidlenwell has joined #openstack-meeting17:55
*** xingchao has quit IRC17:55
*** xingchao has joined #openstack-meeting17:56
*** ndipanov has joined #openstack-meeting17:56
*** fesp has joined #openstack-meeting17:56
*** xingchao_ has joined #openstack-meeting17:56
*** _nadya_ has joined #openstack-meeting17:58
*** roxanaghe has quit IRC17:59
*** marios has quit IRC17:59
*** xingchao has quit IRC18:00
*** ihrachys has quit IRC18:00
*** jlanoux has quit IRC18:00
*** haomaiwa_ has quit IRC18:01
*** haomaiwang has joined #openstack-meeting18:01
*** derekh has quit IRC18:03
*** leeantho has quit IRC18:04
*** fawadk has joined #openstack-meeting18:04
*** fawadkhaliq has quit IRC18:04
*** bvandenh has quit IRC18:07
*** aimon_ has quit IRC18:11
*** jordanP has quit IRC18:12
*** balajiiyer has joined #openstack-meeting18:12
*** ndipanov has quit IRC18:12
*** slagle has joined #openstack-meeting18:13
*** numans has joined #openstack-meeting18:16
*** pnavarro has quit IRC18:16
*** merooney has quit IRC18:17
*** ccarmack has joined #openstack-meeting18:18
*** ccarmack has left #openstack-meeting18:18
*** Leom has quit IRC18:20
*** kebray has joined #openstack-meeting18:20
*** mhickey has quit IRC18:22
*** fernnest has joined #openstack-meeting18:22
*** esker has quit IRC18:24
*** dandruta has quit IRC18:24
*** esker has joined #openstack-meeting18:25
*** jmckind has quit IRC18:25
*** harshs has joined #openstack-meeting18:25
*** ssrikant has joined #openstack-meeting18:27
*** stevebaker has joined #openstack-meeting18:28
*** merooney has joined #openstack-meeting18:28
*** timcline has quit IRC18:30
*** xingchao_ has quit IRC18:30
*** timcline has joined #openstack-meeting18:31
*** rossella_s has quit IRC18:31
*** rossella_s has joined #openstack-meeting18:31
*** alop has joined #openstack-meeting18:32
*** fesp has quit IRC18:32
*** rderose has quit IRC18:32
*** zeih has quit IRC18:33
*** otter768 has joined #openstack-meeting18:33
*** gyee has quit IRC18:34
*** dmorita has quit IRC18:37
*** asifh has joined #openstack-meeting18:37
*** otter768 has quit IRC18:38
*** dtroyer has quit IRC18:38
*** jckasper has quit IRC18:38
*** electrofelix has quit IRC18:39
*** jckasper has joined #openstack-meeting18:39
*** penick has joined #openstack-meeting18:39
*** dtroyer has joined #openstack-meeting18:41
*** fawadk has quit IRC18:43
*** su_zhang has joined #openstack-meeting18:44
*** aimon has joined #openstack-meeting18:44
*** asifh has quit IRC18:44
*** dmorita has joined #openstack-meeting18:45
*** vijendar has joined #openstack-meeting18:48
*** rtheis has quit IRC18:49
*** vijendar2 has joined #openstack-meeting18:49
*** rtheis has joined #openstack-meeting18:50
*** lhcheng_ has joined #openstack-meeting18:50
*** mrmartin has joined #openstack-meeting18:51
*** vijendar1 has quit IRC18:52
*** vijendar has quit IRC18:53
*** rtheis has quit IRC18:54
*** idegtiarov_ has quit IRC18:54
*** s3wong has joined #openstack-meeting18:55
*** hemna has joined #openstack-meeting18:55
*** e0ne has joined #openstack-meeting18:56
*** pvaneck has joined #openstack-meeting18:57
*** angdraug has quit IRC18:57
*** numans has quit IRC18:58
*** leeantho has joined #openstack-meeting18:59
*** nmagnezi has quit IRC18:59
*** haomaiwang has quit IRC19:01
*** haomaiwang has joined #openstack-meeting19:01
*** novas0x2a|laptop has joined #openstack-meeting19:01
*** zeih has joined #openstack-meeting19:01
*** tej has quit IRC19:01
stevemardtroyer: poke19:01
*** sigmavirus24_awa is now known as sigmavirus2419:02
*** tej has joined #openstack-meeting19:02
*** xinwu has joined #openstack-meeting19:02
*** tej has quit IRC19:02
*** tej has joined #openstack-meeting19:02
dtroyerow19:02
stevemarowwww19:03
stevemarmeeting?19:03
dtroyer#startmeeting openstackclient19:03
openstackMeeting started Thu Jan 21 19:03:04 2016 UTC and is due to finish in 60 minutes.  The chair is dtroyer. Information about MeetBot at http://wiki.debian.org/MeetBot.19:03
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.19:03
*** openstack changes topic to " (Meeting topic: openstackclient)"19:03
openstackThe meeting name has been set to 'openstackclient'19:03
stevemarhehe19:03
*** ivar-laz_ has quit IRC19:03
*** jmckind has joined #openstack-meeting19:04
stevemardtroyer: i am swamped with keystoney mitaka-2 stuff19:04
dtroyercourtesy ping: dhellmann, terrylhowe, lhcheng, dstanek, MeganR19:04
stevemardtroyer: you reviewed a whole bunch of stuff last week19:04
*** zeih has quit IRC19:04
dtroyerstevemar: sure.  I really don't have much new anyway19:04
* dhellmann sits in the back of the room to listen19:04
dtroyerI think getting to the next release point WRT network commands is still the priority19:05
dtroyeris terry out this week?  I haven't seen him in IRC for a while19:06
*** ijw has joined #openstack-meeting19:07
*** njohnston has quit IRC19:07
*** Sukhdev has joined #openstack-meeting19:07
stevemardtroyer: probably, haven't seen much of him either19:07
*** sombrafam has joined #openstack-meeting19:07
dtroyerthis may be quick…  I'll wait a few more minutes then call it if no one else shows19:07
*** njohnston has joined #openstack-meeting19:07
*** cdent has left #openstack-meeting19:08
stevemardtroyer: terry *just* reviewed a patch19:09
*** rtheis has joined #openstack-meeting19:09
*** egallen has joined #openstack-meeting19:09
stevemar:)19:09
lhcheng_o/19:09
rtheissorry, I'm late19:09
rtheiso/19:09
stevemarwelcome welcome19:10
dtroyerooooh, youse guys were close… I almost called it a day ;)19:10
stevemarsit in the front row19:10
*** FallenPegasus has joined #openstack-meeting19:10
*** jckasper has quit IRC19:11
dtroyerok, well we've got a few here, this still may be short19:11
*** jhenner has joined #openstack-meeting19:11
* dstanek is lurking19:11
*** eharney has joined #openstack-meeting19:11
*** terrylhowe has joined #openstack-meeting19:11
*** dwalleck has left #openstack-meeting19:11
*** aimon has quit IRC19:11
*** jckasper has joined #openstack-meeting19:11
dtroyeraha!  another keystone dev ;)  this is good as the one thing I wanted to ask about is connected to KSC19:11
dtroyer#topic bugs19:12
*** openstack changes topic to "bugs (Meeting topic: openstackclient)"19:12
*** terrylhowe has joined #openstack-meeting19:12
*** yamahata has quit IRC19:12
dtroyergoing through some older bugs i came across https://bugs.launchpad.net/python-openstackclient/+bug/139111619:12
openstackLaunchpad bug 1391116 in python-openstackclient "password prompts should check for empty string" [Medium,Confirmed] - Assigned to Tang Chen (tangchen)19:12
stevemardtroyer: we're everywhere19:12
*** iyamahat has quit IRC19:12
stevemardtroyer: i asked tangchen to open that bug19:13
dtroyerI'm curious why thedata validation shouldn;t be in the KSC python lib rather than in OSC19:13
stevemarthe issue is worse when shown in OSC19:13
*** fesp has joined #openstack-meeting19:13
stevemarso in OSC and KSC, on a user create and update call, you can set the password to be ""19:13
dtroyerright.  is that valid?19:14
stevemardtroyer: we have no requirements about passwords19:14
dtroyerok, so it is valid19:14
dtroyerbut apparently it is unusable?19:14
stevemarthe issue crops up on authentication19:14
dtroyerright.  should it work with an empty password?19:14
*** MeganR has joined #openstack-meeting19:15
lhcheng_fwiw, we made password mandatory field in horizon, it can't be empty.19:15
dtroyergood to know19:15
stevemarso i *think* this works if you do a straight REST call to keystone and authenticate19:15
stevemarand i think it works with KSC using auth plugins19:15
stevemarbut if you set OS_PASSWORD="" for OSC, it fails19:15
dtroyeris that the real bug then?19:16
stevemari might be mis-remembering ...19:16
*** egallen has quit IRC19:16
*** rbak_ has joined #openstack-meeting19:16
stevemari'm not sure, i asked him to log the bug so we could chat about it here19:16
dtroyerI think I have always assumed that empty password was not valid19:16
*** ociuhandu has quit IRC19:16
stevemarso whats the harm in preventing an empty password for create and update?19:16
*** ppetit has quit IRC19:17
*** ijw_ has joined #openstack-meeting19:17
dtroyerI don't know there is any other than really bad practice19:17
dtroyeror we could take the Horizon position and decide it is not allowd19:17
stevemarcould19:17
dtroyerit sounds as if KSC has stated it will not prevent empty passwords19:17
dtroyeris stating19:18
*** elo has joined #openstack-meeting19:18
*** alop has quit IRC19:19
dtroyerok, so I think I understand now19:19
*** alop has joined #openstack-meeting19:19
dtroyerHorizon has decided to not accept empty passwords19:19
*** jckasper has quit IRC19:19
*** terrylhowe_ has joined #openstack-meeting19:19
dtroyerKeystone and KSC allow them and are not going to prevent them19:19
stevemarthat sums it up19:19
*** rbak has quit IRC19:20
*** jckasper has joined #openstack-meeting19:20
dtroyerso it is up to OSC to decide what to do: fix OS_PASSWORD="" or disallow empty passwords19:20
*** ijw has quit IRC19:20
dtroyeropinions anyone?19:20
dtroyerI can argue both sides19:20
lhcheng_one of OSC's goal is to improve usability, sounds like making password required achieve that goal?19:21
*** terrylhowe has quit IRC19:21
*** terrylhowe_ is now known as terrylhowe19:21
*** idegtiarov_ has joined #openstack-meeting19:21
lhcheng_allowing empty password would just cause headache for users.19:21
clarkbseems like that should be decided by the api19:21
MeganRis there a use case for allowing empty paswords?19:21
dtroyerthe danger there is say another app sets an empty password, we could be getting in the way of that being usable19:21
clarkbif empty passwords are a problem fix it in the api19:21
dtroyerclarkb: that's my thinking19:21
lhcheng_dtroyer: good point19:22
dtroyerso it sounds like we should fix OSC to accept empty passwords for auth?19:23
stevemarcause right now, i can do `os user create bob` and it works for v3 https://github.com/openstack/python-openstackclient/blob/master/openstackclient/identity/v3/user.py19:23
stevemarbut bob will never be able to authenticate now :(19:24
*** mjturek1 has left #openstack-meeting19:24
*** sombrafam has quit IRC19:24
*** jdurgin1 has quit IRC19:24
dtroyerright.  ok, I'll clarify the bug so I don't forget this conversation…19:25
lhcheng_a use case I could think of where empty password would happen is during a enterprise user account creation workflow, the account could be created by an admin with empty password. then on user logging on first time (passing a nonce), they are prompted for the password.19:25
dtroyereven though this is different than Horizon, it is more permissive19:25
dtroyerlhcheng_: good example19:25
lhcheng_but that's too custom of a use case.. something we did for the public cloud.19:26
*** aimon has joined #openstack-meeting19:26
MeganR@lhcheng: thank you19:26
*** jckasper has quit IRC19:27
*** cbouch has joined #openstack-meeting19:27
*** jckasper has joined #openstack-meeting19:27
dtroyerbug updated19:27
dtroyerany other bugs anyone wants to talk about?19:28
*** sombrafam has joined #openstack-meeting19:28
*** SumitNaiksatam has quit IRC19:28
stevemardtroyer: there was one about trusts...19:28
stevemardtroyer: i filed it last week: https://bugs.launchpad.net/python-openstackclient/+bug/153519019:29
openstackLaunchpad bug 1535190 in python-openstackclient "cannot use trust based authentication with osc" [Undecided,New]19:29
dtroyeryes19:29
*** pradk has quit IRC19:29
stevemari think it's partly related to https://bugs.launchpad.net/python-openstackclient/+bug/153336919:29
openstackLaunchpad bug 1533369 in python-openstackclient "moving authentication from keystoneclient to keystoneauth" [High,Confirmed] - Assigned to Navid Pustchi (npustchi)19:29
dtroyerdo you have an idea of what needs to be done there?19:29
stevemardtroyer: i think it comes down to untangling the osc-ksa-occ mess19:30
*** esp has left #openstack-meeting19:30
dtroyerI'm regretting occ now, fwiw19:30
stevemardtroyer: there is at least one little bit we can fix, that's to allow TRUST_ID as a scope, in addition to PROJECT and DOMAIN19:31
*** kebray has quit IRC19:31
stevemarafter that, i'm not sure whats going on, it seems like the scope isn't being set, so i get an empty catalog19:31
*** jckasper has quit IRC19:32
dtroyerdoes that come from the env/CLI/clouds.yaml?19:32
stevemardtroyer: the trust id?19:33
dtroyeryes19:33
stevemardtroyer: think of it as an alternate to project_id19:33
stevemarso it'll come from CLI/env19:33
*** ivar-lazzaro has joined #openstack-meeting19:33
dtroyerok19:33
*** jckasper has joined #openstack-meeting19:34
*** ivar-lazzaro has quit IRC19:34
*** spzala has joined #openstack-meeting19:35
stevemardtroyer: just wanted to bring it to the groups attention, i don't know when i can work on it19:35
*** ivar-lazzaro has joined #openstack-meeting19:35
*** xinwu has quit IRC19:35
dtroyernp, it helps me understand how we handle trusts19:36
dtroyerany other bugs?19:36
dtroyer#topic reviews19:37
*** openstack changes topic to "reviews (Meeting topic: openstackclient)"19:37
*** liamji has quit IRC19:37
*** sombrafam has quit IRC19:37
dtroyerhow about reviews?19:37
stevemari've been neglecting reviews19:37
stevemardid the logging one land?19:37
dtroyerI think I said something and Akihiro abandoned them19:38
*** liamji has joined #openstack-meeting19:38
lhcheng_Akihiro have a new patch up, I haven't got the chance to browse through it19:38
dtroyerwell, the three bulk update ones19:38
*** jmckind has quit IRC19:39
*** iyamahat has joined #openstack-meeting19:39
stevemarabandoned?19:39
stevemarhmm19:39
lhcheng_https://review.openstack.org/#/c/269613/ this is the new one19:39
*** jmckind has joined #openstack-meeting19:39
*** vijendar2 has quit IRC19:40
dtroyeryeah, I haven't looked at it yet either19:40
*** Sukhdev has quit IRC19:40
dtroyerI may jump on https://review.openstack.org/84782 to get it in19:41
*** jmckind_ has joined #openstack-meeting19:41
*** jmckind_ has quit IRC19:41
stevemarwow thats an early number19:41
*** yamahata has joined #openstack-meeting19:41
*** sombrafam has joined #openstack-meeting19:41
dtroyerI think it was from is original set of commands19:41
stevemardtroyer: do it up19:42
*** salv-orlando has quit IRC19:42
dtroyerit looks like https://review.openstack.org/258519 got stuck last week, although I'm not sure we need to hold up the release for it fi it isn't ready19:43
rtheisyeah, that is behind https://review.openstack.org/#/c/257543/19:44
*** jmckind has quit IRC19:44
dtroyerah, ok19:44
rtheisfor the refactor of existing network commands over to neutron19:44
*** mrmartin has quit IRC19:45
* dtroyer re-reads the last comment in 25754319:45
*** terrylhowe has quit IRC19:46
dtroyerFWIW we have historically erred on the side of simplicity and duplicated code19:46
*** Sukhdev has joined #openstack-meeting19:46
*** s3wong has quit IRC19:46
rtheisthanks, good to know19:46
dtroyerI'd like to do a release next week if possible, do we need to wait for this?19:47
rtheisI don't think we do19:47
dtroyerok19:47
dtroyerany other reviews?19:48
*** Ramanjaneya has quit IRC19:49
*** e0ne has quit IRC19:49
rtheisI have a couple on moving availability zones to common: https://review.openstack.org/#/c/267598/ and https://review.openstack.org/#/c/267061/19:50
dtroyerone more: https://review.openstack.org/#/c/259595/  stevemar, you had previously +2 it but a couple of changes were made that I don't want to just push it in...19:50
*** Leo_ has joined #openstack-meeting19:51
stevemarhmm?19:52
stevemaroh, i wanted to test it out19:52
dtroyerrtheis: right.  I'll give them a look this afternoon, I don't see anything worrisome at a quick glance19:52
stevemarone reviewer had a good point19:52
rtheisdtroyer: thank you19:52
stevemardtroyer: you fix that thing gongysh mentioned?19:52
stevemarwhere he got the error even after using --project19:52
*** Leom has joined #openstack-meeting19:53
dtroyeryes, I believe I did19:53
stevemarawesome19:53
stevemari see it now19:53
*** balajiiyer has quit IRC19:53
dtroyerI duplicated it and fixed it for me, but my setup isn't the most representative19:53
*** novas0x2a|laptop has quit IRC19:54
stevemardtroyer: too late now, i +W'ed!19:54
*** novas0x2a|laptop has joined #openstack-meeting19:54
dtroyer:)19:54
dtroyerany others?19:54
*** balajiiyer has joined #openstack-meeting19:54
*** jckasper has quit IRC19:55
*** Leo_ has quit IRC19:55
*** jckasper has joined #openstack-meeting19:55
dtroyer#topic open discussion19:56
*** openstack changes topic to "open discussion (Meeting topic: openstackclient)"19:56
dtroyer5 minutes, what is on your mind?19:56
*** ayoung has quit IRC19:56
*** merooney has quit IRC19:56
lhcheng_we got a new customer, searchlight is developing an osc plugin19:57
*** paul-carlton2 has quit IRC19:57
*** SumitNaiksatam has joined #openstack-meeting19:57
dtroyercool19:57
lhcheng_dtroyer: do we have a doc/ guideline for resource namespacing?19:57
*** zhhuabj has quit IRC19:58
dtroyerI recall writing a bit on that, I think it's in the docs19:58
*** vgridnev has quit IRC19:58
*** amotoki has quit IRC19:58
*** amotoki has joined #openstack-meeting19:58
lhcheng_they had dash on their resource name, I asked them to fix that.  I can't find a reference where we don't recommend that.19:58
dtroyernow I am curious where I put that stuff19:59
dtroyerI don't see it in the repo docs19:59
*** jckasper_ has joined #openstack-meeting20:00
stevemardtroyer: in the ether20:00
*** jckasper_ has quit IRC20:00
stevemardtroyer: -> #endmeeting20:00
*** jckasper_ has joined #openstack-meeting20:00
dtroyer#endmeeting20:00
*** openstack changes topic to "other things (summary/wrap-up (Meeting topic: swift)"20:00
openstackMeeting ended Thu Jan 21 20:00:39 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)20:00
openstackMinutes:        http://eavesdrop.openstack.org/meetings/openstackclient/2016/openstackclient.2016-01-21-19.03.html20:00
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/openstackclient/2016/openstackclient.2016-01-21-19.03.txt20:00
openstackLog:            http://eavesdrop.openstack.org/meetings/openstackclient/2016/openstackclient.2016-01-21-19.03.log.html20:00
* dtroyer obeys good advice20:00
dtroyerthanks everyone20:00
lhcheng_thanks dtroyer20:00
*** jckasper has quit IRC20:00
*** haomaiwang has quit IRC20:01
*** MeganR has quit IRC20:01
*** haomaiwang has joined #openstack-meeting20:01
*** comay has quit IRC20:02
rtheisthanks20:02
*** ijw has joined #openstack-meeting20:03
*** fesp has quit IRC20:04
*** iben_ has quit IRC20:04
*** merooney has joined #openstack-meeting20:06
*** kebray has joined #openstack-meeting20:07
*** ijw_ has quit IRC20:07
*** adiantum has quit IRC20:08
*** aysyd has quit IRC20:09
*** elo has quit IRC20:09
*** sdake_ has joined #openstack-meeting20:10
*** liamji has quit IRC20:10
*** xinwu has joined #openstack-meeting20:10
*** liamji has joined #openstack-meeting20:11
*** esker has quit IRC20:11
*** zqfan has quit IRC20:11
*** markvoelker has quit IRC20:11
*** rfolco has quit IRC20:11
*** sdake has quit IRC20:12
*** vijendar has joined #openstack-meeting20:12
*** rtheis has quit IRC20:13
*** cschwede has quit IRC20:14
*** ivar-laz_ has joined #openstack-meeting20:16
*** rtheis_ has joined #openstack-meeting20:17
*** cschwede has joined #openstack-meeting20:18
*** rtheis__ has joined #openstack-meeting20:18
*** su_zhang has quit IRC20:18
*** ivar-lazzaro has quit IRC20:20
*** rtheis has joined #openstack-meeting20:20
*** rtheis has quit IRC20:20
*** rtheis has joined #openstack-meeting20:20
*** amotoki has quit IRC20:21
*** rtheis_ has quit IRC20:21
*** rtheis__ has quit IRC20:22
*** dimtruck is now known as zz_dimtruck20:24
*** zhurong has joined #openstack-meeting20:25
*** vgridnev has joined #openstack-meeting20:26
*** dmorita has quit IRC20:28
*** krtaylor has quit IRC20:31
*** piet has quit IRC20:31
*** markvoelker has joined #openstack-meeting20:31
*** kebray has quit IRC20:32
*** aeng has joined #openstack-meeting20:33
*** timcline_ has joined #openstack-meeting20:34
*** otter768 has joined #openstack-meeting20:34
*** hashar has joined #openstack-meeting20:34
*** zz_dimtruck is now known as dimtruck20:35
*** ivar-laz_ has quit IRC20:36
*** ivar-lazzaro has joined #openstack-meeting20:37
*** ivar-lazzaro has quit IRC20:37
*** timcline has quit IRC20:37
*** vijendar has quit IRC20:37
*** ivar-lazzaro has joined #openstack-meeting20:38
*** AmirBaleghi11112 has joined #openstack-meeting20:38
*** otter768 has quit IRC20:39
*** markus_z has joined #openstack-meeting20:40
*** _nadya_ has quit IRC20:40
*** vijendar has joined #openstack-meeting20:41
*** jckasper_ has quit IRC20:41
*** jckasper has joined #openstack-meeting20:41
*** jckasper has quit IRC20:42
*** jckasper has joined #openstack-meeting20:42
*** ivar-lazzaro has quit IRC20:42
*** mhickey has joined #openstack-meeting20:43
*** comay has joined #openstack-meeting20:43
*** cbouch has quit IRC20:44
*** matrohon has joined #openstack-meeting20:45
*** ijw_ has joined #openstack-meeting20:45
*** yarkot has joined #openstack-meeting20:45
*** neiljerram has quit IRC20:46
*** Sukhdev has quit IRC20:46
*** baoli has quit IRC20:47
*** Daisy has joined #openstack-meeting20:47
*** cdent has joined #openstack-meeting20:48
*** mhickey has quit IRC20:48
*** ijw has quit IRC20:48
*** baoli has joined #openstack-meeting20:49
*** Sukhdev has joined #openstack-meeting20:50
*** Daisy has quit IRC20:51
*** yamahata has quit IRC20:52
*** banix has quit IRC20:54
*** lblanchard has quit IRC20:54
*** rajinir has quit IRC20:55
*** Vek has joined #openstack-meeting20:55
*** JRobinson__ has joined #openstack-meeting20:55
*** piet has joined #openstack-meeting20:55
*** zhurong has quit IRC20:56
*** dmorita has joined #openstack-meeting20:56
*** gyee has joined #openstack-meeting20:57
*** rlrossit_ has joined #openstack-meeting20:59
*** ljxiash has joined #openstack-meeting20:59
*** dslev has quit IRC21:00
*** haomaiwang has quit IRC21:01
*** haomaiwang has joined #openstack-meeting21:01
*** tej has quit IRC21:01
*** markus_z has quit IRC21:02
*** tej has joined #openstack-meeting21:02
*** markus_z has joined #openstack-meeting21:02
*** mriedem has joined #openstack-meeting21:02
*** gjayavelu has joined #openstack-meeting21:03
*** Sukhdev has quit IRC21:03
*** mgoddard_ has joined #openstack-meeting21:03
*** amrith is now known as _amrith_21:04
*** ljxiash has quit IRC21:04
*** ctrath has joined #openstack-meeting21:04
*** takashin has joined #openstack-meeting21:04
ctrathnova mtg?21:04
*** markus_z has quit IRC21:04
mriedemi could run it21:05
mriedem#startmeeting nova21:05
openstackMeeting started Thu Jan 21 21:05:17 2016 UTC and is due to finish in 60 minutes.  The chair is mriedem. Information about MeetBot at http://wiki.debian.org/MeetBot.21:05
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.21:05
*** openstack changes topic to " (Meeting topic: nova)"21:05
openstackThe meeting name has been set to 'nova'21:05
*** markus_z has joined #openstack-meeting21:05
ctratho/21:05
edleafe\o21:05
*** MaxPC has quit IRC21:05
* Vek waves21:05
alaskio/21:05
cdento/21:05
markus_zo/21:05
thomasemo/!21:05
rlrossit_o/21:05
takashino/21:05
scottdaHi21:05
*** ccarmack has joined #openstack-meeting21:05
melwitthow do you like it at o/21:05
jlvillalo/21:05
jrollohai21:06
mriedemso we're winging it today21:06
*** yamahata has joined #openstack-meeting21:06
mriedem#link agenda https://wiki.openstack.org/wiki/Meetings/Nova21:06
*** tej has quit IRC21:06
mriedem#topic release status21:06
*** openstack changes topic to "release status (Meeting topic: nova)"21:06
mriedemJan 21: Nova non-priority feature freeze21:06
mriedemas most people know21:06
claudiubo/21:06
mriedemtoday is the day to get non-priority BPs in21:06
*** erlon has quit IRC21:06
mriedemi was told this morning that anything that has 2 +2s on it will still get in despite the gate backup21:06
mriedemwhich will probably last over the weekend21:07
mriedemfor the rest, i'm assuming there will be an exception process/period21:07
mriedemJan 19-21: mitaka-221:07
jaypipeso/21:07
mriedemi'm not sure if m-2 happened yet21:07
mriedemwe were waiting on some fixes to merge21:07
mriedemin here https://etherpad.openstack.org/p/mitaka-nova-priorities-tracking21:07
mriedem#link mitaka priorities tracking https://etherpad.openstack.org/p/mitaka-nova-priorities-tracking21:07
mriedem1 of 3 in that list are merged21:08
mriedemone is approved21:08
*** merooney has quit IRC21:08
mriedemthe other is not https://review.openstack.org/#/c/265601/21:08
mriedemoh wait yeah it is21:08
*** tjones has joined #openstack-meeting21:08
mriedemso i guess m-2 will wait until those are all merged, so probably next week21:09
mriedemquestions about any of that?21:09
mriedem#topic regular reminders21:09
*** openstack changes topic to "regular reminders (Meeting topic: nova)"21:09
mriedemhttps://etherpad.openstack.org/p/mitaka-nova-priorities-tracking21:09
mriedemalready posted that once21:09
*** dmorita has quit IRC21:10
mriedemso for the rest of the release it's going to be focusing on getting the priorities done (as much as possible) and bug fixing/stabilization21:10
mriedem#topic bugs21:10
*** openstack changes topic to "bugs (Meeting topic: nova)"21:10
mriedemgate status....21:10
mriedemso, it's bad21:10
thomasem:(21:10
mriedemthe grenade multinode job was made non-voting21:10
*** dimtruck is now known as zz_dimtruck21:11
edleafe"How bad is it?21:11
mriedemwhich should help, but there was a gate reset so everything was re-queued21:11
* cdent gently slaps edleafe 21:11
mriedemhence 30+ hour gate times21:11
*** salv-orlando has joined #openstack-meeting21:11
anteayawell that and pip21:11
anteayastill waiting on travis for release of virtualenv 14.0.121:12
mriedemyeah, that was a few days ago though21:12
mriedemone of many disasters this week21:12
*** jckasper has quit IRC21:12
mriedemanyway, that's what i know of at least so far, nothing new beyond that21:12
*** dmorita has joined #openstack-meeting21:12
mriedem#topic 3rd party ci status21:12
*** openstack changes topic to "3rd party ci status (Meeting topic: nova)"21:12
*** jckasper has joined #openstack-meeting21:12
*** lhcheng_ has left #openstack-meeting21:12
mriedemi guess 2 things here21:12
*** matrohon has quit IRC21:13
mriedem1. vmware nsx ci was taking 3.5+ days to report on changes21:13
mriedemso something snuck in which broke spawn for vcenter, which is not good21:13
mriedemi've added that patch to the m-2 list21:13
mriedemhttps://review.openstack.org/#/c/270867/21:13
mriedemanyway, i'm hoping tjones and the vmware people can figure out why it's taking nearly 4 days for a reply21:13
mriedem2. hyper-v ci was failing a lot this week21:14
tjonesyes we are looking at it.  trying to add more resources to it21:14
mriedemclaudiub: do you know anything about the hyper-v ci status?21:14
*** jlwhite has quit IRC21:14
mriedemtaking that as a no21:14
*** nelsnels_ has quit IRC21:14
claudiubmriedem: hello, yeah, I am investigating it. I've fixed quite a few of them21:14
mriedemanyway, it's not gating so it's not blocking anything, just fyi21:14
mriedemclaudiub: oh hi21:14
mriedemclaudiub: anything you want to share or just 'we're working on it?'21:15
claudiubmriedem: there are still a couple of them, plus, there are some neutron related issues that we have to deal with21:15
*** absubram has quit IRC21:15
mriedemok, i guess let us know if there is anything needed on the nova side21:15
claudiubmriedem: plus, there seems to be some tests that are always failing due to some weird circumstances.21:15
claudiubmriedem: yeah, there's a mini-patch that would really help me on fixing the hyper-v ci21:16
* claudiub fetching link21:16
*** matrohon has joined #openstack-meeting21:16
claudiubthis: https://review.openstack.org/#/c/265239/21:16
claudiubbasically, it keeps the original exception's trace21:17
*** jckasper has quit IRC21:17
mriedem#note please help review https://review.openstack.org/#/c/265239/21:17
*** thangp has left #openstack-meeting21:17
* mriedem assumes that is a valid meeting tag21:17
*** neelashah has quit IRC21:17
mriedem#help review https://review.openstack.org/#/c/265239/21:17
anteayaI think #info is21:17
anteayaI don't know about #note21:17
mriedemhelp is too21:17
claudiubotherwise, the original trace is lost, losing valuable debugging information.21:17
mriedemclaudiub: ok, i'll review after the meeting, it's small21:18
mriedemshouldn't be a problem21:18
*** spzala has quit IRC21:18
mriedemmoving on21:18
mriedem#topic critical bugs21:18
*** openstack changes topic to "critical bugs (Meeting topic: nova)"21:18
mriedemall i know of is https://bugs.launchpad.net/nova/+bug/153671821:18
openstackLaunchpad bug 1536718 in OpenStack Compute (nova) "VMware: unable to boot an instance" [High,In progress] - Assigned to Gary Kotton (garyk)21:18
*** yarkot has quit IRC21:18
mriedemwhich the change is approved21:18
mriedemanyone else have any critical bugs?21:18
markus_zthe reno one is also done?21:18
mriedemmarkus_z: link?21:18
*** spzala has joined #openstack-meeting21:18
markus_zmriedem, https://bugs.launchpad.net/nova/+bug/153461321:18
openstackLaunchpad bug 1534613 in OpenStack Compute (nova) "warnings in stable/liberty release notes are breaking releasenotes job in master" [Critical,In progress] - Assigned to Matt Riedemann (mriedem)21:18
mriedemmarkus_z: that was fixed earlier in the week21:19
*** annemccormick has quit IRC21:19
mriedemdhellmann graciously held my hand through that one21:19
markus_zok, cool, it wasn't totally clear to me21:19
mriedem#info dhellmann is the man21:19
mriedemanteaya: ^ there21:19
anteaya:)21:19
*** dslev has joined #openstack-meeting21:19
mriedemmarkus_z: yeah https://review.openstack.org/#/c/268669/ closes it21:19
anteayayes #help and #info are commands, #note is not21:19
*** jlwhite has joined #openstack-meeting21:20
edleafe#note '#note' is not a command21:20
markus_zack21:20
mriedem#topic bug reminders21:20
*** openstack changes topic to "bug reminders (Meeting topic: nova)"21:20
mriedemvolunteers for 1 week of bug skimming duty? Weekly_bug_skimming_duty21:20
anteayaand dhellman is the man21:20
*** cschulz has quit IRC21:20
markus_z#link https://wiki.openstack.org/wiki/Nova/BugTriage#Weekly_bug_skimming_duty21:21
mriedemwe need a bug skimmer for next week if anyone wants to volunteer21:21
mriedemdoesn't have to happen here21:21
markus_zyeah, there is a ML post too21:21
mriedemNova bugs team IRC meeting will start at February the 9th http://lists.openstack.org/pipermail/openstack-dev/2016-January/084543.html21:21
mriedem#info Nova bugs team IRC meeting will start at February the 9th http://lists.openstack.org/pipermail/openstack-dev/2016-January/084543.html21:21
markus_zjust as a heads up21:21
mriedem#topic stable branch status21:21
*** openstack changes topic to "stable branch status (Meeting topic: nova)"21:21
*** jhenner has quit IRC21:22
mriedemwe released liberty 12.0.1 earlier in the week21:22
*** nelsnelson has joined #openstack-meeting21:22
mriedemto much fanfair21:22
*** spzala_ has joined #openstack-meeting21:22
*** browne has joined #openstack-meeting21:22
mriedemalso, tonyb is now nova stable core, so everyone can bug him now21:22
anteayayay tonyb21:22
markus_zhooray for tonyb :)21:22
jaypipesif we can understand his funny words.21:22
claudiubcongrats!21:22
Vekheh21:23
mriedemstable/kilo will release soonish, i'm told21:23
jrollyou don't need to understand his words to ping him incessantly :)21:23
mriedemDaviey is running the stable/kilo release21:23
*** matrohon has quit IRC21:23
*** jlwhite has quit IRC21:23
*** jlwhite has joined #openstack-meeting21:23
mriedemonce stable/kilo is released, we'll need to scrub through https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/kilo,n,z and filter out anything that's not a security or critical bug fix21:23
mrdatonyb: does sound funny, even to Australians21:23
*** vladikr has joined #openstack-meeting21:24
Vekhaha :)21:24
*** spzala_ has quit IRC21:24
*** spzala_ has joined #openstack-meeting21:24
mriedem#topic stuck reviews21:24
*** openstack changes topic to "stuck reviews (Meeting topic: nova)"21:24
mriedemthere was nothing on the agenda21:24
mriedemso i take it we're all in agreement about all things21:24
mriedemexcept cinder multiattach, which we'll discuss at the midcycle21:24
*** esker has joined #openstack-meeting21:24
*** spzala has quit IRC21:24
mriedemanyone else for stuck reviews?21:24
vladikrmriedem, I have a libosinfo series : https://review.openstack.org/#/q/topic:bp/libvirt-hardware-policy-from-libosinfo21:25
vladikrmriedem, it has danpbs +221:25
mriedemvladikr: stuck does not mean not getting reviewed21:25
vladikrok :)21:25
mriedemso please don't solicit for reviews here21:25
VekI've sent a couple of novaclient reviews over to the -dev list, but I haven't seen anyone respond to those emails...21:25
thomasemmriedem: Sorry for my ignorance... how would you define a stuck review?21:25
mriedemthomasem: the same way the meeting agenda does21:25
mriedem"Please note "stuck review" means a review where there is some disagreement that needs resolving. Its not for reviews that just haven't had attention, except for exceptional cases. Where you see "?" feel free to just edit the wiki and add your item."21:25
Vekthomasem: a review where two reviewers are pulling in opposite directions, I think...21:26
thomasemOh, crud. Sorry. Didn't notice that on the page. :(21:26
mriedem:)21:26
mriedemwalked right into that trap21:26
*** spzala_ has quit IRC21:26
thomasemOkay, yeah, not having that problem with my review.21:26
thomasemLOL right21:26
thomasemWell, fyi for anyone else who didn't catch it so they don't look stupid like me ^^21:26
mriedemvladikr: ok, i guess you still technically have the rest of the day on those for non-priority bp feature freeze21:26
*** baoli has quit IRC21:27
vladikrmriedem, ok21:27
mriedem#topic open discussion21:27
*** openstack changes topic to "open discussion (Meeting topic: nova)"21:27
mriedemmidcycle details21:27
mriedem#link midcycle wiki https://wiki.openstack.org/wiki/Sprints/NovaMitakaSprint21:28
mriedem#link midcycle topics https://etherpad.openstack.org/p/mitaka-nova-midcycle21:28
mriedemif you have topics for the midcycle ^ is where they go21:28
*** mbound has quit IRC21:28
mriedemi think wed we have some time with the cinder midcycle21:28
mriedemover hangout21:28
mriedemwed afternoon in bristol, wed morning in rtp21:28
mriedemit should be fun21:28
mriedemanything else about the midcycle?21:29
scottdamriedem: yup, that's the plan21:29
ildikov+121:29
anteayaneutron items seem to be in place21:29
mriedemi'm going to skip the TC review for containers in the compute mission that was in the agenda21:29
*** baoli has joined #openstack-meeting21:29
mriedem(thomasem) Libvirt/LXC experimental gate test progress21:29
mriedem^ is old too i think21:29
edleafeany chance of listening in for those of us who can't make it to the UK?21:29
*** zz_dimtruck is now known as dimtruck21:29
thomasemSo, yes21:29
mriedemedleafe: maybe?21:30
mriedemprobably21:30
mriedemedleafe: talk to PaulMurray21:30
thomasemGot a bug filed upstream. Found it's an issue with the kernel being used in gate21:30
edleafemriedem: will do21:30
mriedemthomasem: nice21:30
thomasemthe newest Trusty kernel has issues with Libvirt's virDomainShutdown21:30
*** sombrafam has quit IRC21:30
mriedemand releasing things?21:30
thomasemWhile upstream 3.13.x does not21:30
*** jckasper has joined #openstack-meeting21:30
anteayaI think .58 was what you said worked for you21:31
mriedemthomasem: ok, so that probably affects all tests in the job since they rely on instances to be deleted21:31
thomasemSo, we have this patch https://review.openstack.org/#/c/267724/7 up to skip those tests while the bug is being worked. And here's the bug: https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/153628021:31
openstackLaunchpad bug 1536280 in linux (Ubuntu) "domain shutdown fails for libvirt/lxc" [Undecided,Confirmed]21:31
anteayawhere as we have .76 everywhere do to last tuesday's cve21:31
thomasemmriedem: It's only with Libvirt/LXC21:31
mriedemthomasem: yeah, but if you can't delete an instance you eventually go over quota21:31
mriedemor is this just stop?21:31
thomasemIt's only the way libvirt/LXC does the shutdown operation and how that interacts with the kernel that appears to be an issue.21:31
thomasemmriedem: just stop21:31
thomasemyou can still delete it21:31
*** jckasper has quit IRC21:32
*** sombrafam has joined #openstack-meeting21:32
thomasemso virsh -c lxc:/// destroy still works21:32
mriedemah, ok21:32
thomasemit's just virsh -c lxc:/// stop <instance>21:32
thomasemthat fails21:32
thomasemyep21:32
*** jckasper has joined #openstack-meeting21:32
*** ctrath1 has joined #openstack-meeting21:32
mriedemwe should probably put a note in our hypervisor support matrix for that21:32
thomasemSo, filed that bug, skipping the tests in that patch. Now gates just being painful and having resource issues on the slave it looks like... not sure where to go from there.21:32
mriedemi'll review the rc change at some point21:32
thomasemThat'd be very helpful. Thank you. I don't mind adding a note to the hypervisor matrix. Just need to find it. I haven't looked at it in a long, long time.21:33
thomasem:)21:33
mriedemthomasem: thanks for the work on this, it's cool to see it progressing21:33
mriedem(tpatzig) Flavor with volume option (https://blueprints.launchpad.net/nova/+spec/flavor-with-volume)21:33
mriedemi'm assuming ^ is old b/c tpatzig isn't here21:33
thomasemmriedem: You bet! Thanks for the support. :)21:33
alaskiI don't think that's old21:33
mriedemit's also a spec and we're long past spec freeze21:33
alaskiyeah21:33
alaskiI've commented on it21:34
mriedem- AL21:34
mriedem:)21:34
mriedemMLB AL has taken a stance21:34
alaskiheh21:34
*** baoli has quit IRC21:35
mriedem(sdague) Unit tests with constraints - https://review.openstack.org/#/c/267096/21:35
*** aimon has quit IRC21:35
mriedem^ is old21:35
*** su_zhang has joined #openstack-meeting21:35
*** ctrath has quit IRC21:35
mriedemit looks like the 2 dependent changes merged for that21:36
*** baoli has joined #openstack-meeting21:36
mriedemso maybe sdague will resurrect it next week21:36
*** julim has quit IRC21:36
mriedemjenkins hates it right now though21:36
mriedem(sdague) What are acceptable constraints on project_id in url - http://lists.openstack.org/pipermail/openstack-dev/2016-January/083976.html21:36
mriedemi think ^ is old?21:36
Vekjenkins hates just about everything right now, I think...21:36
*** jungleboyj has quit IRC21:36
anteayayeah :(21:36
*** ddieterly has quit IRC21:36
*** tjones has quit IRC21:36
anteayajenkins has had better weeks21:37
mriedemi think that ML was talked about last week and we had the change for a configurable project_id21:37
mriedemalaski: ^ right?21:37
* Vek thinks it heard about me threatening to rewrite jenkins from scratch and is quaking in its boots...21:37
alaskiwe did discuss it21:37
alaskiI21:37
alaskiI'm not sure if a change went up21:37
mriedemok, and i'm pretty sure the change landed21:37
*** penick_ has joined #openstack-meeting21:37
alaskiokay21:37
*** penick has quit IRC21:37
*** penick_ is now known as penick21:37
mriedemyeah, i remember we nit picked all of sean's spelling issues21:37
mriedemit was good fun21:37
Vekhaha :)21:38
*** baoli has quit IRC21:38
mriedemand finally21:38
mriedem(thomasem, dimtruck) Update on Libvirt/LXC gate test progress21:38
mriedemwhich is a duplicate21:38
mriedemso ignoring21:38
mriedemanything else for open discussion?21:38
*** baoli has joined #openstack-meeting21:38
mriedemi'll clean up the meeting agenda after this21:38
mriedemoh, also21:38
mriedem#info no nova meeting the week of 1/2121:38
mriedemoops21:38
mriedem1/2421:38
*** ivar-lazzaro has joined #openstack-meeting21:38
mriedem#undo21:38
openstackRemoving item from minutes: <ircmeeting.items.Info object at 0x982ef90>21:38
mriedem#info no nova meeting on 1/2821:39
mriedemok, i don't hear anything else, will shut this down, thanks all21:39
claudiubquestion: can we still merge teeny patches related to os-brick in nova after m-2?21:39
mriedemclaudiub: bug fixes?21:39
*** markvoelker has quit IRC21:39
mriedemyes to bug fixes21:39
mriedemanything else will have to be evaluated21:39
claudiubmore like, using os-brick for volume related operations in hyper-v? :D21:40
mriedemthat's a bp21:40
mriedemat least in my mind21:40
mriedemit doesn't sound teeny21:40
alaskiagreed21:40
claudiubit would be < 100 loc, IMO21:40
claudiubadded loc21:40
mriedemit's still a new dependency after feature freeze and not trivial21:40
alaskiit's a functional change21:40
mriedem*new dep for hyper-v21:40
mriedemso i think newton21:41
mriedemanyone for anything else?21:41
claudiubmeh, ok21:41
mriedemalright, thanks all, ttyl21:41
mriedem#endmeeting21:41
*** openstack changes topic to "other things (summary/wrap-up (Meeting topic: swift)"21:41
openstackMeeting ended Thu Jan 21 21:41:33 2016 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)21:41
openstackMinutes:        http://eavesdrop.openstack.org/meetings/nova/2016/nova.2016-01-21-21.05.html21:41
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/nova/2016/nova.2016-01-21-21.05.txt21:41
openstackLog:            http://eavesdrop.openstack.org/meetings/nova/2016/nova.2016-01-21-21.05.log.html21:41
*** browne has left #openstack-meeting21:41
*** Vek has left #openstack-meeting21:41
*** markvoelker has joined #openstack-meeting21:41
*** mriedem has left #openstack-meeting21:41
*** rlrossit_ has left #openstack-meeting21:41
*** cdent has left #openstack-meeting21:42
*** jprovazn has quit IRC21:42
*** mgoddard_ has quit IRC21:43
*** ivar-lazzaro has quit IRC21:43
*** markus_z has quit IRC21:43
*** mudassirlatif has joined #openstack-meeting21:43
*** tjones has joined #openstack-meeting21:44
*** AmirBaleghi11112 has quit IRC21:45
*** sombrafam has quit IRC21:45
*** trozet_ has joined #openstack-meeting21:46
*** kebray has joined #openstack-meeting21:46
*** ijw_ has quit IRC21:46
*** nelsnelson has quit IRC21:46
*** trozet has quit IRC21:47
*** trozet_ is now known as trozet21:47
*** sombrafam has joined #openstack-meeting21:47
*** takashin has left #openstack-meeting21:48
*** ajmiller_ has quit IRC21:49
*** thorst has quit IRC21:49
*** thorst has joined #openstack-meeting21:50
*** gjayavelu has quit IRC21:50
*** vladikr has left #openstack-meeting21:52
*** ddieterly has joined #openstack-meeting21:52
*** hashar has quit IRC21:52
*** ccarmack has quit IRC21:53
*** krtaylor has joined #openstack-meeting21:53
*** vhoward has quit IRC21:54
*** AmirBaleghi11112 has joined #openstack-meeting21:54
*** Swami has quit IRC21:55
*** Swami has joined #openstack-meeting21:55
*** esker has quit IRC21:55
*** ccarmack has joined #openstack-meeting21:55
*** sdake has joined #openstack-meeting21:56
*** dims_ has joined #openstack-meeting21:56
*** dims has quit IRC21:57
*** sdake_ has quit IRC21:59
*** dslev has quit IRC21:59
*** neelashah has joined #openstack-meeting22:00
*** haomaiwang has quit IRC22:01
*** s3wong has joined #openstack-meeting22:01
*** haomaiwang has joined #openstack-meeting22:01
*** penick has quit IRC22:02
*** mudassirlatif_ has joined #openstack-meeting22:03
*** markvoelker has quit IRC22:04
*** mudassirlatif has quit IRC22:05
*** mudassirlatif_ is now known as mudassirlatif22:05
*** darrenc is now known as darrenc_afk22:05
*** Sukhdev has joined #openstack-meeting22:06
*** huats_ has quit IRC22:07
*** pratikma_ has quit IRC22:11
*** ccarmack has left #openstack-meeting22:11
*** peristeri has quit IRC22:13
*** pradk has joined #openstack-meeting22:13
*** dslev has joined #openstack-meeting22:14
*** AmirBaleghi11112 has quit IRC22:15
*** huats_ has joined #openstack-meeting22:17
*** huats_ has quit IRC22:17
*** huats_ has joined #openstack-meeting22:17
*** penick has joined #openstack-meeting22:18
*** sdake has quit IRC22:20
*** thorst has quit IRC22:21
*** thorst has joined #openstack-meeting22:21
*** darrenc_afk is now known as darrenc22:22
*** rbowen has quit IRC22:23
*** markvoelker has joined #openstack-meeting22:24
*** zhurong has joined #openstack-meeting22:24
*** vgridnev has quit IRC22:25
*** thorst has quit IRC22:26
*** dkranz has quit IRC22:26
*** balajiiyer has quit IRC22:28
*** thorst has joined #openstack-meeting22:29
*** baoli has quit IRC22:30
*** rossella_s has quit IRC22:31
*** rossella_s has joined #openstack-meeting22:31
*** winston-d_ has quit IRC22:32
*** sdake has joined #openstack-meeting22:32
*** thorst has quit IRC22:34
*** dslev has quit IRC22:34
*** otter768 has joined #openstack-meeting22:35
*** vgridnev has joined #openstack-meeting22:36
*** kebray has quit IRC22:38
*** otter768 has quit IRC22:39
*** weshay_xchat has quit IRC22:40
*** vijendar has quit IRC22:41
*** kencjohnston has quit IRC22:42
*** claudiub has quit IRC22:42
*** mudassirlatif has quit IRC22:43
*** mudassirlatif has joined #openstack-meeting22:44
*** cschulz has joined #openstack-meeting22:44
*** njohnston has quit IRC22:45
*** novas0x2a|lapto1 has joined #openstack-meeting22:45
*** novas0x2a|laptop has quit IRC22:45
*** adahms has joined #openstack-meeting22:47
*** ajmiller has quit IRC22:50
*** ajmiller has joined #openstack-meeting22:50
*** ivar-lazzaro has joined #openstack-meeting22:50
*** vgridnev has quit IRC22:50
*** ctrath1 has quit IRC22:53
*** zhurong has quit IRC22:55
*** dmorita has quit IRC22:55
*** harlowja has quit IRC22:56
*** harlowja has joined #openstack-meeting22:56
*** dmorita has joined #openstack-meeting22:56
*** timcline_ has quit IRC22:57
*** emagana has quit IRC22:58
*** ayoung has joined #openstack-meeting22:58
*** ctrath has joined #openstack-meeting22:59
*** dmorita has quit IRC22:59
*** dmorita_ has joined #openstack-meeting22:59
*** galstrom is now known as galstrom_zzz22:59
*** annegent_ has quit IRC23:00
*** mudassirlatif has quit IRC23:00
*** haomaiwang has quit IRC23:01
*** haomaiwang has joined #openstack-meeting23:01
*** aimon has joined #openstack-meeting23:05
*** dimtruck is now known as zz_dimtruck23:06
*** Sukhdev has quit IRC23:06
*** xinwu is now known as xinwu_23:07
*** unicell1 has joined #openstack-meeting23:07
*** neelashah has quit IRC23:08
*** unicell has quit IRC23:08
*** zhurong has joined #openstack-meeting23:10
*** adiantum has joined #openstack-meeting23:10
*** merooney has joined #openstack-meeting23:11
*** Sukhdev has joined #openstack-meeting23:12
*** MarkAtwood has joined #openstack-meeting23:12
*** Daisy has joined #openstack-meeting23:14
*** sombrafam has quit IRC23:15
*** piet has quit IRC23:15
*** sombrafam has joined #openstack-meeting23:16
*** mudassirlatif has joined #openstack-meeting23:17
*** tej has joined #openstack-meeting23:18
*** Daisy has quit IRC23:18
*** vijendar has joined #openstack-meeting23:20
*** spotz is now known as spotz_zzz23:20
*** vijendar has quit IRC23:20
*** tej has quit IRC23:21
*** tej has joined #openstack-meeting23:21
*** tej has quit IRC23:28
*** tej has joined #openstack-meeting23:29
*** sdake has quit IRC23:30
*** bradjones_ has joined #openstack-meeting23:31
*** bradjones_ has quit IRC23:31
*** bradjones_ has joined #openstack-meeting23:31
*** sombrafam has quit IRC23:31
*** trozet has quit IRC23:31
*** sombrafam has joined #openstack-meeting23:32
*** jjmb has joined #openstack-meeting23:32
*** tej has quit IRC23:33
*** tellesnobrega is now known as tellesnobrega_af23:34
*** sigmavirus24 is now known as sigmavirus24_awa23:34
*** dprince has quit IRC23:40
*** tochi has joined #openstack-meeting23:41
*** FallenPegasus has quit IRC23:42
*** ctrath has quit IRC23:46
*** spzala has joined #openstack-meeting23:47
*** rcernin has quit IRC23:47
*** sdake has joined #openstack-meeting23:47
*** bradjones_ has quit IRC23:47
*** bradjones_ has joined #openstack-meeting23:47
*** bradjones_ has quit IRC23:47
*** bradjones_ has joined #openstack-meeting23:47
*** isq_ has quit IRC23:48
*** edtubill has quit IRC23:49
*** tellesnobrega_af is now known as tellesnobrega23:49
*** spzala has quit IRC23:51
*** darrenc is now known as darrenc_afk23:51
*** Leom has quit IRC23:55
*** isq has joined #openstack-meeting23:56
*** spzala has joined #openstack-meeting23:56
*** rtheis has quit IRC23:57
*** piet has joined #openstack-meeting23:58

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