*** cjellick has quit IRC | 00:00 | |
cyeoh | #startmeeting nova-api | 00:00 |
---|---|---|
openstack | Meeting started Fri Oct 10 00:00:48 2014 UTC and is due to finish in 60 minutes. The chair is cyeoh. Information about MeetBot at http://wiki.debian.org/MeetBot. | 00:00 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 00:00 |
*** openstack changes topic to " (Meeting topic: nova-api)" | 00:00 | |
openstack | The meeting name has been set to 'nova_api' | 00:00 |
cyeoh | Hi - who's here today for the nova api meeting? | 00:01 |
alex_xu | hi | 00:01 |
*** khaldrogox has joined #openstack-meeting | 00:01 | |
gmann | hi | 00:02 |
*** khaldrogox has quit IRC | 00:02 | |
*** mattgriffin has joined #openstack-meeting | 00:02 | |
*** harlowja has quit IRC | 00:02 | |
*** harlowja has joined #openstack-meeting | 00:02 | |
cyeoh | gmann: do you know if oomichi is going to be able to make it today? | 00:02 |
gmann | cyeoh: He is busy in other meeting, so he might not be able to join | 00:03 |
*** Mandell has quit IRC | 00:03 | |
*** fnaval has joined #openstack-meeting | 00:03 | |
cyeoh | ok, np. lets get started then | 00:04 |
*** VijayB_ has quit IRC | 00:04 | |
cyeoh | #topic v2.1 on v3 | 00:04 |
*** openstack changes topic to "v2.1 on v3 (Meeting topic: nova-api)" | 00:04 | |
*** imsurit has joined #openstack-meeting | 00:04 | |
cyeoh | as everyone has probably seen by now we've got the v2.1 on v3 spec re-approved for kilo :-) | 00:04 |
*** HenryG has quit IRC | 00:04 | |
alex_xu | yea | 00:04 |
cyeoh | so anything on #link https://etherpad.openstack.org/p/v2_1_WorkList we can work on | 00:05 |
alex_xu | approved so quick | 00:05 |
r1chardj0n3s | hi there, sorry I'm late :) | 00:05 |
cyeoh | yea we were first :-) | 00:05 |
cyeoh | r1chardj0n3s: np | 00:05 |
cyeoh | I'd recommend people rebase any existing patch older than a couple of weeks | 00:06 |
r1chardj0n3s | some context: I'm working on a new pure-Javascript client for OpenStack APIs | 00:06 |
r1chardj0n3s | currently I'm targetting v2 because that's what's in devstack | 00:06 |
r1chardj0n3s | writing a client from scratch has exposed some fun issues with the APIs and their documentation | 00:06 |
cyeoh | and if the patch copies any of the v2 files just to recheck that no patches were applied to the original during the feature freeze | 00:07 |
r1chardj0n3s | so I was wondering what advice I might receive, what help I might offer that would be useful? | 00:07 |
gmann | cyeoh: yes | 00:07 |
cyeoh | as there were quite a log of bug fixes then went into the nova api during ff | 00:07 |
cyeoh | one other update to patches is that we no longer need to do the url_prefix work for v2 vs v3 urls | 00:07 |
cyeoh | so they can be removed from patches. Kenichi's wsgi_app_v21 patch has merged so we can just use the common url | 00:07 |
*** achanda has quit IRC | 00:08 | |
r1chardj0n3s | also, I have written https://review.openstack.org/#/c/120964/14 which I'd like to see included in various APIs, so comments on it earlier rather than later would be appreciated :) | 00:08 |
*** beekneemech has joined #openstack-meeting | 00:09 | |
gmann | cyeoh: for wsgi_app_v21, shall we start cleanup the existing one also. | 00:09 |
r1chardj0n3s | (the CORS stuff is far from just my baby, too, I'm just the sucker writing the spec/code) | 00:09 |
*** Sukhdev has quit IRC | 00:09 | |
*** bnemec has quit IRC | 00:09 | |
*** padkrish has joined #openstack-meeting | 00:09 | |
*** MaxV has joined #openstack-meeting | 00:09 | |
*** ignacio-scopetta has quit IRC | 00:10 | |
cyeoh | I also wanted to find out what people thought about eventually just removing the content of HTTPBlankRequest calls for cases where we call the controller directly | 00:11 |
cyeoh | rather than wsgi_app | 00:11 |
cyeoh | when we call the controller directly the url never actually gets used (except perhaps is it does parameter parsing which very few methods doo) | 00:11 |
cyeoh | the url string never gets parsed/checked in anyway so tests will pass even if its garbage. | 00:11 |
cyeoh | I wonder if in those cases we should use an empty string instead? | 00:11 |
cyeoh | sorry I'm having a few network disconnects. | 00:12 |
cyeoh | r1chardj0n3s: certainly submit bug reports on any issues you find http://bugs.launchpad.net/nova - tag them with api would be useful | 00:12 |
r1chardj0n3s | cyeoh: ok, so bug reports against v2 would be accepted? | 00:13 |
cyeoh | r1chardj0n3s: yes definitely, they may well be in the v2.1 api as well | 00:13 |
r1chardj0n3s | cyeoh: it's almost always more about the documentation, to be honest | 00:13 |
*** flaviof is now known as flaviof_zzz | 00:13 | |
*** MaxV has quit IRC | 00:14 | |
*** eliqiao1 has joined #openstack-meeting | 00:14 | |
cyeoh | r1chardj0n3s: yep we're trying to move to a model where we automate generation of documentation eventually which should fix some of those issues but for now a bug would be very useful | 00:14 |
alex_xu | cyeoh, what is HTTPBlankRequest? I don't know it, is there any related patch? | 00:14 |
r1chardj0n3s | cyeoh: ok | 00:14 |
eliqiao1 | hi all :) | 00:14 |
alex_xu | eliqiao1, hi :) | 00:14 |
*** padkrish has quit IRC | 00:15 | |
gmann | cyeoh: I agree we can remove the url string as of now. but i feel we need consistency across UT | 00:15 |
cyeoh | gmann: so for cases where we create a fake request and pass it to the controller the url is ignored, but if we pass it to wsgi_app_v21 we do need a valid url | 00:15 |
*** yingjun has joined #openstack-meeting | 00:15 | |
cyeoh | gmann: yea to be honest I'm not sure about the change, I just wanted to bring it up for discussion | 00:15 |
cyeoh | gmann: because its not checked there are cases where its just plain wrong which can be misleading. But maybe we just live with that? | 00:16 |
*** yamahata has joined #openstack-meeting | 00:16 | |
cyeoh | alex_xu: oh so I mean HTTPRequest.blank('/v2/....') | 00:16 |
*** tsekiyama has quit IRC | 00:16 | |
*** yamamoto has joined #openstack-meeting | 00:16 | |
cyeoh | r1chardj0n3s: can get to you review in a sec if you want (to be honest I don't know anything about CORS) | 00:17 |
*** mtanino has quit IRC | 00:17 | |
gmann | cyeoh, alex_xu: I am +1 to remove those which are present in many test class. | 00:18 |
alex_xu | cyeoh, I remember we said we prefer test controller directly than wsg_app_v21 before, because we don't want to run whole stack in unittest, and we already have api sample test | 00:18 |
*** vivek-ebay has quit IRC | 00:18 | |
r1chardj0n3s | cyeoh: https://review.openstack.org/#/c/119485/ is the spec, which may help :) | 00:18 |
cyeoh | alex_xu: yea I think where we can its preferable as its much closer to a unit test (as long as we have good api sample test coverage) | 00:18 |
r1chardj0n3s | cyeoh: though the spec needs to be updated for some of the configuration minutae | 00:19 |
gmann | alex_xu: yes, i am litle bit not comfortable about having mixed way of call, some with wsgi some directly controller... | 00:19 |
cyeoh | gmann, alex_xu: so perhaps one of the cleanup things we put on the todo list for kilo is converting wsgi_api based tests to direct controller tests | 00:19 |
cyeoh | #link https://etherpad.openstack.org/p/Nova_API_Kilo_Planning | 00:20 |
cyeoh | the controller tests also run a lot of faster. | 00:20 |
*** achanda has joined #openstack-meeting | 00:20 | |
alex_xu | cyeoh, yes, but should be low priority | 00:20 |
*** bdpayne has quit IRC | 00:20 | |
cyeoh | alex_xu, yep sure | 00:20 |
*** IanGovett has quit IRC | 00:20 | |
gmann | cyeoh: nice idea :) | 00:21 |
eliqiao1 | so we are planing to refactor the wsgi_api test to direct controller tests? | 00:21 |
alex_xu | eliqiao1, yea | 00:21 |
eliqiao1 | alex_xu: got it, thx. | 00:22 |
cyeoh | #topic CORS | 00:23 |
*** openstack changes topic to "CORS (Meeting topic: nova-api)" | 00:23 | |
cyeoh | r1chardj0n3s: did you want to say anything else about CORS? | 00:23 |
cyeoh | r1chardj0n3s: I'll admit this all new to me :-) | 00:24 |
*** markwash__ has quit IRC | 00:24 | |
r1chardj0n3s | thanks, apart from what's in the spec, probably not | 00:24 |
r1chardj0n3s | though some history, perhaps | 00:24 |
r1chardj0n3s | originally CORS was going to be implemented in an existing middleware, but that approach was nixed | 00:24 |
*** david-lyle has joined #openstack-meeting | 00:25 | |
r1chardj0n3s | the next thought was to punt the integration of it off on deployers who wanted it, but that ended up being a bit of a nightmare for deployers (who would need to know way too much about the API in question to get it right) | 00:25 |
r1chardj0n3s | so the current apprach is to try to get the APIs themselves to include the middleware by default, though with a configuration that basically says "no, we don't allow CORS" | 00:26 |
*** fnaval has quit IRC | 00:26 | |
r1chardj0n3s | deployers may then make a relatively trivial edit to the paste configuration to allow CORS if they wish to | 00:26 |
r1chardj0n3s | but that relies on buy-in from folk like yourself :) | 00:26 |
cyeoh | ok so excuse my ignorance, but its basically just adding and accepting some new headers? | 00:26 |
r1chardj0n3s | yes | 00:26 |
cyeoh | ok that sounds fairly harmless :-) | 00:27 |
r1chardj0n3s | yep | 00:27 |
r1chardj0n3s | I will also note though, that my main day work at the moment is to rewrite Horizon as a pure Javascript application | 00:28 |
cyeoh | Ah ok I see | 00:28 |
r1chardj0n3s | and for that, I've avoided the CORS issue completely by using a super-thin API proxy that presents all the OpenStack service APIs through a single origin (in the CORS sense of "origin") | 00:28 |
cyeoh | is it just your org who is interested in CORS support or are there others as well? | 00:28 |
r1chardj0n3s | no, there seems to be broad interest in enabling CORS | 00:29 |
r1chardj0n3s | but as I mention, ironically I probably won't use it, even though others will | 00:29 |
cyeoh | heh :-) | 00:29 |
cyeoh | ok I guess it'd be nice to get people from various orgs to comment on the spec so we know there is user demand for it. | 00:30 |
r1chardj0n3s | seems reasonable | 00:30 |
cyeoh | anyway my first impression of it seems like it should be ok - fairly harmless and disabled by default | 00:30 |
*** rmoe has joined #openstack-meeting | 00:30 | |
*** VijayB_ has joined #openstack-meeting | 00:30 | |
*** salv-orlando has quit IRC | 00:31 | |
r1chardj0n3s | (I'm kinda new at OpenStack - only 3.5 months in now - so I'm unsure how to progress things like that) | 00:31 |
*** eliqiao1 has quit IRC | 00:31 | |
*** daneyon_ has quit IRC | 00:31 | |
cyeoh | r1chardj0n3s: I think it's probably a good idea to post a reference to it to openstack-dev if you haven't already done so | 00:31 |
r1chardj0n3s | ok, will do | 00:31 |
r1chardj0n3s | under [all]? | 00:31 |
*** daneyon has joined #openstack-meeting | 00:31 | |
cyeoh | yep | 00:32 |
cyeoh | ok, moving on... | 00:32 |
*** daneyon has quit IRC | 00:32 | |
cyeoh | #topic microversions | 00:32 |
*** openstack changes topic to "microversions (Meeting topic: nova-api)" | 00:32 | |
*** daneyon has joined #openstack-meeting | 00:33 | |
r1chardj0n3s | (thanks, cyeoh) | 00:33 |
*** fnaval has joined #openstack-meeting | 00:33 | |
cyeoh | I've put up another version of the microversions spec. Please review/comment: | 00:33 |
cyeoh | #link https://review.openstack.org/#/c/127127/ | 00:33 |
cyeoh | r1chardj0n3s: np | 00:33 |
cyeoh | oomchi and I have been discussing JSON-HOME on that spec as well | 00:34 |
*** achanda has quit IRC | 00:34 | |
cyeoh | if anyone wants to write up a JSON-HOME spec too I think that'd be useful (I don't know yet if it would fit into kilo yet - I think its non trivial to implement) | 00:34 |
cyeoh | any comments on the microversions? I hope to have some sample code by next week | 00:35 |
*** hemna has quit IRC | 00:35 | |
alex_xu | cyeoh, JSON-HOME should begin after we implement micro-version? | 00:36 |
*** mattgriffin has quit IRC | 00:36 | |
cyeoh | alex_xu: so I might be wrong, but the way I see it, microversions allows us to give client control to what API they say (by passing a version) | 00:36 |
alex_xu | cyeoh, looks like implement JSON-HOME need depend on how we implement micro-version | 00:36 |
cyeoh | alex_xu: whereas JSON-home allows us to describe what that API looks like | 00:36 |
cyeoh | I think it'd be possible to do a JSON-home document for the v2 api - since it's essentially static | 00:37 |
*** rossk has joined #openstack-meeting | 00:37 | |
*** daneyon has quit IRC | 00:37 | |
cyeoh | which may be a good testcase (still needs to handle what plugins are actually loaded though) | 00:37 |
alex_xu | Json-home also describe each version api..so I think it may a little dependence | 00:37 |
cyeoh | alex_xu: I think if we go that route the json home document is going to *very* complicated | 00:38 |
cyeoh | because I think we should plan on lots of minor version updates during each cycle, plus a few major ones | 00:38 |
*** leeantho has quit IRC | 00:38 | |
alex_xu | agree | 00:39 |
*** toan has joined #openstack-meeting | 00:39 | |
cyeoh | I was thinking (and perhaps this is just all wrong) that we could make the json-home document dependent on the client header for microversions | 00:39 |
cyeoh | so it would be simple as it would only have to describe the api for a single snapshot of the API at a time, rather than its whole history | 00:40 |
alex_xu | you mean only newest version or all the version in one json-home? | 00:41 |
cyeoh | so I was thinking if the client header said v2 api, then the json home document would just describe the API as it behaves in v2 mode | 00:41 |
*** rossk has quit IRC | 00:41 | |
cyeoh | if they say version=4.12.3 then the JSON home document would describe that | 00:41 |
cyeoh | With all the plugins that we have the size of the API is huge and that already makes for a very large document | 00:42 |
*** mmedvede has quit IRC | 00:42 | |
cyeoh | I guess we could have a json home document that also describes all the functionality for all the versions. But it would end up very large :-) And I doubt clients would want to be continuously pulling that down | 00:43 |
gmann | cyeoh: JSON home document needed for mainly backward incompatibility version or for compatibility also | 00:44 |
alex_xu | emm...yes, I can image it' very large :) | 00:44 |
*** ramishra has joined #openstack-meeting | 00:44 | |
cyeoh | gmann: yea I'm not sure if I'm missing something with my understanding of json home documents | 00:45 |
cyeoh | gmann: but I'm wondering why its needed for backwards incompatibility? | 00:45 |
*** Murali_ has joined #openstack-meeting | 00:46 | |
*** Murali_ has quit IRC | 00:46 | |
*** Murali_ has joined #openstack-meeting | 00:47 | |
*** rwsu has quit IRC | 00:47 | |
gmann | cyeoh: it should describe for all interface changes right? which include backwards incompatibility also | 00:47 |
cyeoh | gmann: so we could use it to do that, though as I mentioned before I think that would mean it would get huge. | 00:47 |
cyeoh | gmann: or we could just use it to describe the API at a specific version | 00:48 |
cyeoh | I'm trying to think of how a client would use it. | 00:48 |
cyeoh | I think most clients will just be written up against a specific version of the API and they won't look at the JSON home document | 00:48 |
*** bdpayne has joined #openstack-meeting | 00:49 | |
*** mchalla has quit IRC | 00:49 | |
cyeoh | A sophisticated client might want to always work against the latest version of the API | 00:49 |
*** ramishra has quit IRC | 00:49 | |
*** bdpayne has quit IRC | 00:49 | |
cyeoh | in which case they would use the json home document to find out what is available | 00:49 |
cyeoh | but wouldn't care about the api history | 00:49 |
*** joesavak has joined #openstack-meeting | 00:50 | |
alex_xu | cyeoh, it should care which version avaliable | 00:50 |
*** r1chardj0n3s has left #openstack-meeting | 00:50 | |
cyeoh | maybe a really fancy client would be able to operate against any version of the api in which case they would really want all this information from json home | 00:50 |
gmann | cyeoh: yes. but sometime moving from version to version they required for all version | 00:51 |
*** js1123 has quit IRC | 00:51 | |
*** bill_ibm has quit IRC | 00:51 | |
cyeoh | alex_xu: yes, that's true but that can just be done with a version list, or the standard /versions output | 00:51 |
*** jsavak has joined #openstack-meeting | 00:51 | |
alex_xu | cyeoh, yea, right | 00:51 |
cyeoh | so I guess what I'm saying is that if the client can dynamically adapt to a changing api by parsing json home then why would it ever want to use anything but the latest version of the api? | 00:52 |
cyeoh | if it can't then its probably fixed to a specific version anyway | 00:53 |
cyeoh | gmann: I don't think I understood what you were saying | 00:53 |
*** markwash__ has joined #openstack-meeting | 00:54 | |
*** joesavak has quit IRC | 00:54 | |
gmann | cyeoh: i mean the same if some client care about all API version and we need to provide JSON Home for those | 00:55 |
*** otter768 has joined #openstack-meeting | 00:55 | |
cyeoh | gmann: oh I see, yes I agree | 00:56 |
cyeoh | gmann: well I think this discussion has helped my understanding quite a bit anyway ;-) | 00:57 |
cyeoh | thx! Is there anything else people want to talk about re: json/home or microversions? | 00:57 |
*** david-lyle has quit IRC | 00:57 | |
*** spzala has quit IRC | 00:57 | |
*** mchalla has joined #openstack-meeting | 00:58 | |
alex_xu | nothing from me, need review the spec first! | 00:58 |
cyeoh | ok :-) Otherwise we're pretty much out of time | 00:58 |
cyeoh | #topic open discussion | 00:58 |
*** openstack changes topic to "open discussion (Meeting topic: nova-api)" | 00:58 | |
gmann | cyeoh: nothing from my side, i will also review spec | 00:58 |
cyeoh | anything else from anyone for the 1 minute we have left? :-) | 00:58 |
alex_xu | quick question | 00:58 |
cyeoh | sure | 00:59 |
alex_xu | Should I add policy stuff at here https://etherpad.openstack.org/p/kilo-nova-priorities | 00:59 |
alex_xu | or that link just for very important feature | 00:59 |
*** markwash__ has quit IRC | 00:59 | |
alex_xu | or every feature should add to that etherpad | 00:59 |
*** mchalla has quit IRC | 01:00 | |
cyeoh | alex_xu: I think its worth adding, but describe how it makes life easier for deployers | 01:00 |
alex_xu | cyeoh, ok, I got it | 01:00 |
gmann | cyeoh: I re spin tempest spec for Nova v2.1 - https://review.openstack.org/#/c/96661/ | 01:00 |
gmann | cyeoh: please have look at convenient time | 01:00 |
cyeoh | gmann: thx! I'll have a look at it | 01:00 |
gmann | thx | 01:00 |
cyeoh | ok we're definitely out of time. thx everyone | 01:00 |
cyeoh | #endmeeting | 01:00 |
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings" | 01:01 | |
openstack | Meeting ended Fri Oct 10 01:00:59 2014 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 01:01 |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/nova_api/2014/nova_api.2014-10-10-00.00.html | 01:01 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/nova_api/2014/nova_api.2014-10-10-00.00.txt | 01:01 |
openstack | Log: http://eavesdrop.openstack.org/meetings/nova_api/2014/nova_api.2014-10-10-00.00.log.html | 01:01 |
gmann | Thanks all. have a good day | 01:01 |
alex_xu | gmann, me too, although I'm not familar with tempest yet | 01:01 |
alex_xu | thanks all | 01:01 |
*** henrynash has joined #openstack-meeting | 01:01 | |
gmann | alex_xu: yes, thanks | 01:01 |
alex_xu | gmann, np | 01:02 |
*** amcrn has quit IRC | 01:02 | |
*** VijayB_ has quit IRC | 01:03 | |
*** shashankhegde has quit IRC | 01:04 | |
*** VijayB_ has joined #openstack-meeting | 01:04 | |
*** novas0x2a|laptop has quit IRC | 01:05 | |
*** marcoemorais1 has quit IRC | 01:05 | |
*** marcoemorais has joined #openstack-meeting | 01:06 | |
*** mrsmith has quit IRC | 01:07 | |
*** henrynash has quit IRC | 01:09 | |
*** MaxV has joined #openstack-meeting | 01:10 | |
*** vivek-ebay has joined #openstack-meeting | 01:12 | |
*** MaxV has quit IRC | 01:15 | |
*** s3wong has quit IRC | 01:16 | |
*** VijayB_ has quit IRC | 01:17 | |
*** vivek-eb_ has joined #openstack-meeting | 01:20 | |
*** vivek-ebay has quit IRC | 01:21 | |
*** sgordon_ has quit IRC | 01:23 | |
*** marcoemorais has quit IRC | 01:26 | |
*** mmedvede has joined #openstack-meeting | 01:29 | |
*** ivar-lazzaro has quit IRC | 01:30 | |
*** mchalla has joined #openstack-meeting | 01:30 | |
*** haomaiw__ has quit IRC | 01:30 | |
*** mberlin has joined #openstack-meeting | 01:30 | |
*** haomaiwang has joined #openstack-meeting | 01:31 | |
*** mberlin1 has quit IRC | 01:32 | |
*** ramishra has joined #openstack-meeting | 01:32 | |
*** mudassirlatif has quit IRC | 01:32 | |
*** weshay has quit IRC | 01:34 | |
*** mchalla has quit IRC | 01:35 | |
*** vivek-eb_ has quit IRC | 01:37 | |
*** rossk has joined #openstack-meeting | 01:37 | |
*** sunrenjie has joined #openstack-meeting | 01:38 | |
*** xuhanp has joined #openstack-meeting | 01:38 | |
*** nosnos has joined #openstack-meeting | 01:39 | |
*** rossk has quit IRC | 01:42 | |
*** yingjun has quit IRC | 01:43 | |
*** yingjun has joined #openstack-meeting | 01:43 | |
*** baoli has joined #openstack-meeting | 01:44 | |
*** haomaiw__ has joined #openstack-meeting | 01:46 | |
*** rainya has joined #openstack-meeting | 01:47 | |
*** yingjun has quit IRC | 01:47 | |
*** ramishra has quit IRC | 01:47 | |
*** haomaiwang has quit IRC | 01:48 | |
*** zns has joined #openstack-meeting | 01:49 | |
*** tbarron is now known as tbarron_zZZZ | 01:50 | |
*** gmann has left #openstack-meeting | 01:53 | |
*** Preston has left #openstack-meeting | 01:53 | |
*** haomaiwang has joined #openstack-meeting | 01:56 | |
*** haomaiw__ has quit IRC | 01:56 | |
*** rainya has quit IRC | 02:01 | |
*** baoli has quit IRC | 02:02 | |
*** ramishra has joined #openstack-meeting | 02:05 | |
*** schwicht has quit IRC | 02:06 | |
*** SumitNaiksatam has quit IRC | 02:10 | |
*** MaxV has joined #openstack-meeting | 02:11 | |
*** MaxV has quit IRC | 02:16 | |
*** sunrenjie_ has joined #openstack-meeting | 02:20 | |
*** ramashri_ has quit IRC | 02:21 | |
*** lazy_prince has quit IRC | 02:23 | |
*** SumitNaiksatam has joined #openstack-meeting | 02:23 | |
*** HenryG has joined #openstack-meeting | 02:26 | |
*** otherwiseguy has joined #openstack-meeting | 02:27 | |
*** ramashri has joined #openstack-meeting | 02:27 | |
*** killer_prince has joined #openstack-meeting | 02:33 | |
*** Longgeek has joined #openstack-meeting | 02:33 | |
*** killer_prince is now known as lazy_prince | 02:33 | |
*** harlowja is now known as harlowja_away | 02:37 | |
*** rossk has joined #openstack-meeting | 02:37 | |
*** ramishra has quit IRC | 02:37 | |
*** bill_az has quit IRC | 02:40 | |
*** zns has quit IRC | 02:41 | |
*** epico has joined #openstack-meeting | 02:42 | |
*** rossk has quit IRC | 02:42 | |
*** achanda has joined #openstack-meeting | 02:42 | |
*** sunrenjie has quit IRC | 02:45 | |
*** haomaiw__ has joined #openstack-meeting | 02:48 | |
*** armax has quit IRC | 02:50 | |
*** haomaiwang has quit IRC | 02:52 | |
*** ayoung-afk has quit IRC | 02:52 | |
*** liusheng has quit IRC | 02:55 | |
*** liusheng has joined #openstack-meeting | 02:56 | |
*** achanda has quit IRC | 02:58 | |
*** SumitNaiksatam has quit IRC | 02:58 | |
*** achanda has joined #openstack-meeting | 02:59 | |
*** SumitNaiksatam has joined #openstack-meeting | 03:00 | |
*** ramishra has joined #openstack-meeting | 03:01 | |
*** SumitNaiksatam has quit IRC | 03:02 | |
*** vivek-ebay has joined #openstack-meeting | 03:03 | |
*** Poornima has joined #openstack-meeting | 03:04 | |
*** mmedvede has quit IRC | 03:04 | |
*** ayoung-afk has joined #openstack-meeting | 03:04 | |
*** yamahata has quit IRC | 03:05 | |
*** yamahata has joined #openstack-meeting | 03:05 | |
*** carl_baldwin has joined #openstack-meeting | 03:07 | |
*** vivek-ebay has quit IRC | 03:08 | |
*** jorge_munoz has joined #openstack-meeting | 03:10 | |
*** ramishra has quit IRC | 03:11 | |
*** MaxV has joined #openstack-meeting | 03:12 | |
*** shashankhegde has joined #openstack-meeting | 03:12 | |
*** harlowja_away has quit IRC | 03:12 | |
*** jorge_munoz has quit IRC | 03:15 | |
*** MaxV has quit IRC | 03:17 | |
*** paragan has joined #openstack-meeting | 03:17 | |
*** hemna has joined #openstack-meeting | 03:18 | |
*** chandankumar has joined #openstack-meeting | 03:19 | |
*** jecarey has joined #openstack-meeting | 03:25 | |
*** nosnos has quit IRC | 03:26 | |
*** adahms has quit IRC | 03:26 | |
*** nosnos has joined #openstack-meeting | 03:26 | |
*** jsavak has quit IRC | 03:26 | |
*** armax has joined #openstack-meeting | 03:27 | |
*** colinmcnamara has joined #openstack-meeting | 03:29 | |
*** hemna has quit IRC | 03:29 | |
*** jorge_munoz has joined #openstack-meeting | 03:30 | |
*** nosnos has quit IRC | 03:30 | |
*** adahms has joined #openstack-meeting | 03:31 | |
*** antonym has quit IRC | 03:31 | |
*** SumitNaiksatam has joined #openstack-meeting | 03:31 | |
*** vivek-ebay has joined #openstack-meeting | 03:31 | |
*** mchalla has joined #openstack-meeting | 03:32 | |
*** antonym has joined #openstack-meeting | 03:32 | |
*** Mandell has joined #openstack-meeting | 03:35 | |
*** rossk has joined #openstack-meeting | 03:37 | |
*** mchalla has quit IRC | 03:37 | |
*** jorge_munoz has quit IRC | 03:42 | |
*** rossk has quit IRC | 03:42 | |
*** ramishra has joined #openstack-meeting | 03:42 | |
*** cdub has quit IRC | 03:43 | |
*** vivek-eb_ has joined #openstack-meeting | 03:44 | |
*** marrusl has quit IRC | 03:46 | |
*** vivek-ebay has quit IRC | 03:47 | |
*** carl_baldwin has quit IRC | 03:47 | |
*** ramishra has quit IRC | 03:47 | |
*** scotm has joined #openstack-meeting | 03:49 | |
*** alex_xu has quit IRC | 03:50 | |
*** akuznetsov has quit IRC | 03:50 | |
*** jorge_munoz has joined #openstack-meeting | 03:51 | |
*** colinmcnamara has quit IRC | 03:52 | |
*** andreykurilin_ has joined #openstack-meeting | 03:53 | |
*** armax has quit IRC | 03:53 | |
*** Murali_ has quit IRC | 03:54 | |
*** Murali__ has joined #openstack-meeting | 03:54 | |
*** marrusl has joined #openstack-meeting | 04:00 | |
*** yingjun has joined #openstack-meeting | 04:04 | |
*** otherwiseguy has quit IRC | 04:05 | |
*** carl_baldwin has joined #openstack-meeting | 04:05 | |
*** yingjun has quit IRC | 04:09 | |
*** kebray has joined #openstack-meeting | 04:09 | |
*** garyh has quit IRC | 04:09 | |
*** andreykurilin_ has quit IRC | 04:10 | |
*** MaxV has joined #openstack-meeting | 04:12 | |
*** adahms has quit IRC | 04:13 | |
*** Poornima has quit IRC | 04:15 | |
*** alex_xu has joined #openstack-meeting | 04:15 | |
*** otter768 has quit IRC | 04:15 | |
*** adahms has joined #openstack-meeting | 04:16 | |
*** MaxV has quit IRC | 04:17 | |
*** carl_baldwin has quit IRC | 04:19 | |
*** carl_baldwin has joined #openstack-meeting | 04:20 | |
*** nosnos has joined #openstack-meeting | 04:32 | |
*** mchalla has joined #openstack-meeting | 04:35 | |
*** rossk has joined #openstack-meeting | 04:37 | |
*** jgrimm is now known as zz_jgrimm | 04:39 | |
*** mchalla has quit IRC | 04:39 | |
*** garyh has joined #openstack-meeting | 04:41 | |
*** JRobinson__ is now known as JRobinson__afk | 04:41 | |
*** rossk has quit IRC | 04:42 | |
*** stevemar has quit IRC | 04:43 | |
*** Murali__ has quit IRC | 04:43 | |
*** cdub has joined #openstack-meeting | 04:47 | |
*** garyh has quit IRC | 04:51 | |
*** epico has quit IRC | 04:51 | |
*** Mandell has quit IRC | 04:55 | |
*** kebray has quit IRC | 04:56 | |
*** akuznetsov has joined #openstack-meeting | 04:56 | |
*** otherwiseguy has joined #openstack-meeting | 04:57 | |
*** achanda has quit IRC | 04:58 | |
*** achanda_ has joined #openstack-meeting | 05:01 | |
*** JRobinson__afk is now known as JRobinson__ | 05:06 | |
*** kebray has joined #openstack-meeting | 05:07 | |
*** otherwiseguy has quit IRC | 05:11 | |
*** epico has joined #openstack-meeting | 05:11 | |
*** lazy_prince has quit IRC | 05:12 | |
*** brnelson has quit IRC | 05:12 | |
*** brnelson has joined #openstack-meeting | 05:12 | |
*** Poornima has joined #openstack-meeting | 05:13 | |
*** MaxV has joined #openstack-meeting | 05:13 | |
*** neeti has joined #openstack-meeting | 05:15 | |
*** shankarprasad has joined #openstack-meeting | 05:15 | |
*** neeti has quit IRC | 05:16 | |
*** MaxV has quit IRC | 05:18 | |
*** jorge_munoz has quit IRC | 05:20 | |
*** jorge_munoz has joined #openstack-meeting | 05:21 | |
*** chandankumar has quit IRC | 05:24 | |
*** rakesh_hs has joined #openstack-meeting | 05:25 | |
*** rushiagr_away is now known as rushiagr | 05:26 | |
*** lazy_prince has joined #openstack-meeting | 05:30 | |
*** carl_baldwin has quit IRC | 05:31 | |
*** ramishra has joined #openstack-meeting | 05:33 | |
*** Mandell has joined #openstack-meeting | 05:35 | |
*** rossk has joined #openstack-meeting | 05:37 | |
*** ramishra has quit IRC | 05:38 | |
*** rossk has quit IRC | 05:41 | |
*** mrmartin has joined #openstack-meeting | 05:42 | |
*** MaxV has joined #openstack-meeting | 05:45 | |
*** oanufriev has joined #openstack-meeting | 05:45 | |
*** oanufriev has quit IRC | 05:48 | |
*** garyh has joined #openstack-meeting | 05:49 | |
*** akuznetsov has quit IRC | 05:53 | |
*** eglynn has joined #openstack-meeting | 05:54 | |
*** chandankumar has joined #openstack-meeting | 05:55 | |
*** chandankumar has quit IRC | 05:55 | |
*** andreaf has joined #openstack-meeting | 05:55 | |
*** ayoung-afk has quit IRC | 05:56 | |
*** chandankumar has joined #openstack-meeting | 05:57 | |
*** jorge_munoz has quit IRC | 05:59 | |
*** haomaiw__ has quit IRC | 06:00 | |
*** haomaiwang has joined #openstack-meeting | 06:00 | |
*** garyh has quit IRC | 06:01 | |
*** scheuran has joined #openstack-meeting | 06:01 | |
*** yamamoto has quit IRC | 06:03 | |
*** yingjun has joined #openstack-meeting | 06:06 | |
*** mrunge has joined #openstack-meeting | 06:11 | |
*** yingjun has quit IRC | 06:11 | |
*** haomai___ has joined #openstack-meeting | 06:16 | |
*** achanda_ has quit IRC | 06:17 | |
*** rajeshr has joined #openstack-meeting | 06:17 | |
*** akuznetsov has joined #openstack-meeting | 06:17 | |
*** scotm has quit IRC | 06:18 | |
*** rpodolyaka1 has joined #openstack-meeting | 06:19 | |
*** haomaiwang has quit IRC | 06:19 | |
*** shashankhegde has quit IRC | 06:19 | |
*** scotm has joined #openstack-meeting | 06:20 | |
*** scotm has quit IRC | 06:25 | |
*** topol has quit IRC | 06:25 | |
*** vivek-ebay has joined #openstack-meeting | 06:25 | |
*** julienve_ has joined #openstack-meeting | 06:28 | |
*** vivek-eb_ has quit IRC | 06:29 | |
*** vivek-ebay has quit IRC | 06:29 | |
*** achanda has joined #openstack-meeting | 06:29 | |
*** luqas has joined #openstack-meeting | 06:30 | |
*** tbarron_zZZZ has quit IRC | 06:30 | |
*** vivek-ebay has joined #openstack-meeting | 06:33 | |
*** yamamoto has joined #openstack-meeting | 06:34 | |
*** k4n0 has joined #openstack-meeting | 06:34 | |
*** ramishra has joined #openstack-meeting | 06:34 | |
*** adahms has quit IRC | 06:36 | |
*** mchalla has joined #openstack-meeting | 06:37 | |
*** rossk has joined #openstack-meeting | 06:37 | |
*** julienve_ has quit IRC | 06:37 | |
*** achanda has quit IRC | 06:38 | |
*** luis_fdez has joined #openstack-meeting | 06:38 | |
*** MaxV has quit IRC | 06:38 | |
*** jcoufal has joined #openstack-meeting | 06:39 | |
*** ramishra has quit IRC | 06:39 | |
*** julienve_ has joined #openstack-meeting | 06:39 | |
*** rossk has quit IRC | 06:42 | |
*** mchalla has quit IRC | 06:42 | |
*** JRobinson__ has quit IRC | 06:43 | |
*** yamamoto has quit IRC | 06:44 | |
*** flaper87|afk is now known as flaper87 | 06:46 | |
*** ramashri has quit IRC | 06:47 | |
*** ygbo has joined #openstack-meeting | 06:47 | |
*** garyh has joined #openstack-meeting | 06:49 | |
*** rpodolyaka has quit IRC | 06:49 | |
*** rpodolyaka has joined #openstack-meeting | 06:49 | |
*** reed has joined #openstack-meeting | 06:50 | |
*** kevinbenton has quit IRC | 06:50 | |
*** vivek-ebay has quit IRC | 06:51 | |
*** Fdot has joined #openstack-meeting | 06:51 | |
*** vivek-ebay has joined #openstack-meeting | 06:51 | |
*** ttrifonov is now known as ttrifonov_zZzz | 06:56 | |
*** vivek-ebay has quit IRC | 06:56 | |
*** doude has joined #openstack-meeting | 06:56 | |
*** eglynn has quit IRC | 06:57 | |
*** garyh has quit IRC | 06:59 | |
*** coolsvap|afk is now known as coolsvap | 07:02 | |
*** Mandell has quit IRC | 07:04 | |
*** aepifanov has joined #openstack-meeting | 07:05 | |
*** Mandell has joined #openstack-meeting | 07:06 | |
*** andreaf has quit IRC | 07:06 | |
*** oomichi has joined #openstack-meeting | 07:07 | |
*** oomichi has quit IRC | 07:07 | |
*** Mandell has quit IRC | 07:10 | |
*** esker has joined #openstack-meeting | 07:13 | |
*** rpodolyaka1 has quit IRC | 07:14 | |
*** rpodolyaka1 has joined #openstack-meeting | 07:14 | |
*** eglynn has joined #openstack-meeting | 07:15 | |
*** SumitNaiksatam has quit IRC | 07:16 | |
*** pradipta_away is now known as pradipta | 07:16 | |
*** mfedosin_ has joined #openstack-meeting | 07:17 | |
*** kebray has quit IRC | 07:17 | |
*** SumitNaiksatam has joined #openstack-meeting | 07:17 | |
*** pkoniszewski has joined #openstack-meeting | 07:21 | |
*** k4n0 has quit IRC | 07:24 | |
*** matrohon has joined #openstack-meeting | 07:24 | |
*** yamamoto has joined #openstack-meeting | 07:24 | |
*** julienve_ has quit IRC | 07:26 | |
*** eglynn has quit IRC | 07:27 | |
*** liusheng has quit IRC | 07:28 | |
*** k4n0 has joined #openstack-meeting | 07:28 | |
*** yamamoto has quit IRC | 07:29 | |
*** matrohon has quit IRC | 07:29 | |
*** liusheng has joined #openstack-meeting | 07:30 | |
*** killer_prince has joined #openstack-meeting | 07:30 | |
*** imsurit has quit IRC | 07:31 | |
*** mrmartin has quit IRC | 07:31 | |
*** alex_xu has quit IRC | 07:31 | |
*** matrohon has joined #openstack-meeting | 07:31 | |
*** mrmartin has joined #openstack-meeting | 07:31 | |
*** afazekas has joined #openstack-meeting | 07:33 | |
*** aloga has joined #openstack-meeting | 07:33 | |
*** henrynash has joined #openstack-meeting | 07:34 | |
*** ramishra has joined #openstack-meeting | 07:35 | |
*** MaxV has joined #openstack-meeting | 07:35 | |
*** rossk has joined #openstack-meeting | 07:37 | |
*** ramishra has quit IRC | 07:39 | |
*** safchain has joined #openstack-meeting | 07:39 | |
*** esker has quit IRC | 07:40 | |
*** rossk has quit IRC | 07:42 | |
*** ttrifonov_zZzz is now known as ttrifonov | 07:42 | |
*** akuznetsov has quit IRC | 07:46 | |
*** pnavarro has joined #openstack-meeting | 07:47 | |
*** garyh has joined #openstack-meeting | 07:49 | |
*** phil has joined #openstack-meeting | 07:49 | |
*** phil is now known as Guest5861 | 07:50 | |
*** salv-orlando has joined #openstack-meeting | 07:52 | |
*** haomai___ has quit IRC | 07:52 | |
*** mpavlase has joined #openstack-meeting | 07:52 | |
*** haomaiwa_ has joined #openstack-meeting | 07:53 | |
*** paragan has quit IRC | 07:57 | |
*** garyh has quit IRC | 07:59 | |
*** mfedosin_ has quit IRC | 08:00 | |
*** oomichi has joined #openstack-meeting | 08:01 | |
*** skraynev has quit IRC | 08:02 | |
*** yamamoto has joined #openstack-meeting | 08:02 | |
*** yamamoto has quit IRC | 08:06 | |
*** Longgeek has quit IRC | 08:07 | |
*** ngoswami has joined #openstack-meeting | 08:09 | |
*** sbalukoff has quit IRC | 08:10 | |
*** mpaolino has joined #openstack-meeting | 08:11 | |
*** eglynn has joined #openstack-meeting | 08:11 | |
*** sbalukoff has joined #openstack-meeting | 08:11 | |
*** skraynev has joined #openstack-meeting | 08:12 | |
*** hashar has joined #openstack-meeting | 08:15 | |
*** derekh has joined #openstack-meeting | 08:15 | |
*** kashyap has joined #openstack-meeting | 08:16 | |
*** haomaiwa_ has quit IRC | 08:17 | |
*** haomaiwang has joined #openstack-meeting | 08:17 | |
*** sbalukoff has quit IRC | 08:18 | |
*** scotm has joined #openstack-meeting | 08:21 | |
*** eglynn has quit IRC | 08:21 | |
*** nellysmitt has joined #openstack-meeting | 08:22 | |
*** paragan has joined #openstack-meeting | 08:22 | |
*** paragan has joined #openstack-meeting | 08:22 | |
*** berendt has joined #openstack-meeting | 08:22 | |
*** neeti has joined #openstack-meeting | 08:23 | |
*** neeti has quit IRC | 08:25 | |
*** scotm has quit IRC | 08:25 | |
*** sbalukoff has joined #openstack-meeting | 08:26 | |
*** paragan has quit IRC | 08:27 | |
*** alex_xu has joined #openstack-meeting | 08:30 | |
*** garyh has joined #openstack-meeting | 08:30 | |
*** haomaiw__ has joined #openstack-meeting | 08:31 | |
*** yamamoto has joined #openstack-meeting | 08:32 | |
*** haomaiwang has quit IRC | 08:33 | |
*** ramishra has joined #openstack-meeting | 08:33 | |
*** e0ne has joined #openstack-meeting | 08:34 | |
*** yamamoto has quit IRC | 08:37 | |
*** SridharG has joined #openstack-meeting | 08:37 | |
*** rossk has joined #openstack-meeting | 08:37 | |
*** paragan has joined #openstack-meeting | 08:38 | |
*** mchalla has joined #openstack-meeting | 08:38 | |
*** yingjun has joined #openstack-meeting | 08:40 | |
*** garyh has quit IRC | 08:41 | |
*** rossk has quit IRC | 08:41 | |
*** mchalla has quit IRC | 08:43 | |
*** zz_johnthetubagu is now known as johnthetubaguy | 08:46 | |
*** luis_fdez has quit IRC | 08:50 | |
*** nellysmitt has quit IRC | 08:53 | |
*** SridharG has left #openstack-meeting | 08:54 | |
*** ramishra has quit IRC | 08:55 | |
*** igordcard has joined #openstack-meeting | 09:02 | |
*** pkoniszewski has quit IRC | 09:03 | |
*** akuznetsov has joined #openstack-meeting | 09:05 | |
*** Longgeek has joined #openstack-meeting | 09:05 | |
*** oanufriev has joined #openstack-meeting | 09:05 | |
*** Longgeek has quit IRC | 09:07 | |
*** Longgeek has joined #openstack-meeting | 09:08 | |
*** julienve_ has joined #openstack-meeting | 09:09 | |
*** garyh has joined #openstack-meeting | 09:12 | |
*** mpaolino has quit IRC | 09:17 | |
*** _nadya_ has joined #openstack-meeting | 09:17 | |
*** ramishra has joined #openstack-meeting | 09:19 | |
*** paragan has quit IRC | 09:20 | |
*** paragan has joined #openstack-meeting | 09:21 | |
*** paragan has quit IRC | 09:21 | |
*** paragan has joined #openstack-meeting | 09:21 | |
*** garyh has quit IRC | 09:22 | |
*** shankarprasad has quit IRC | 09:22 | |
*** shankarprasad has joined #openstack-meeting | 09:23 | |
*** fnaval has quit IRC | 09:26 | |
*** yingjun has quit IRC | 09:27 | |
*** yingjun has joined #openstack-meeting | 09:27 | |
*** flaviof_zzz is now known as flaviof | 09:27 | |
*** ramishra has quit IRC | 09:29 | |
*** js1123 has joined #openstack-meeting | 09:29 | |
*** yingjun has quit IRC | 09:31 | |
*** killer_prince has quit IRC | 09:31 | |
*** yamamoto has joined #openstack-meeting | 09:32 | |
*** sbalukoff1 has joined #openstack-meeting | 09:36 | |
*** yamamoto has quit IRC | 09:36 | |
*** rossk has joined #openstack-meeting | 09:37 | |
*** sbalukoff has quit IRC | 09:38 | |
*** hashar has quit IRC | 09:38 | |
*** nosnos has quit IRC | 09:39 | |
*** nosnos has joined #openstack-meeting | 09:40 | |
*** killer_prince has joined #openstack-meeting | 09:41 | |
*** _nadya_ has quit IRC | 09:41 | |
*** rossk has quit IRC | 09:41 | |
*** nosnos has quit IRC | 09:44 | |
*** oomichi has quit IRC | 09:45 | |
*** hashar has joined #openstack-meeting | 09:47 | |
*** killer_prince has quit IRC | 09:47 | |
*** lazy_prince has quit IRC | 09:47 | |
*** lazy_prince has joined #openstack-meeting | 09:48 | |
*** jlanoux has joined #openstack-meeting | 09:52 | |
*** xuhanp has quit IRC | 09:52 | |
*** che-arne has joined #openstack-meeting | 09:54 | |
*** andreykurilin_ has joined #openstack-meeting | 09:54 | |
*** pelix has joined #openstack-meeting | 09:57 | |
*** ramishra has joined #openstack-meeting | 10:00 | |
*** jang1 has joined #openstack-meeting | 10:00 | |
*** matel is now known as matel_eat | 10:00 | |
*** kevinbenton has joined #openstack-meeting | 10:03 | |
*** ramishra has quit IRC | 10:04 | |
*** jgallard has joined #openstack-meeting | 10:08 | |
*** garyh has joined #openstack-meeting | 10:12 | |
*** jgallard has quit IRC | 10:14 | |
*** yingjun has joined #openstack-meeting | 10:16 | |
*** andreykurilin_ has quit IRC | 10:21 | |
*** garyh has quit IRC | 10:22 | |
*** igordcard has quit IRC | 10:24 | |
*** igordcard has joined #openstack-meeting | 10:25 | |
*** alexpilotti has joined #openstack-meeting | 10:28 | |
*** epico has quit IRC | 10:30 | |
*** julienve_ has quit IRC | 10:30 | |
*** paragan has quit IRC | 10:32 | |
*** yamamoto has joined #openstack-meeting | 10:32 | |
*** mmedvede has joined #openstack-meeting | 10:36 | |
*** yamamoto has quit IRC | 10:36 | |
*** rossk has joined #openstack-meeting | 10:37 | |
*** mchalla has joined #openstack-meeting | 10:40 | |
*** rossk has quit IRC | 10:41 | |
*** mchalla has quit IRC | 10:45 | |
*** mpavlase has quit IRC | 10:48 | |
*** Longgeek has quit IRC | 10:52 | |
*** jhenner has joined #openstack-meeting | 10:52 | |
*** yingjun has quit IRC | 10:56 | |
*** yingjun has joined #openstack-meeting | 10:56 | |
*** yamamoto has joined #openstack-meeting | 10:57 | |
*** pradipta is now known as pradipta_away | 10:59 | |
*** ramishra has joined #openstack-meeting | 11:00 | |
*** _nadya_ has joined #openstack-meeting | 11:03 | |
*** baoli has joined #openstack-meeting | 11:04 | |
*** IanGovett has joined #openstack-meeting | 11:04 | |
*** ramishra has quit IRC | 11:05 | |
*** jprovazn has joined #openstack-meeting | 11:06 | |
*** hashar has quit IRC | 11:09 | |
*** yamahata has quit IRC | 11:09 | |
*** sbalukoff1 has quit IRC | 11:10 | |
*** garyh has joined #openstack-meeting | 11:12 | |
*** garyh has quit IRC | 11:23 | |
*** kopparam has joined #openstack-meeting | 11:33 | |
*** Longgeek has joined #openstack-meeting | 11:34 | |
*** miqui has quit IRC | 11:34 | |
*** kopparam has quit IRC | 11:37 | |
*** rossk has joined #openstack-meeting | 11:37 | |
*** lazy_prince is now known as killer_prince | 11:37 | |
*** cbouch has joined #openstack-meeting | 11:39 | |
*** yamamoto has quit IRC | 11:40 | |
*** isviridov_away is now known as isviridov | 11:40 | |
*** k4n0 has quit IRC | 11:42 | |
*** rossk has quit IRC | 11:42 | |
*** jgallard has joined #openstack-meeting | 11:51 | |
*** rajeshr has quit IRC | 11:56 | |
*** adalbas has joined #openstack-meeting | 11:58 | |
*** ramishra has joined #openstack-meeting | 12:01 | |
*** ramishra has quit IRC | 12:06 | |
*** matel_eat is now known as matel | 12:06 | |
*** sgordon_ has joined #openstack-meeting | 12:07 | |
*** dprince has joined #openstack-meeting | 12:08 | |
*** mwagner_lap has joined #openstack-meeting | 12:08 | |
*** weshay has joined #openstack-meeting | 12:09 | |
*** ramishra has joined #openstack-meeting | 12:09 | |
*** Poornima has quit IRC | 12:12 | |
*** garyh has joined #openstack-meeting | 12:12 | |
*** shankarprasad has quit IRC | 12:18 | |
*** beagles is now known as seagulls | 12:18 | |
*** aysyd has joined #openstack-meeting | 12:21 | |
*** garyh has quit IRC | 12:22 | |
*** coolsvap is now known as coolsvap|afk | 12:26 | |
*** rrrobbb has joined #openstack-meeting | 12:27 | |
*** ramishra has quit IRC | 12:28 | |
*** imsurit has joined #openstack-meeting | 12:28 | |
*** shankarprasad has joined #openstack-meeting | 12:30 | |
*** hashar has joined #openstack-meeting | 12:30 | |
*** dkranz has joined #openstack-meeting | 12:32 | |
*** mchalla has joined #openstack-meeting | 12:35 | |
*** chandankumar has quit IRC | 12:36 | |
*** aepifanov has quit IRC | 12:37 | |
*** rossk has joined #openstack-meeting | 12:37 | |
*** dims has joined #openstack-meeting | 12:37 | |
*** MeganR has joined #openstack-meeting | 12:39 | |
*** mchalla has quit IRC | 12:39 | |
*** igordcard has quit IRC | 12:40 | |
*** eharney has quit IRC | 12:40 | |
*** igordcard has joined #openstack-meeting | 12:42 | |
*** rossk has quit IRC | 12:42 | |
*** ayoung has joined #openstack-meeting | 12:45 | |
*** julienve_ has joined #openstack-meeting | 12:46 | |
*** mpaolino has joined #openstack-meeting | 12:47 | |
*** rpodolyaka has quit IRC | 12:48 | |
*** kylek3h has quit IRC | 12:50 | |
*** dims has quit IRC | 12:52 | |
*** dims has joined #openstack-meeting | 12:52 | |
*** MeganR has quit IRC | 12:53 | |
*** rushiagr is now known as rushiagr_away | 12:55 | |
*** pnavarro has quit IRC | 12:56 | |
*** _nadya_ has quit IRC | 12:57 | |
*** HenryG has quit IRC | 12:57 | |
*** _nadya_ has joined #openstack-meeting | 12:58 | |
*** ramishra has joined #openstack-meeting | 12:59 | |
*** jecarey has quit IRC | 13:00 | |
*** ramishra has quit IRC | 13:00 | |
*** ramishra has joined #openstack-meeting | 13:01 | |
*** igordcard has quit IRC | 13:02 | |
*** hashar has quit IRC | 13:02 | |
*** hashar has joined #openstack-meeting | 13:02 | |
*** boden has joined #openstack-meeting | 13:03 | |
*** e0ne has quit IRC | 13:03 | |
*** MeganR has joined #openstack-meeting | 13:04 | |
*** e0ne has joined #openstack-meeting | 13:04 | |
*** MeganR has quit IRC | 13:04 | |
*** bknudson has joined #openstack-meeting | 13:05 | |
*** ramishra has quit IRC | 13:05 | |
*** jcoufal has quit IRC | 13:07 | |
*** rakesh_hs has quit IRC | 13:09 | |
*** _nadya_ has quit IRC | 13:10 | |
*** garyh has joined #openstack-meeting | 13:12 | |
*** julim has joined #openstack-meeting | 13:12 | |
*** eharney has joined #openstack-meeting | 13:13 | |
*** dboik has quit IRC | 13:14 | |
*** neelashah has joined #openstack-meeting | 13:14 | |
*** jecarey has joined #openstack-meeting | 13:14 | |
*** barrett has joined #openstack-meeting | 13:16 | |
*** bill_az has joined #openstack-meeting | 13:16 | |
*** PaulMurray has joined #openstack-meeting | 13:16 | |
*** PaulMurray has left #openstack-meeting | 13:17 | |
*** ivasev has joined #openstack-meeting | 13:17 | |
*** dkranz has quit IRC | 13:19 | |
*** mwagner_lap has quit IRC | 13:20 | |
*** MaxV has quit IRC | 13:21 | |
*** yaguang has quit IRC | 13:21 | |
*** yaguang has joined #openstack-meeting | 13:22 | |
*** garyh has quit IRC | 13:23 | |
*** jcoufal has joined #openstack-meeting | 13:25 | |
*** kylek3h has joined #openstack-meeting | 13:27 | |
*** esker has joined #openstack-meeting | 13:28 | |
*** joesavak has joined #openstack-meeting | 13:29 | |
*** MaxV has joined #openstack-meeting | 13:30 | |
*** nealph_ has joined #openstack-meeting | 13:31 | |
*** vhoward has joined #openstack-meeting | 13:33 | |
*** dkranz has joined #openstack-meeting | 13:35 | |
*** sbalukoff has joined #openstack-meeting | 13:35 | |
*** mwagner_lap has joined #openstack-meeting | 13:36 | |
*** rrrobbb has quit IRC | 13:36 | |
*** nealph_ has quit IRC | 13:36 | |
*** nealph_ has joined #openstack-meeting | 13:37 | |
*** rossk has joined #openstack-meeting | 13:37 | |
*** mchalla has joined #openstack-meeting | 13:41 | |
*** rossk has quit IRC | 13:42 | |
*** rrrobbb has joined #openstack-meeting | 13:43 | |
*** bill_az has quit IRC | 13:43 | |
*** rushiagr_away is now known as rushiagr | 13:44 | |
*** jsavak has joined #openstack-meeting | 13:44 | |
*** Guest5861 has quit IRC | 13:45 | |
*** mchalla has quit IRC | 13:46 | |
*** jprovazn has quit IRC | 13:47 | |
*** joesavak has quit IRC | 13:48 | |
*** dboik has joined #openstack-meeting | 13:48 | |
*** juzuluag has joined #openstack-meeting | 13:48 | |
*** nealph_ has quit IRC | 13:49 | |
*** topol has joined #openstack-meeting | 13:50 | |
*** johnpur has joined #openstack-meeting | 13:50 | |
*** kashyap is now known as kashyap_afk | 13:51 | |
*** jehb has joined #openstack-meeting | 13:52 | |
*** rbak has joined #openstack-meeting | 13:53 | |
*** balajiiyer has joined #openstack-meeting | 13:54 | |
*** zns has joined #openstack-meeting | 13:55 | |
*** Murali_ has joined #openstack-meeting | 13:59 | |
*** tflower has joined #openstack-meeting | 13:59 | |
*** ayoung has quit IRC | 14:03 | |
*** vijendar has joined #openstack-meeting | 14:05 | |
*** dansmith is now known as superdan | 14:06 | |
*** e0ne has quit IRC | 14:09 | |
*** rickerc has quit IRC | 14:11 | |
*** eddie__ has joined #openstack-meeting | 14:11 | |
*** garyh has joined #openstack-meeting | 14:12 | |
*** sdake has quit IRC | 14:15 | |
*** otherjon has quit IRC | 14:15 | |
*** otherjon has joined #openstack-meeting | 14:15 | |
*** e0ne has joined #openstack-meeting | 14:15 | |
*** rickerc has joined #openstack-meeting | 14:16 | |
*** sbalukoff1 has joined #openstack-meeting | 14:16 | |
*** jaypipes is now known as leakypipes | 14:16 | |
*** e0ne has quit IRC | 14:17 | |
*** e0ne has joined #openstack-meeting | 14:18 | |
*** zns has quit IRC | 14:18 | |
*** sbalukoff has quit IRC | 14:19 | |
*** shashankhegde has joined #openstack-meeting | 14:22 | |
*** sdake has joined #openstack-meeting | 14:22 | |
*** zns has joined #openstack-meeting | 14:22 | |
*** johnpur has left #openstack-meeting | 14:22 | |
*** garyh has quit IRC | 14:23 | |
*** kebray has joined #openstack-meeting | 14:23 | |
*** hashar has quit IRC | 14:23 | |
*** hashar has joined #openstack-meeting | 14:24 | |
*** paragan has joined #openstack-meeting | 14:24 | |
*** igordcard has joined #openstack-meeting | 14:25 | |
*** mattgriffin has joined #openstack-meeting | 14:25 | |
*** thangp has joined #openstack-meeting | 14:27 | |
*** mtanino has joined #openstack-meeting | 14:27 | |
*** zz_jgrimm is now known as jgrimm | 14:29 | |
*** rosmaita_ is now known as rosmaita | 14:30 | |
*** HenryG has joined #openstack-meeting | 14:31 | |
*** ramishra has joined #openstack-meeting | 14:31 | |
*** markmcclain has joined #openstack-meeting | 14:31 | |
*** david-lyle has joined #openstack-meeting | 14:34 | |
*** scheuran has quit IRC | 14:36 | |
*** rossk has joined #openstack-meeting | 14:37 | |
*** yingjun has quit IRC | 14:38 | |
*** yingjun has joined #openstack-meeting | 14:38 | |
*** dprince has quit IRC | 14:38 | |
*** stevemar has joined #openstack-meeting | 14:40 | |
*** dhellmann is now known as dhellmann_ | 14:40 | |
*** dhellmann_ is now known as dhellmann | 14:41 | |
*** rossk has quit IRC | 14:42 | |
*** yingjun has quit IRC | 14:43 | |
*** shashankhegde has quit IRC | 14:47 | |
*** jorge_munoz has joined #openstack-meeting | 14:47 | |
*** rbak has quit IRC | 14:47 | |
*** rbak has joined #openstack-meeting | 14:49 | |
*** ngoswami has quit IRC | 14:49 | |
*** garyh has joined #openstack-meeting | 14:52 | |
*** tbarron has joined #openstack-meeting | 14:55 | |
*** armax has joined #openstack-meeting | 14:57 | |
*** flaviof is now known as flaviof_zzz | 14:57 | |
*** kylek3h has quit IRC | 14:58 | |
*** jsavak has quit IRC | 14:59 | |
*** luqas has quit IRC | 15:00 | |
*** cjellick has joined #openstack-meeting | 15:02 | |
*** carl_baldwin has joined #openstack-meeting | 15:04 | |
*** _nadya_ has joined #openstack-meeting | 15:04 | |
*** rwsu has joined #openstack-meeting | 15:05 | |
*** kylek3h has joined #openstack-meeting | 15:05 | |
*** yaguang has quit IRC | 15:07 | |
*** Mandell has joined #openstack-meeting | 15:07 | |
*** nellysmitt has joined #openstack-meeting | 15:07 | |
*** yingjun has joined #openstack-meeting | 15:08 | |
*** tsekiyama has joined #openstack-meeting | 15:10 | |
*** otherwiseguy has joined #openstack-meeting | 15:10 | |
*** schwicht has joined #openstack-meeting | 15:11 | |
*** oanufriev has quit IRC | 15:11 | |
*** yingjun has quit IRC | 15:13 | |
*** IanGovett1 has joined #openstack-meeting | 15:13 | |
*** IanGovett1 has left #openstack-meeting | 15:14 | |
*** afazekas has quit IRC | 15:15 | |
*** IanGovett has quit IRC | 15:15 | |
*** david-lyle has quit IRC | 15:17 | |
*** david-lyle has joined #openstack-meeting | 15:18 | |
*** fnaval has joined #openstack-meeting | 15:18 | |
*** kmartin has quit IRC | 15:19 | |
*** nealph_ has joined #openstack-meeting | 15:19 | |
*** dims is now known as dimsum_ | 15:21 | |
*** colinmcnamara has joined #openstack-meeting | 15:23 | |
*** nealph_ has quit IRC | 15:24 | |
*** ramishra has quit IRC | 15:27 | |
*** andreaf has joined #openstack-meeting | 15:27 | |
*** krotscheck has quit IRC | 15:28 | |
*** juzuluag has quit IRC | 15:29 | |
*** krotscheck has joined #openstack-meeting | 15:29 | |
*** jgallard has quit IRC | 15:32 | |
*** scotm has joined #openstack-meeting | 15:35 | |
*** mrunge has quit IRC | 15:36 | |
*** mchalla has joined #openstack-meeting | 15:37 | |
*** rromans has joined #openstack-meeting | 15:37 | |
*** rossk has joined #openstack-meeting | 15:37 | |
*** colinmcnamara has quit IRC | 15:37 | |
*** sarob has quit IRC | 15:38 | |
*** henrynash has quit IRC | 15:39 | |
*** dguitarbite has quit IRC | 15:39 | |
*** mchalla has quit IRC | 15:41 | |
*** rossk has quit IRC | 15:42 | |
*** Mandell has quit IRC | 15:43 | |
*** flaviof_zzz has quit IRC | 15:44 | |
*** thedodd has joined #openstack-meeting | 15:45 | |
*** armax has quit IRC | 15:47 | |
*** bauzas is now known as bauzer | 15:48 | |
*** armax has joined #openstack-meeting | 15:49 | |
*** nirupma has joined #openstack-meeting | 15:49 | |
*** hashar has quit IRC | 15:50 | |
*** armax has quit IRC | 15:50 | |
*** hashar has joined #openstack-meeting | 15:50 | |
*** hashar has quit IRC | 15:52 | |
*** hashar has joined #openstack-meeting | 15:52 | |
*** ramashri has joined #openstack-meeting | 15:55 | |
*** reed has quit IRC | 15:55 | |
*** sajeesh has joined #openstack-meeting | 15:55 | |
*** kmartin has joined #openstack-meeting | 15:56 | |
nirupma | Hi Sajeesh | 15:57 |
*** otherwiseguy has quit IRC | 15:57 | |
sajeesh | hi nirupma | 15:57 |
*** otherwiseguy has joined #openstack-meeting | 15:57 | |
*** balajiiyer has quit IRC | 15:58 | |
*** e0ne has quit IRC | 15:58 | |
*** balajiiyer has joined #openstack-meeting | 15:58 | |
*** markmcclain has quit IRC | 15:58 | |
*** balajiiyer has left #openstack-meeting | 15:58 | |
*** stevemar has quit IRC | 15:58 | |
*** raildo has joined #openstack-meeting | 15:59 | |
*** stevemar has joined #openstack-meeting | 16:00 | |
*** thiagop has joined #openstack-meeting | 16:01 | |
raildo | hi all | 16:01 |
*** jlanoux has quit IRC | 16:01 | |
*** otherwiseguy has quit IRC | 16:02 | |
sajeesh | hi raildo | 16:02 |
raildo | hi sajeesh | 16:02 |
*** berendt has quit IRC | 16:02 | |
*** otherwiseguy has joined #openstack-meeting | 16:02 | |
raildo | sajeesh, we have something to discuss today? | 16:03 |
sajeesh | yes ofcourse | 16:03 |
sajeesh | regarding quota management | 16:03 |
raildo | so, let's go :) | 16:03 |
*** ramashri_ has joined #openstack-meeting | 16:03 | |
sajeesh | ok :-) | 16:03 |
nirupma | hi raildo | 16:03 |
raildo | hi nirupma | 16:04 |
*** otherwiseguy has quit IRC | 16:04 | |
thiagop | Hello all! | 16:04 |
sajeesh | hi thiago | 16:04 |
*** otherwiseguy has joined #openstack-meeting | 16:04 | |
raildo | #startmeeting Hierarchical Multitenancy | 16:05 |
thiagop | it's been a while | 16:05 |
openstack | Meeting started Fri Oct 10 16:05:07 2014 UTC and is due to finish in 60 minutes. The chair is raildo. Information about MeetBot at http://wiki.debian.org/MeetBot. | 16:05 |
nirupma | hi thiago | 16:05 |
openstack | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 16:05 |
*** openstack changes topic to " (Meeting topic: Hierarchical Multitenancy)" | 16:05 | |
openstack | The meeting name has been set to 'hierarchical_multitenancy' | 16:05 |
raildo | #topic quota management | 16:05 |
*** openstack changes topic to "quota management (Meeting topic: Hierarchical Multitenancy)" | 16:05 | |
*** andreaf has quit IRC | 16:05 | |
raildo | sajeesh, maybe you can lead this point? | 16:06 |
sajeesh | ok... | 16:06 |
*** ramashri has quit IRC | 16:06 | |
sajeesh | raildo,I think there was a discussion on moving quota management to keystone... | 16:06 |
sajeesh | can you please eloborate it | 16:06 |
*** hashar has quit IRC | 16:06 | |
*** bill_az has joined #openstack-meeting | 16:08 | |
*** julienve_ has quit IRC | 16:08 | |
sajeesh | I am telling about the mail that you have forwarded to us | 16:08 |
raildo | I still do not know everything about it, but I believe the proposal is send the quotas implementation for the Keystone or a new service | 16:09 |
sajeesh | ok | 16:09 |
raildo | I saw that email and thought you would be interesting to discuss | 16:09 |
sajeesh | yes | 16:09 |
raildo | #link https://www.mail-archive.com/openstack-dev@lists.openstack.org/msg36883.html | 16:09 |
sajeesh | what I had understood was that,quota management would be moved towards keystone | 16:10 |
raildo | #link https://wiki.openstack.org/wiki/Blazar | 16:10 |
raildo | maybe this Blazar can control quotas? | 16:10 |
raildo | i don't know, i have to investigate more | 16:11 |
sajeesh | ok | 16:11 |
*** yamahata has joined #openstack-meeting | 16:11 | |
*** derekh has quit IRC | 16:11 | |
*** aepifanov has joined #openstack-meeting | 16:11 | |
*** thedodd has quit IRC | 16:11 | |
*** MaxV has quit IRC | 16:11 | |
sajeesh | there were some comments from vishy as well | 16:12 |
*** vivek-ebay has joined #openstack-meeting | 16:12 | |
raildo | #action Raildo (and others) understand more about Quota management and enforcement across projects | 16:12 |
*** tsv has joined #openstack-meeting | 16:12 | |
*** MarkAtwood has joined #openstack-meeting | 16:12 | |
vishy | the discussion on the mailing list is to try to move the quota limits into keystone | 16:12 |
vishy | but do enforcement via a shared library in oslo | 16:13 |
sajeesh | ok.. | 16:13 |
raildo | vishy, nice | 16:13 |
raildo | thank you | 16:13 |
*** armax has joined #openstack-meeting | 16:13 | |
sajeesh | thanks vishy for joining | 16:13 |
*** ramashri_ has quit IRC | 16:13 | |
*** thedodd has joined #openstack-meeting | 16:13 | |
raildo | vishy, This may affect the current implementation of quotas in Nova, right? | 16:14 |
*** rbak has quit IRC | 16:14 | |
vishy | yes but the library will most likely be taken with some nova with some modifications | 16:14 |
vishy | i would think | 16:14 |
*** rbak has joined #openstack-meeting | 16:15 | |
sajeesh | ok | 16:15 |
sajeesh | vishy,do you expect these changes to go in kilo ? | 16:15 |
*** cody-somerville has quit IRC | 16:16 | |
vishy | i don’t know | 16:16 |
sajeesh | ok | 16:16 |
vishy | no one has officially signed up to do them yet | 16:16 |
sajeesh | ok | 16:16 |
thiagop | so, you don't think it's too much a breakthrough regarding the hierarchical quotas? | 16:16 |
*** hemnaway is now known as hemna | 16:16 | |
*** ygbo has quit IRC | 16:17 | |
sajeesh | vishy, regarding nested quota driver in nova,the development is over and I am testing it now.Do I need to go ahead with it ? | 16:18 |
*** flaviof_zzz has joined #openstack-meeting | 16:19 | |
*** eharney_ has joined #openstack-meeting | 16:19 | |
*** sarob has joined #openstack-meeting | 16:19 | |
*** pballand has quit IRC | 16:19 | |
vishy | sajeesh: yes | 16:19 |
vishy | the shared library needs nested quotas too | 16:20 |
sajeesh | ok,vishy | 16:20 |
raildo | vishy, Thanks for the explanation | 16:20 |
sajeesh | vishy ,thanks a lot | 16:20 |
tsv | vishy, i started looking at quota support for barbican by looking at nova impl as example. could you please give some pointers to the shared library wiki ? | 16:20 |
*** eharney has quit IRC | 16:21 | |
*** eharney_ is now known as eharney | 16:21 | |
*** jhenner has quit IRC | 16:21 | |
raildo | next topic? | 16:21 |
sajeesh | ok | 16:21 |
sajeesh | raildo,any updates from keystone side ? | 16:21 |
raildo | sajeesh, we are receiving some reviews, but not critical :) | 16:22 |
sajeesh | ok | 16:22 |
*** ttrifonov is now known as ttrifonov_zZzz | 16:22 | |
raildo | #topic Hierarchical Projects in Keystone - Reviews | 16:22 |
sajeesh | :-) | 16:22 |
*** openstack changes topic to "Hierarchical Projects in Keystone - Reviews (Meeting topic: Hierarchical Multitenancy)" | 16:22 | |
thiagop | nirupma: what are your thoughts so far? | 16:23 |
raildo | sajeesh, If you want to review: | 16:23 |
raildo | #link http://paste.openstack.org/raw/120195/ | 16:24 |
nirupma | if i create a new project and assign no members to it | 16:24 |
sajeesh | raildo,I will do | 16:24 |
raildo | we have a lot os patches hahaha | 16:24 |
nirupma | then even the admin cannot create new sub-projects. | 16:24 |
raildo | of* | 16:24 |
*** yamahata has quit IRC | 16:24 | |
vishy | tsv: I don’t think it exists yet | 16:24 |
sajeesh | thiago,have you seen the feedback of vinod ? | 16:24 |
nirupma | now if i assign him the admin role then he can create sub-projecta' | 16:25 |
nirupma | but if i assign him the member role, he is still able to create sub-projects. | 16:25 |
nirupma | I am not sure if its correct | 16:25 |
*** rmoe has quit IRC | 16:25 | |
nirupma | thiago: what do u think? | 16:26 |
tsv | vishy, thanks. will look forward for it | 16:26 |
*** fnaval has quit IRC | 16:27 | |
*** fnaval has joined #openstack-meeting | 16:27 | |
thiagop | sajeesh: yes. I had also worked on it but some changes had no effect when I tested on Apache | 16:28 |
sajeesh | ok | 16:28 |
sajeesh | main issue was that parent was not coming in the list after it is created | 16:28 |
thiagop | sajeesh: it's a session problem | 16:29 |
sajeesh | ok | 16:29 |
nirupma | adding to sajeesh's comment | 16:29 |
*** mudassirlatif has joined #openstack-meeting | 16:29 | |
nirupma | that issue is met even when we delete a project | 16:29 |
thiagop | I'll work on it as soon as I can | 16:29 |
*** eharney has quit IRC | 16:30 | |
sajeesh | ok,thanks thiago | 16:30 |
thiagop | #action fix token renewal on creating/deleting projects | 16:30 |
*** kebray has quit IRC | 16:31 | |
thiagop | nirupma: the deleted project is still being shown on the list, right? | 16:31 |
nirupma | yes | 16:31 |
*** leeantho has joined #openstack-meeting | 16:31 | |
*** baoli has quit IRC | 16:31 | |
raildo | #topic Design Session Summit | 16:31 |
*** openstack changes topic to "Design Session Summit (Meeting topic: Hierarchical Multitenancy)" | 16:31 | |
raildo | #link https://etherpad.openstack.org/p/kilo-crossproject-summit-topics | 16:31 |
*** ramashri has joined #openstack-meeting | 16:32 | |
*** ChuckC__ has joined #openstack-meeting | 16:32 | |
thiagop | nirupma: I'll take a look on the roles problems also. I'll give you some feedback next week. | 16:33 |
raildo | I talked with morganfainberg and david-lyle , we are well nearby to get a space to discuss our features :) | 16:33 |
nirupma | Thanks thiago | 16:33 |
*** matrohon has quit IRC | 16:33 | |
sajeesh | ok | 16:33 |
raildo | So we have to be all prepared to advance in this session | 16:35 |
*** noslzzp has joined #openstack-meeting | 16:35 | |
sajeesh | ok | 16:35 |
raildo | nirupma, You'll be there, right? | 16:35 |
nirupma | yes | 16:36 |
*** scotm has quit IRC | 16:36 | |
*** scotm has joined #openstack-meeting | 16:36 | |
*** baoli has joined #openstack-meeting | 16:36 | |
raildo | great :) | 16:36 |
nirupma | raildo: What all should I prepare for the summit? | 16:36 |
nirupma | i mean what all should i read and understand well | 16:37 |
raildo | So far we have three main topics: New features in Keystone, Horizon Implementation, and quota support for hierarchical projects in Nova and other services | 16:37 |
raildo | nirupma, #link https://etherpad.openstack.org/p/kilo-crossproject-summit-topics | 16:37 |
*** rossk has joined #openstack-meeting | 16:37 | |
nirupma | yeh i have read the etherpad | 16:37 |
raildo | You can look for Hierarchical Project in cross-projects ( Raildo Mascena 'raildo') | 16:37 |
nirupma | ok | 16:38 |
*** pballand has joined #openstack-meeting | 16:38 | |
raildo | nirupma, I intend to discuss this and anything else that we can think to the summit | 16:38 |
nirupma | ok | 16:39 |
sajeesh | raildo,any update is available regarding python-openstackclient ? | 16:39 |
*** safchain has quit IRC | 16:39 | |
raildo | nirupma, I believe that you may be more concerned with the quota support for hierarchical projects in Nova and other services | 16:39 |
sajeesh | I mean the unified client ? | 16:40 |
*** schwicke has joined #openstack-meeting | 16:40 | |
*** fnaval has quit IRC | 16:40 | |
nirupma | yes | 16:40 |
raildo | sajeesh, implementation is ready and is under review | 16:40 |
sajeesh | ok | 16:40 |
raildo | the implementation* | 16:40 |
nirupma | sajeesh has worked a lot on it | 16:40 |
sajeesh | hi shwicke | 16:40 |
raildo | #link https://review.openstack.org/#/c/123539 | 16:41 |
raildo | hi schwicke | 16:41 |
nirupma | hi shwicke | 16:41 |
*** jcoufal has quit IRC | 16:41 | |
raildo | #link https://review.openstack.org/#/c/121101 | 16:41 |
thiagop | hi schwicke | 16:42 |
*** rossk has quit IRC | 16:42 | |
*** ChuckC__ has quit IRC | 16:42 | |
*** vivek-ebay has quit IRC | 16:42 | |
*** rmoe has joined #openstack-meeting | 16:42 | |
*** niclem has joined #openstack-meeting | 16:42 | |
*** vivek-ebay has joined #openstack-meeting | 16:42 | |
*** krtaylor has quit IRC | 16:42 | |
*** slagle has quit IRC | 16:44 | |
*** schwicke has quit IRC | 16:44 | |
raildo | Something else to be discussed? | 16:44 |
sajeesh | nothing from my side | 16:45 |
*** mpaolino has quit IRC | 16:45 | |
*** e0ne has joined #openstack-meeting | 16:46 | |
thiagop | just a question: sajeesh nirupma , what are your thoughts about the interface? Is it too ugly? Difficult to use? | 16:46 |
*** vivek-ebay has quit IRC | 16:46 | |
nirupma | i think its rather very easy to understand | 16:47 |
sajeesh | Thiago,the interface is good | 16:47 |
nirupma | and the tree structure of project is clearly visible | 16:47 |
sajeesh | yes | 16:47 |
raildo | great :) | 16:47 |
thiagop | we made a proposal to change the role assignment experience | 16:48 |
sajeesh | ok | 16:48 |
thiagop | we need to give it a way to set it as inherited or not | 16:48 |
thiagop | I'll send it to you by email ASAP | 16:48 |
sajeesh | ok,thanks thiago | 16:48 |
nirupma | ok | 16:48 |
raildo | so until next week | 16:49 |
raildo | #endmeeting | 16:49 |
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings" | 16:49 | |
openstack | Meeting ended Fri Oct 10 16:49:53 2014 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 16:49 |
openstack | Minutes: http://eavesdrop.openstack.org/meetings/hierarchical_multitenancy/2014/hierarchical_multitenancy.2014-10-10-16.05.html | 16:49 |
sajeesh | ok raildo | 16:49 |
openstack | Minutes (text): http://eavesdrop.openstack.org/meetings/hierarchical_multitenancy/2014/hierarchical_multitenancy.2014-10-10-16.05.txt | 16:49 |
openstack | Log: http://eavesdrop.openstack.org/meetings/hierarchical_multitenancy/2014/hierarchical_multitenancy.2014-10-10-16.05.log.html | 16:49 |
*** schwicke has joined #openstack-meeting | 16:50 | |
raildo | bye guys, have a nice week | 16:50 |
sajeesh | thanks and good bye to all :-) | 16:50 |
nirupma | Happy Weekend to all!!! | 16:50 |
sajeesh | Nice weekend :-) | 16:50 |
schwicke | sorry, I missed it | 16:50 |
thiagop | have a nice weekend you all | 16:50 |
schwicke | had problems to connect. We lost our internet connection | 16:50 |
sajeesh | hi schwicke,we missed you | 16:51 |
schwicke | yeah, sorry. | 16:51 |
schwicke | thanks for taking over the chair ;-) | 16:51 |
sajeesh | thanks raildo | 16:51 |
schwicke | will checkout the logs :) | 16:51 |
sajeesh | ok | 16:52 |
raildo | hi schwicke | 16:52 |
schwicke | raildo: hi! | 16:52 |
*** esker has quit IRC | 16:53 | |
*** kylek3h has quit IRC | 16:53 | |
raildo | if you have something to comment about this meeting, you can send a email for me or something like that | 16:53 |
schwicke | yes, will do that | 16:54 |
*** doude has quit IRC | 16:54 | |
*** markwash__ has joined #openstack-meeting | 16:55 | |
*** MarkAtwood has quit IRC | 16:56 | |
*** MaxV has joined #openstack-meeting | 16:57 | |
*** achanda has joined #openstack-meeting | 16:57 | |
*** daneyon has joined #openstack-meeting | 16:58 | |
*** esker has joined #openstack-meeting | 16:58 | |
*** hartsocks has left #openstack-meeting | 17:00 | |
*** ivar-lazzaro has joined #openstack-meeting | 17:01 | |
*** mattgriffin has quit IRC | 17:03 | |
*** scotm has quit IRC | 17:03 | |
*** krtaylor has joined #openstack-meeting | 17:05 | |
*** kylek3h has joined #openstack-meeting | 17:05 | |
*** zns has quit IRC | 17:06 | |
*** igordcard has quit IRC | 17:08 | |
*** thedodd has quit IRC | 17:08 | |
*** eharney has joined #openstack-meeting | 17:08 | |
*** nirupma has quit IRC | 17:09 | |
*** colinmcnamara has joined #openstack-meeting | 17:10 | |
*** _nadya_ has quit IRC | 17:10 | |
*** schwicke has quit IRC | 17:12 | |
*** ignacio-scopetta has joined #openstack-meeting | 17:12 | |
*** moha_hunt has joined #openstack-meeting | 17:12 | |
*** Longgeek has quit IRC | 17:12 | |
*** lpabon has joined #openstack-meeting | 17:13 | |
*** mattgriffin has joined #openstack-meeting | 17:14 | |
*** jecarey has quit IRC | 17:16 | |
*** raildo has left #openstack-meeting | 17:17 | |
*** scotm has joined #openstack-meeting | 17:17 | |
*** VijayB has joined #openstack-meeting | 17:21 | |
*** colinmcnamara has quit IRC | 17:22 | |
*** markwash__ has quit IRC | 17:24 | |
*** marcoemorais has joined #openstack-meeting | 17:25 | |
*** markmcclain has joined #openstack-meeting | 17:25 | |
*** markmcclain has quit IRC | 17:25 | |
*** chandankumar has joined #openstack-meeting | 17:30 | |
*** killer_prince has quit IRC | 17:30 | |
*** kashyap_afk is now known as kashyap | 17:32 | |
*** mchalla has joined #openstack-meeting | 17:33 | |
*** ramashri_ has joined #openstack-meeting | 17:34 | |
*** khaldrogox has joined #openstack-meeting | 17:35 | |
*** vijendar has quit IRC | 17:36 | |
*** ramashri has quit IRC | 17:36 | |
*** rossk has joined #openstack-meeting | 17:37 | |
*** daneyon has quit IRC | 17:37 | |
*** johnthetubaguy is now known as zz_johnthetubagu | 17:37 | |
*** markwash__ has joined #openstack-meeting | 17:37 | |
*** s3wong has joined #openstack-meeting | 17:38 | |
*** Mandell has joined #openstack-meeting | 17:39 | |
*** sajeesh has quit IRC | 17:39 | |
*** rossk has quit IRC | 17:40 | |
*** rossk has joined #openstack-meeting | 17:40 | |
*** bobt has joined #openstack-meeting | 17:41 | |
*** neelashah has quit IRC | 17:41 | |
*** rossk has quit IRC | 17:41 | |
*** vivek-ebay has joined #openstack-meeting | 17:42 | |
*** rossk has joined #openstack-meeting | 17:42 | |
*** chandankumar has quit IRC | 17:42 | |
*** bobt has quit IRC | 17:42 | |
*** rossk has quit IRC | 17:43 | |
*** chuckC_ has quit IRC | 17:43 | |
*** david-lyle has quit IRC | 17:50 | |
*** david-lyle has joined #openstack-meeting | 17:50 | |
*** ChuckC has quit IRC | 17:50 | |
*** vhoward has left #openstack-meeting | 17:51 | |
*** paragan has quit IRC | 17:53 | |
*** harlowja has joined #openstack-meeting | 17:54 | |
*** oanufriev has joined #openstack-meeting | 17:55 | |
*** kylek3h has quit IRC | 17:57 | |
*** balajiiyer has joined #openstack-meeting | 17:58 | |
*** markmcclain has joined #openstack-meeting | 17:59 | |
*** daneyon has joined #openstack-meeting | 17:59 | |
*** baoli has quit IRC | 17:59 | |
*** balajiiyer has quit IRC | 18:02 | |
*** sbalukoff1 is now known as sbalukoff | 18:02 | |
*** kylek3h has joined #openstack-meeting | 18:02 | |
*** MarkAtwood has joined #openstack-meeting | 18:02 | |
*** noslzzp has quit IRC | 18:03 | |
*** coolsvap|afk has quit IRC | 18:03 | |
*** baoli has joined #openstack-meeting | 18:04 | |
*** schwicke has joined #openstack-meeting | 18:05 | |
*** neelashah has joined #openstack-meeting | 18:06 | |
*** VijayB has quit IRC | 18:06 | |
*** Murali_ has quit IRC | 18:07 | |
*** Murali__ has joined #openstack-meeting | 18:07 | |
*** vivek-ebay has quit IRC | 18:07 | |
*** vivek-ebay has joined #openstack-meeting | 18:07 | |
*** mwagner_lap has quit IRC | 18:08 | |
*** VijayB has joined #openstack-meeting | 18:09 | |
*** VijayB_ has joined #openstack-meeting | 18:10 | |
*** VijayB has quit IRC | 18:10 | |
*** jecarey has joined #openstack-meeting | 18:10 | |
*** _nadya_ has joined #openstack-meeting | 18:11 | |
*** daneyon has quit IRC | 18:12 | |
*** daneyon has joined #openstack-meeting | 18:13 | |
*** bdpayne has joined #openstack-meeting | 18:15 | |
*** carl_baldwin has quit IRC | 18:17 | |
*** ivar-lazzaro has quit IRC | 18:19 | |
*** carl_baldwin has joined #openstack-meeting | 18:19 | |
*** colinmcnamara has joined #openstack-meeting | 18:19 | |
*** pelix has quit IRC | 18:20 | |
*** e0ne has quit IRC | 18:21 | |
*** nealph_ has joined #openstack-meeting | 18:21 | |
*** zns has joined #openstack-meeting | 18:22 | |
*** shankarprasad has quit IRC | 18:22 | |
*** Mandell has quit IRC | 18:23 | |
*** andreykurilin_ has joined #openstack-meeting | 18:25 | |
*** nealph_ has quit IRC | 18:26 | |
*** dguitarbite has joined #openstack-meeting | 18:26 | |
*** kebray has joined #openstack-meeting | 18:27 | |
*** Mandell has joined #openstack-meeting | 18:27 | |
*** akuznetsov has quit IRC | 18:29 | |
*** otherwiseguy has quit IRC | 18:29 | |
*** ChuckC has joined #openstack-meeting | 18:31 | |
*** matel has quit IRC | 18:32 | |
*** niclem has quit IRC | 18:32 | |
*** akuznetsov has joined #openstack-meeting | 18:33 | |
*** Mandell has quit IRC | 18:34 | |
*** Mandell has joined #openstack-meeting | 18:34 | |
*** chuckC_ has joined #openstack-meeting | 18:35 | |
*** ChuckC has quit IRC | 18:36 | |
*** ChuckC has joined #openstack-meeting | 18:36 | |
*** achanda has quit IRC | 18:37 | |
*** julienve_ has joined #openstack-meeting | 18:39 | |
*** MeganR has joined #openstack-meeting | 18:40 | |
*** achanda_ has joined #openstack-meeting | 18:40 | |
*** MeganR has quit IRC | 18:41 | |
*** stevemar has quit IRC | 18:43 | |
*** stevemar has joined #openstack-meeting | 18:44 | |
*** matrohon has joined #openstack-meeting | 18:44 | |
*** jogo is now known as flashgordon | 18:46 | |
*** colinmcnamara has quit IRC | 18:46 | |
*** stevemar2 has joined #openstack-meeting | 18:46 | |
*** stevemar has quit IRC | 18:47 | |
*** shashankhegde has joined #openstack-meeting | 18:47 | |
*** thedodd has joined #openstack-meeting | 18:47 | |
*** zns has quit IRC | 18:49 | |
*** VijayB_ has quit IRC | 18:49 | |
*** __TheDodd__ has joined #openstack-meeting | 18:50 | |
*** Sukhdev has joined #openstack-meeting | 18:50 | |
*** novas0x2a|laptop has joined #openstack-meeting | 18:51 | |
*** VijayB_ has joined #openstack-meeting | 18:51 | |
*** akuznetsov has quit IRC | 18:52 | |
*** kmartin has quit IRC | 18:52 | |
*** thedodd has quit IRC | 18:52 | |
*** igordcard has joined #openstack-meeting | 18:53 | |
*** DaveJ__ has quit IRC | 18:54 | |
*** jhenner has joined #openstack-meeting | 18:56 | |
*** khaldrogox has quit IRC | 18:58 | |
*** cjellick has quit IRC | 18:58 | |
*** rpodolyaka2 has joined #openstack-meeting | 18:59 | |
*** MarkAtwood has quit IRC | 19:00 | |
*** mchalla has quit IRC | 19:00 | |
*** Mandell has quit IRC | 19:03 | |
*** Fdot has quit IRC | 19:05 | |
*** markwash__ has quit IRC | 19:06 | |
*** schwicke has quit IRC | 19:07 | |
*** akuznetsov has joined #openstack-meeting | 19:08 | |
*** achanda_ has quit IRC | 19:11 | |
*** cbouch has quit IRC | 19:13 | |
*** julienve_ has quit IRC | 19:13 | |
*** thangp has quit IRC | 19:14 | |
*** ivar-lazzaro has joined #openstack-meeting | 19:15 | |
*** pballand has quit IRC | 19:15 | |
*** ivar-lazzaro has quit IRC | 19:15 | |
*** ivar-lazzaro has joined #openstack-meeting | 19:16 | |
*** rushiagr is now known as rushiagr_away | 19:18 | |
*** pballand has joined #openstack-meeting | 19:19 | |
*** khaldrogox has joined #openstack-meeting | 19:20 | |
*** khaldrogox has quit IRC | 19:21 | |
*** eharney has quit IRC | 19:21 | |
*** seagulls is now known as beagles | 19:22 | |
*** khaldrogox has joined #openstack-meeting | 19:22 | |
*** hashar has joined #openstack-meeting | 19:25 | |
*** pballand has quit IRC | 19:26 | |
*** vijendar has joined #openstack-meeting | 19:28 | |
*** rainya has joined #openstack-meeting | 19:29 | |
*** vijendar has quit IRC | 19:30 | |
*** vijendar has joined #openstack-meeting | 19:30 | |
*** imsurit has quit IRC | 19:31 | |
*** aepifanov has quit IRC | 19:33 | |
*** kashyap has quit IRC | 19:34 | |
*** kmartin has joined #openstack-meeting | 19:34 | |
*** mattgriffin has quit IRC | 19:36 | |
*** achanda has joined #openstack-meeting | 19:36 | |
*** rpodolyaka2 has quit IRC | 19:38 | |
*** mattgriffin has joined #openstack-meeting | 19:39 | |
*** Mandell has joined #openstack-meeting | 19:39 | |
*** liusheng has quit IRC | 19:39 | |
*** markwash__ has joined #openstack-meeting | 19:39 | |
*** liusheng has joined #openstack-meeting | 19:39 | |
*** dkehn has quit IRC | 19:41 | |
*** e0ne has joined #openstack-meeting | 19:41 | |
*** balajiiyer has joined #openstack-meeting | 19:42 | |
*** cjellick has joined #openstack-meeting | 19:42 | |
*** dkehn has joined #openstack-meeting | 19:43 | |
*** ChuckC__ has joined #openstack-meeting | 19:43 | |
*** yeungp has joined #openstack-meeting | 19:46 | |
*** yeungp has left #openstack-meeting | 19:46 | |
*** ChuckC__ has quit IRC | 19:47 | |
*** achanda has quit IRC | 19:48 | |
*** achanda has joined #openstack-meeting | 19:48 | |
*** barrett has quit IRC | 19:50 | |
*** __TheDodd__ has quit IRC | 19:53 | |
*** vivek-ebay has quit IRC | 19:53 | |
*** jehb has quit IRC | 19:53 | |
*** comay has quit IRC | 19:53 | |
*** comay has joined #openstack-meeting | 19:54 | |
*** mudassirlatif has quit IRC | 19:54 | |
*** mudassirlatif has joined #openstack-meeting | 19:55 | |
*** mchalla has joined #openstack-meeting | 19:56 | |
*** stevemar2 is now known as stevemar | 19:57 | |
*** Murali__ has quit IRC | 19:57 | |
*** mudassirlatif has quit IRC | 19:57 | |
*** vivek-ebay has joined #openstack-meeting | 19:58 | |
*** otherwiseguy has joined #openstack-meeting | 19:59 | |
*** rpodolyaka2 has joined #openstack-meeting | 19:59 | |
*** js1123 has quit IRC | 20:01 | |
*** mchalla has quit IRC | 20:02 | |
*** nealph_ has joined #openstack-meeting | 20:02 | |
*** nealph_ has quit IRC | 20:03 | |
*** baoli has quit IRC | 20:03 | |
*** nealph_ has joined #openstack-meeting | 20:03 | |
*** mchalla has joined #openstack-meeting | 20:05 | |
*** boden has quit IRC | 20:06 | |
*** alexpilotti has quit IRC | 20:06 | |
*** matrohon has quit IRC | 20:07 | |
*** huats has quit IRC | 20:08 | |
*** huats has joined #openstack-meeting | 20:08 | |
*** huats has quit IRC | 20:08 | |
*** huats has joined #openstack-meeting | 20:08 | |
*** Mandell has quit IRC | 20:09 | |
*** topol has quit IRC | 20:09 | |
*** huats has quit IRC | 20:09 | |
*** huats has joined #openstack-meeting | 20:10 | |
*** huats has quit IRC | 20:10 | |
*** huats has joined #openstack-meeting | 20:10 | |
*** e0ne has quit IRC | 20:10 | |
*** huats has quit IRC | 20:10 | |
*** huats has joined #openstack-meeting | 20:10 | |
*** huats has quit IRC | 20:10 | |
*** huats has joined #openstack-meeting | 20:10 | |
*** huats is now known as Guest27566 | 20:11 | |
*** mudassirlatif has joined #openstack-meeting | 20:11 | |
*** stevemar has quit IRC | 20:12 | |
*** Longgeek has joined #openstack-meeting | 20:13 | |
*** Mandell has joined #openstack-meeting | 20:13 | |
*** andreaf has joined #openstack-meeting | 20:15 | |
*** Longgeek has quit IRC | 20:17 | |
*** _nadya_ has quit IRC | 20:19 | |
*** Riddhi has joined #openstack-meeting | 20:22 | |
*** bknudson has quit IRC | 20:24 | |
*** VijayB_ has quit IRC | 20:24 | |
*** niclem has joined #openstack-meeting | 20:25 | |
*** maxdml has joined #openstack-meeting | 20:25 | |
*** pballand has joined #openstack-meeting | 20:25 | |
*** denis_makogon has joined #openstack-meeting | 20:26 | |
*** david-lyle has quit IRC | 20:26 | |
*** Mandell has quit IRC | 20:27 | |
*** krtaylor has quit IRC | 20:28 | |
*** lpabon has quit IRC | 20:32 | |
*** jtomasek has quit IRC | 20:34 | |
*** Riddhi has quit IRC | 20:34 | |
*** Riddhi has joined #openstack-meeting | 20:35 | |
*** vivek-ebay has quit IRC | 20:35 | |
*** achanda has quit IRC | 20:36 | |
*** vivek-ebay has joined #openstack-meeting | 20:36 | |
*** Mandell has joined #openstack-meeting | 20:36 | |
*** e0ne has joined #openstack-meeting | 20:38 | |
*** padkrish has joined #openstack-meeting | 20:39 | |
*** vivek-ebay has quit IRC | 20:40 | |
*** akuznetsov has quit IRC | 20:41 | |
*** harlowja is now known as harlowja_away | 20:43 | |
*** rpodolyaka2 has quit IRC | 20:44 | |
*** harlowja_away is now known as harlowja | 20:47 | |
*** mitz_ has quit IRC | 20:47 | |
*** neelashah has quit IRC | 20:48 | |
*** e0ne has quit IRC | 20:48 | |
*** marcoemorais has quit IRC | 20:49 | |
*** marcoemorais has joined #openstack-meeting | 20:50 | |
*** Sukhdev has quit IRC | 20:50 | |
*** jgrimm is now known as zz_jgrimm | 20:52 | |
*** akuznetsov has joined #openstack-meeting | 20:52 | |
*** e0ne has joined #openstack-meeting | 20:52 | |
*** e0ne has quit IRC | 20:53 | |
*** kylek3h has quit IRC | 20:54 | |
*** dhellmann has quit IRC | 20:56 | |
*** dhellmann has joined #openstack-meeting | 20:57 | |
*** tbarron has quit IRC | 20:57 | |
*** tflower has quit IRC | 20:59 | |
*** julim has quit IRC | 21:00 | |
*** dhellmann-phone has joined #openstack-meeting | 21:02 | |
*** marcoemorais has quit IRC | 21:02 | |
*** jecarey has quit IRC | 21:02 | |
*** dhellmann-phone has quit IRC | 21:02 | |
*** marcoemorais has joined #openstack-meeting | 21:02 | |
*** marcoemorais has quit IRC | 21:03 | |
*** marcoemorais has joined #openstack-meeting | 21:03 | |
*** aysyd has quit IRC | 21:05 | |
*** mrmartin has quit IRC | 21:06 | |
*** achanda has joined #openstack-meeting | 21:06 | |
*** rpodolyaka2 has joined #openstack-meeting | 21:07 | |
*** rpodolyaka2 has quit IRC | 21:08 | |
*** jecarey has joined #openstack-meeting | 21:08 | |
*** noslzzp has joined #openstack-meeting | 21:08 | |
*** kylek3h has joined #openstack-meeting | 21:09 | |
*** achanda_ has joined #openstack-meeting | 21:10 | |
*** mchalla has quit IRC | 21:10 | |
*** MaxV has quit IRC | 21:10 | |
*** bitblt has joined #openstack-meeting | 21:11 | |
*** bitblt has quit IRC | 21:11 | |
*** bitblt has joined #openstack-meeting | 21:11 | |
*** bitblt has left #openstack-meeting | 21:11 | |
*** achanda has quit IRC | 21:12 | |
*** kylek3h has quit IRC | 21:13 | |
*** carl_baldwin has quit IRC | 21:14 | |
*** achanda_ has quit IRC | 21:15 | |
*** VijayB_ has joined #openstack-meeting | 21:18 | |
*** jecarey_ has joined #openstack-meeting | 21:18 | |
*** vivek-ebay has joined #openstack-meeting | 21:20 | |
*** jecarey has quit IRC | 21:20 | |
*** kylek3h has joined #openstack-meeting | 21:22 | |
*** Riddhi_ has joined #openstack-meeting | 21:22 | |
*** Mandell has quit IRC | 21:23 | |
*** mchalla has joined #openstack-meeting | 21:23 | |
*** Mandell has joined #openstack-meeting | 21:24 | |
*** pballand has quit IRC | 21:25 | |
*** Riddhi has quit IRC | 21:25 | |
*** balajiiyer has left #openstack-meeting | 21:30 | |
*** Sukhdev has joined #openstack-meeting | 21:31 | |
*** dboik has quit IRC | 21:31 | |
*** dboik has joined #openstack-meeting | 21:32 | |
*** kylek3h has quit IRC | 21:32 | |
*** kebray has quit IRC | 21:33 | |
*** Mandell has quit IRC | 21:33 | |
*** dboik has quit IRC | 21:37 | |
*** kylek3h has joined #openstack-meeting | 21:37 | |
*** markwash__ has quit IRC | 21:40 | |
*** noslzzp has quit IRC | 21:41 | |
*** ivasev has quit IRC | 21:42 | |
*** nshaikh has joined #openstack-meeting | 21:42 | |
*** kylek3h has quit IRC | 21:43 | |
*** achanda has joined #openstack-meeting | 21:44 | |
*** akuznetsov has quit IRC | 21:44 | |
*** killer_prince has joined #openstack-meeting | 21:44 | |
*** killer_prince is now known as lazy_prince | 21:44 | |
*** kylek3h has joined #openstack-meeting | 21:47 | |
*** nellysmitt has quit IRC | 21:47 | |
*** achanda has quit IRC | 21:48 | |
*** moha_hunt has quit IRC | 21:49 | |
*** aepifanov has joined #openstack-meeting | 21:50 | |
*** akuznetsov has joined #openstack-meeting | 21:51 | |
*** nealph_ has quit IRC | 21:59 | |
*** markwash__ has joined #openstack-meeting | 21:59 | |
*** Mandell has joined #openstack-meeting | 21:59 | |
*** Riddhi_ has quit IRC | 22:00 | |
*** navid__ has joined #openstack-meeting | 22:01 | |
*** colinmcnamara has joined #openstack-meeting | 22:01 | |
*** achanda has joined #openstack-meeting | 22:01 | |
*** aepifanov has quit IRC | 22:02 | |
*** scotm has quit IRC | 22:03 | |
*** nshaikh has quit IRC | 22:04 | |
*** maxdml has quit IRC | 22:04 | |
*** navid__ is now known as nshaikh | 22:04 | |
*** hashar has quit IRC | 22:04 | |
*** scotm has joined #openstack-meeting | 22:04 | |
*** dboik has joined #openstack-meeting | 22:04 | |
*** denis_makogon has quit IRC | 22:05 | |
*** akuznetsov has quit IRC | 22:06 | |
*** krtaylor has joined #openstack-meeting | 22:07 | |
*** andreykurilin_ has quit IRC | 22:08 | |
*** igordcard has quit IRC | 22:08 | |
*** js1123 has joined #openstack-meeting | 22:10 | |
*** rkofman has quit IRC | 22:16 | |
*** rkofman has joined #openstack-meeting | 22:16 | |
*** gyee has quit IRC | 22:18 | |
*** jergerber has joined #openstack-meeting | 22:23 | |
*** kylek3h has quit IRC | 22:26 | |
*** nshaikh has left #openstack-meeting | 22:26 | |
*** mattgriffin has quit IRC | 22:28 | |
*** erlon_ has quit IRC | 22:29 | |
*** kylek3h has joined #openstack-meeting | 22:30 | |
*** vijendar has quit IRC | 22:30 | |
*** eddie__ has quit IRC | 22:30 | |
*** alexpilotti has joined #openstack-meeting | 22:30 | |
*** otherwiseguy has quit IRC | 22:31 | |
*** alexpilotti has quit IRC | 22:31 | |
*** kylek3h has quit IRC | 22:34 | |
*** jorge_munoz has quit IRC | 22:38 | |
*** rainya has quit IRC | 22:40 | |
*** ayoung has joined #openstack-meeting | 22:40 | |
*** dimsum_ has quit IRC | 22:43 | |
*** colinmcnamara has quit IRC | 22:43 | |
*** flaper87 is now known as flaper87|afk | 22:46 | |
*** IanGovett has joined #openstack-meeting | 22:49 | |
*** zaneb has quit IRC | 22:49 | |
*** zaneb has joined #openstack-meeting | 22:55 | |
*** rwsu has quit IRC | 22:59 | |
*** cutforth has quit IRC | 22:59 | |
*** esker has quit IRC | 23:01 | |
*** padkrish has quit IRC | 23:01 | |
*** mchalla_ has joined #openstack-meeting | 23:01 | |
*** marcusvrn_ has quit IRC | 23:02 | |
*** andreaf has quit IRC | 23:03 | |
*** andreaf has joined #openstack-meeting | 23:03 | |
*** mchalla_ has quit IRC | 23:03 | |
*** mchalla_ has joined #openstack-meeting | 23:04 | |
*** mchalla has quit IRC | 23:05 | |
*** Youcef has quit IRC | 23:06 | |
*** Mandell has quit IRC | 23:07 | |
*** andreaf has quit IRC | 23:08 | |
*** Mandell has joined #openstack-meeting | 23:09 | |
*** cdub has quit IRC | 23:10 | |
*** Mandell has quit IRC | 23:10 | |
*** scotm has quit IRC | 23:10 | |
*** Mandell has joined #openstack-meeting | 23:10 | |
*** chuckC_ has quit IRC | 23:13 | |
*** Mandell has quit IRC | 23:13 | |
*** markwash__ has quit IRC | 23:14 | |
*** jdurgin has quit IRC | 23:14 | |
*** tsekiyama has quit IRC | 23:16 | |
*** achanda has quit IRC | 23:16 | |
*** padkrish has joined #openstack-meeting | 23:18 | |
*** novas0x2a|laptop has quit IRC | 23:18 | |
*** ChuckC has quit IRC | 23:22 | |
*** kebray has joined #openstack-meeting | 23:23 | |
*** khaldrogox has quit IRC | 23:26 | |
*** sgordon_ has quit IRC | 23:27 | |
*** padkrish has quit IRC | 23:29 | |
*** IanGovett has quit IRC | 23:30 | |
*** Sukhdev has quit IRC | 23:31 | |
*** zhhuabj has quit IRC | 23:31 | |
*** kebray has quit IRC | 23:34 | |
*** js1123 has quit IRC | 23:39 | |
*** dimsum_ has joined #openstack-meeting | 23:44 | |
*** mmedvede has quit IRC | 23:44 | |
*** hemna is now known as hemnass | 23:46 | |
*** padkrish has joined #openstack-meeting | 23:47 | |
*** dimsum_ has quit IRC | 23:49 | |
*** cjellick has quit IRC | 23:52 | |
*** adalbas has quit IRC | 23:53 | |
*** rfolco has quit IRC | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!