*** nkinder has joined #openstack-dev | 00:00 | |
_cjones_ | mf: Sweet. Will do, if not, it can wait until tomorrow. | 00:00 |
---|---|---|
bknudson | morganfainberg: got a minute? | 00:00 |
morganfainberg | bknudson, always | 00:00 |
bknudson | take a look at https://review.openstack.org/#/c/64587/2/keystone/identity/backends/kvs.py | 00:00 |
morganfainberg | ok | 00:01 |
bknudson | dolphm has a comment on 100... | 00:01 |
*** yamahata has joined #openstack-dev | 00:01 | |
bknudson | so we're in the kvs backend, updating user | 00:01 |
*** mlavalle has quit IRC | 00:01 | |
bknudson | the user dict doesn't have domain_id set. | 00:01 |
morganfainberg | correct. | 00:01 |
bknudson | so we don't know what domain they're in. | 00:01 |
morganfainberg | i thought the user _must_ have a domain_id? | 00:01 |
morganfainberg | to create the user | 00:02 |
bknudson | morganfainberg: it does not, and I've verified in the debugger. | 00:02 |
morganfainberg | or it's defaulted to default | 00:02 |
morganfainberg | "default domain" | 00:02 |
bknudson | and this is keystone.tests.test_keystoneclient.KcMasterTestCase.test_user_create_update_delete | 00:02 |
morganfainberg | hm. | 00:02 |
bknudson | so this is a user coming from client, not a test thing. | 00:02 |
morganfainberg | ooh | 00:02 |
morganfainberg | how does SQL handle this? | 00:03 |
bknudson | morganfainberg: so check the caller: http://git.openstack.org/cgit/openstack/keystone/tree/keystone/identity/core.py#n372 | 00:03 |
bknudson | it does know the domain_id | 00:03 |
bknudson | but it doesn't pass it on. | 00:03 |
* morganfainberg grumbles about that "domain" detection code | 00:03 | |
morganfainberg | sec | 00:04 |
bknudson | morganfainberg: this is kind of why I was asking you, seems related to what we've seen before. | 00:04 |
morganfainberg | it is very related | 00:04 |
morganfainberg | http://git.openstack.org/cgit/openstack/keystone/tree/keystone/identity/backends/sql.py#n31 | 00:04 |
bknudson | for sql, I'm guessing ID is unique across all domains in the backend so doesn't really care | 00:04 |
morganfainberg | according to SQL domain_id is _not_ optional | 00:04 |
bknudson | but the kvs backend is looking up by name. | 00:04 |
morganfainberg | i'd enforce that in KVS | 00:04 |
morganfainberg | so you cannot create a user w/o a domain id. | 00:05 |
morganfainberg | and user_id is globally unique, so you can look it up and get the domain id | 00:05 |
morganfainberg | lookup by user_name requires a domain_id to do so. | 00:05 |
bknudson | morganfainberg: then the identity manager would have to add domain ID? | 00:05 |
*** clayb has quit IRC | 00:05 | |
bknudson | morganfainberg: maybe kvs backend needs a lookup of user_id->domain? | 00:05 |
morganfainberg | bknudson, yeah | 00:06 |
bknudson | user_id->domain_id | 00:06 |
morganfainberg | that sounds right | 00:06 |
bknudson | let me look into that. | 00:06 |
morganfainberg | ldap is not domain aware, and SQL requires domain_id | 00:06 |
morganfainberg | so i think we need to follow SQL's basic premise in this case (e.g. user_id->domain_id) | 00:06 |
bknudson | morganfainberg: kvs has "user_list" -- I could split that up by domain. | 00:08 |
morganfainberg | hm. | 00:08 |
bknudson | the user_id->domain_id lookup would take forever... anything to make kvs more useless. | 00:09 |
morganfainberg | or make the key the user_id? | 00:09 |
morganfainberg | in the kvs store | 00:09 |
morganfainberg | oh | 00:09 |
morganfainberg | damn it | 00:09 |
morganfainberg | ... | 00:09 |
morganfainberg | uhm | 00:09 |
bknudson | I think it will be self.db.set('user_domain_%s' % user_id, domain_id) | 00:10 |
morganfainberg | perhaps make a domain set of users in the domain? | 00:10 |
bknudson | then can get user's domain ID with self.db.get('user_domain_%s' % user_id) | 00:10 |
morganfainberg | domain = set([user_id, user_id]) | 00:10 |
morganfainberg | oh that might work as well | 00:10 |
morganfainberg | yeah, either approach i think would be fine | 00:10 |
morganfainberg | kvs is pretty useless for identity/assignment though | 00:11 |
bknudson | I thought you were fixing that? | 00:11 |
bknudson | keep your users in memcache | 00:11 |
morganfainberg | bknudson, i want to convert over to the dogpile backend | 00:12 |
morganfainberg | but that can occur after I2 | 00:12 |
morganfainberg | then could use redis.. or a file... or memcache | 00:12 |
morganfainberg | or whatever | 00:12 |
morganfainberg | mongo | 00:12 |
bknudson | sql? | 00:13 |
morganfainberg | SQL and LDAP i think will always be a separate driver | 00:13 |
morganfainberg | there are just too many optimisations that can occur outside of a key-value context with them | 00:13 |
bknudson | mongo db is web scale | 00:13 |
morganfainberg | bknudson, "web scale" heh | 00:13 |
bknudson | morganfainberg: https://www.youtube.com/watch?v=b2F-DItXtZs | 00:14 |
morganfainberg | is that the xtranormal? | 00:14 |
bknudson | yes | 00:14 |
morganfainberg | hehehe | 00:14 |
*** sthaha has joined #openstack-dev | 00:15 | |
*** kbrierly has quit IRC | 00:16 | |
*** e0ne has quit IRC | 00:16 | |
*** sarob has quit IRC | 00:17 | |
*** sarob has joined #openstack-dev | 00:17 | |
*** jmontemayor has quit IRC | 00:18 | |
*** mikeoutland has joined #openstack-dev | 00:19 | |
*** _cjones_ has quit IRC | 00:20 | |
*** morazi has quit IRC | 00:20 | |
*** changbl has quit IRC | 00:21 | |
*** _cjones_ has joined #openstack-dev | 00:21 | |
*** sarob has quit IRC | 00:22 | |
*** kgriffs_afk is now known as kgriffs | 00:22 | |
*** ArxCruz has joined #openstack-dev | 00:23 | |
*** willingc has quit IRC | 00:23 | |
Anticimex | bknudson: couldn't your problem above be solved by modifying the SQL query - or is that kept outside of code you can modify? | 00:24 |
Anticimex | (always good to complicate queries to avoid client round trips) | 00:25 |
bknudson | Anticimex: this is not using SQL. | 00:25 |
*** jasondotstar has quit IRC | 00:25 | |
* Anticimex has done fair share of pgsql | 00:25 | |
Anticimex | oh, ok | 00:25 |
*** otherwiseguy has quit IRC | 00:26 | |
Anticimex | bknudson: kvs - key value store? | 00:26 |
bknudson | Anticimex: yes... I think it's just a dict. | 00:27 |
Anticimex | k | 00:27 |
bknudson | for testing | 00:27 |
Anticimex | ah | 00:27 |
_cjones_ | morganfainberg, you around now for a not so quick q & a? | 00:28 |
*** tanisdl has quit IRC | 00:31 | |
*** browne has quit IRC | 00:31 | |
vahidh | Hi, does anyone know where debug messages of python-cinderclient project are written? | 00:32 |
*** kgriffs is now known as kgriffs_afk | 00:32 | |
*** ArxCruz has quit IRC | 00:32 | |
*** tmclaugh[work] has quit IRC | 00:33 | |
*** dstanek has joined #openstack-dev | 00:35 | |
*** browne has joined #openstack-dev | 00:36 | |
jgriffith | vahidh: You need to run cinderclient with the deubg flag on | 00:38 |
*** alop has quit IRC | 00:38 | |
jgriffith | vahidh: ie: "cinder --deubg list" | 00:38 |
vahidh | jgriffith: thanks. I'll try that. | 00:40 |
*** otherwiseguy has joined #openstack-dev | 00:40 | |
*** ArxCruz has joined #openstack-dev | 00:47 | |
*** pmathews has quit IRC | 00:50 | |
*** galstrom_zzz is now known as galstrom | 00:57 | |
*** achampion has joined #openstack-dev | 00:58 | |
*** rwsu has quit IRC | 01:00 | |
*** sushils has quit IRC | 01:02 | |
*** cyeoh has quit IRC | 01:02 | |
morganfainberg | _cjones_, sortof | 01:03 |
_cjones_ | morganfainberg, know much about multiple domains? | 01:03 |
morganfainberg | _cjones_, as in the multiple domain construct in SQL? | 01:04 |
morganfainberg | or... as in the per-domain-identtity code that is not finished | 01:04 |
_cjones_ | morganfainberg, I'll try and make it quick. (SQL and its relation to keystone) | 01:04 |
_cjones_ | morganfainberg, talking with ayoung, he indicated that what i needed was complete. | 01:05 |
morganfainberg | ok | 01:05 |
_cjones_ | Scenario is as follows: I have a default domain set up, with a 2nd domain foo. | 01:05 |
morganfainberg | ok | 01:05 |
_cjones_ | I have added the 2nd domain to sql as well. | 01:06 |
_cjones_ | (via keystone) | 01:06 |
morganfainberg | ok, that makes sense | 01:06 |
_cjones_ | Now, if I add a new project to the 2nd domain (foo), where would I expect that DB entry to appear? | 01:07 |
morganfainberg | in the assingment project table | 01:07 |
_cjones_ | In the default (keystone) sql db, or in my (foo) (keystone) sql db? | 01:07 |
morganfainberg | wait, you... can't have multiple dbs | 01:07 |
_cjones_ | What? | 01:07 |
morganfainberg | for keystone | 01:08 |
_cjones_ | No? | 01:08 |
morganfainberg | no | 01:08 |
morganfainberg | well. | 01:08 |
morganfainberg | maaaybe a different assignment and identity one? | 01:08 |
morganfainberg | don't think so though | 01:08 |
_cjones_ | I thought if I added this to my keystone.foo.conf: | 01:08 |
morganfainberg | sorry, i'm confused | 01:09 |
morganfainberg | waht is the architecture you're trying to do? | 01:09 |
morganfainberg | have Keystone {db} and then have a separate DB for the foo domain? | 01:09 |
_cjones_ | connection = mysql://root:stackdb@W.X.Y.Z/keystone?charset=utf8 | 01:09 |
ayoung | nope only one db | 01:09 |
*** jroovers has quit IRC | 01:09 | |
_cjones_ | Oh. Hmm. | 01:09 |
ayoung | there is a BP for multiple, but not yet approved | 01:09 |
morganfainberg | even the per-domain-ideneity stuff couldn't really support multiple sql dbs | 01:09 |
_cjones_ | I really wanted segregated data, so that each domain contained it's own users, groups, and projects. | 01:10 |
*** galstrom is now known as galstrom_zzz | 01:10 | |
*** ArxCruz has quit IRC | 01:10 | |
_cjones_ | "Domain silos" if you will. | 01:10 |
ayoung | actually, dolphm might have axed the multi DB BP | 01:11 |
morganfainberg | ayoung, i think so | 01:11 |
ayoung | _cjones_, not in different DBs. The end uses don't get access to the RDBMS | 01:11 |
*** galstrom_zzz is now known as galstrom | 01:11 | |
_cjones_ | ayoung, understood. | 01:11 |
_cjones_ | So, multidomain support is in, however, with only the one db. | 01:12 |
morganfainberg | _cjones_, correct | 01:12 |
_cjones_ | what about user name collision? | 01:12 |
_cjones_ | Is there any fear of that? | 01:12 |
morganfainberg | any name lookup looks up w/ the domain_id | 01:12 |
morganfainberg | (required) | 01:12 |
morganfainberg | user_ids are globally unique | 01:12 |
*** mkollaro has quit IRC | 01:12 | |
_cjones_ | morganfainberg, understood. was more concerned about name, not id. | 01:13 |
ayoung | _cjones_, nope. but we were discussing that earlier today..userid collision | 01:13 |
morganfainberg | _cjones_, when it comes to external (or multiple) sources of identity it becomes important to avoid the collision | 01:13 |
_cjones_ | ayoung, what about userid collision? How would that happen? | 01:14 |
morganfainberg | _cjones_, today, we only have one source of identity, so no collisions | 01:14 |
_cjones_ | ayoung, like ldap? | 01:14 |
ayoung | _cjones_, Federation. Or multi LDAP | 01:14 |
ayoung | yep | 01:14 |
_cjones_ | ayoung, read you loud and clear. | 01:14 |
ayoung | _Lost 3 this is lost 1. Are you lost 2? | 01:14 |
*** epopt37 has quit IRC | 01:14 | |
*** thuc has quit IRC | 01:14 | |
_cjones_ | :) | 01:15 |
*** mikeoutland has quit IRC | 01:15 | |
_cjones_ | Thanks guys! I'll get back at it and see what damage I can do. | 01:15 |
_cjones_ | One more quick one. | 01:15 |
*** thuc has joined #openstack-dev | 01:15 | |
_cjones_ | No support, yet, for domains via horizon, correct? | 01:16 |
morganfainberg | _cjones_, i think there might be some | 01:16 |
morganfainberg | _cjones_, have not looked recently though at how complete it is | 01:16 |
*** dstanek has quit IRC | 01:16 | |
_cjones_ | morganfainberg, thanks. I'll cross that bridge when I get there. | 01:16 |
*** e0ne has joined #openstack-dev | 01:17 | |
ayoung | morganfainberg, so, wondering how your V3 controller change and this are going to coexist/conflict https://review.openstack.org/#/c/65428/1 | 01:19 |
*** thuc has quit IRC | 01:19 | |
morganfainberg | blink | 01:20 |
morganfainberg | i'm not... sure i'm understanding that change | 01:20 |
morganfainberg | might be a lack of knowing pecan atm | 01:20 |
*** epim has quit IRC | 01:21 | |
morganfainberg | ayoung, i don't know if it would really impact much | 01:22 |
morganfainberg | might require lifting a few extra methods up to the v3controller | 01:22 |
*** e0ne has quit IRC | 01:22 | |
morganfainberg | and perhaps an @dependency change or two | 01:22 |
*** kgriffs_afk is now known as kgriffs | 01:23 | |
*** e0ne has joined #openstack-dev | 01:23 | |
morganfainberg | ayoung, OH | 01:24 |
morganfainberg | ayoung, i don't think that will have any impact | 01:24 |
*** venkatesh has joined #openstack-dev | 01:24 | |
morganfainberg | ayoung, it's namespaced to keystone.controllers which is used only in keystone.routers and keystone.service | 01:26 |
*** jp_at_hp has quit IRC | 01:26 | |
morganfainberg | my guess is it shouldn't actually conflict with anything | 01:26 |
morganfainberg | (and if it would have conflicted, it would have conflicted even w/o my change to keystone.common.controllers) | 01:26 |
*** e0ne has quit IRC | 01:27 | |
*** epopt37 has joined #openstack-dev | 01:28 | |
*** melwitt has quit IRC | 01:28 | |
*** nosnos has joined #openstack-dev | 01:29 | |
*** venkatesh has quit IRC | 01:31 | |
*** mszilagyi has joined #openstack-dev | 01:31 | |
*** amotoki has quit IRC | 01:31 | |
*** mriedem has joined #openstack-dev | 01:31 | |
*** mszilagyi has quit IRC | 01:32 | |
*** hemna__ is now known as hemnafk | 01:32 | |
*** mszilagyi has joined #openstack-dev | 01:32 | |
*** xingchao has joined #openstack-dev | 01:33 | |
*** kgriffs is now known as kgriffs_afk | 01:33 | |
*** mszilagyi has quit IRC | 01:33 | |
*** xarses has quit IRC | 01:37 | |
*** fifieldt has joined #openstack-dev | 01:37 | |
*** novas0x2a|laptop has quit IRC | 01:38 | |
*** venkatesh has joined #openstack-dev | 01:40 | |
*** venkatesh has quit IRC | 01:41 | |
*** xuhanp has joined #openstack-dev | 01:42 | |
*** cpallares has joined #openstack-dev | 01:45 | |
*** cpallares has quit IRC | 01:45 | |
*** Edward-Zhang has joined #openstack-dev | 01:45 | |
*** cpallares has joined #openstack-dev | 01:45 | |
*** prad has joined #openstack-dev | 01:46 | |
*** sballe has quit IRC | 01:47 | |
*** sballe has joined #openstack-dev | 01:47 | |
ayoung | jamielennox, about https://review.openstack.org/#/c/62809/1 what I was thinking is that our current approach to XML/JSON is broken. It should not be two different pipeline components, but something like this: https://github.com/admiyo/keystone/blob/html/keystone/contrib/html/html.py#L32 | 01:47 |
ayoung | But not sure if that address the discussion you and dolphm were having in it | 01:48 |
jamielennox | ayoung: completely agree with it being broken - If we move it to WSME then this gets handled for us automatically | 01:48 |
ayoung | jamielennox, ++ | 01:48 |
jamielennox | then i guess we would need some way of opting-out of the middleware | 01:48 |
ayoung | jamielennox, I just was looking at the change that depends on that | 01:49 |
jamielennox | then that could get deprecated along with the V2 API | 01:49 |
ayoung | WSME handles X509? | 01:49 |
ayoung | PEM | 01:49 |
jamielennox | no | 01:49 |
jamielennox | but you can add handlers for custom formates | 01:49 |
jamielennox | i don't think that'd be a WSME thing - more likely a pecan thing | 01:49 |
jamielennox | means that you could return a raw certificate and have both a PEM and DER handler that just work automatically | 01:50 |
jamielennox | i know that dolphm disagrees but IMO if the code doesn't work without certain middleware installed - it's not really middleware (or it's not middleware that should be in the paste config file) | 01:50 |
ayoung | ++ | 01:51 |
*** KeithSharp has quit IRC | 01:51 | |
ayoung | jamielennox, and I wnat to be able to throw HTML rendering in there eventually... | 01:51 |
ayoung | but that is a different battle | 01:51 |
jamielennox | ayoung: yes, i know :) | 01:51 |
ayoung | just easier with WSME/Pecan | 01:51 |
ayoung | so...what to do about that abandonded patch?> | 01:51 |
jamielennox | the xml rendering one? | 01:52 |
ayoung | yeha | 01:52 |
ayoung | yee Ha! | 01:52 |
ayoung | Yes | 01:52 |
jamielennox | it's only really a problem because i tend to hit the endpoint with my browser for testing and it has an accept: xml | 01:53 |
*** tqtran has quit IRC | 01:53 | |
jamielennox | it's probably a good thing to fix though so i can bring it back | 01:53 |
jamielennox | i found it though doing the simple cert extension and with that i had gone the opposite route - having routes offload to pecan | 01:54 |
*** KeithSharp has joined #openstack-dev | 01:54 | |
jamielennox | which is what made me start looking into if the reverse would be easier | 01:54 |
jamielennox | so i want to see the results of the pecan patch before i continue with the extension | 01:54 |
jamielennox | then i can use that one to start figuring out how pecan extensions are loaded | 01:55 |
jamielennox | offtopic: i though install_venv.py came from oslo? | 01:55 |
*** sballe has quit IRC | 01:55 | |
*** novas0x2a|laptop has joined #openstack-dev | 01:56 | |
ayoung | no idea...I've tended to use the run_tests.sh way of setting up the venv, but haven't looked deeper into it | 01:56 |
jamielennox | i'm pretty sure that depends on the install_venv | 01:56 |
morganfainberg | ayoung, let me know when you want to talk kvs | 01:57 |
ayoung | now! morganfainberg | 01:57 |
morganfainberg | ayoung, hehe ok | 01:57 |
ayoung | let me swap | 01:57 |
morganfainberg | sure | 01:57 |
ayoung | https://review.openstack.org/#/c/60742/15/keystone/token/backends/kvs.py | 01:57 |
*** xingchao_ has joined #openstack-dev | 01:57 | |
ayoung | why is this so big? | 01:58 |
morganfainberg | yep | 01:58 |
morganfainberg | it's a complete refactor of all kvs to use dogpile for tokens | 01:58 |
ayoung | is this the default one? Cuz I see the delete behvior calling parent | 01:58 |
ayoung | so all of the dogpile ones descend from this one | 01:58 |
morganfainberg | yes | 01:58 |
*** bdpayne has quit IRC | 01:58 | |
bknudson | even changed the vim line to # -*- coding: utf-8 -*- | 01:58 |
morganfainberg | it currently implements the in-memory kvs | 01:58 |
ayoung | line 245 | 01:58 |
morganfainberg | and the super is to call the abc class | 01:58 |
morganfainberg | since we implement a base functionality | 01:59 |
morganfainberg | rather than raise NotImplemented | 01:59 |
ayoung | how does that move tokens to the revoked list? | 01:59 |
morganfainberg | huh, wait a sec. | 01:59 |
ayoung | wait..what? | 02:00 |
ayoung | delete_tokens...what is that for? Is that the cleanup call? | 02:00 |
morganfainberg | hold on | 02:00 |
ayoung | no that is flush | 02:00 |
morganfainberg | http://git.openstack.org/cgit/openstack/keystone/tree/keystone/token/core.py#n324 | 02:00 |
*** xingchao has quit IRC | 02:00 | |
ayoung | betch super calls delete token one at a time | 02:00 |
morganfainberg | it does the loop and calls .delete_token per token | 02:01 |
morganfainberg | yep | 02:01 |
*** haomaiwang has quit IRC | 02:01 | |
morganfainberg | welcome to key-value-stores | 02:01 |
ayoung | OK...cool | 02:01 |
morganfainberg | i like abcmeta because you can define code on the abstract class, and super call it | 02:01 |
morganfainberg | you're required to define the method, but if the superclass implements everything you need, why re-implement | 02:01 |
ayoung | damnit, I am having trrouble coming up with things to object to in patches. bknudson is making me feel incompetent | 02:01 |
morganfainberg | ayoung, i know :( | 02:02 |
morganfainberg | i've been feeling the same way for a while | 02:02 |
morganfainberg | bknudson, if gerrit wouldn't detect "changes" this, imo, qualifies (in reality) as a "new" file | 02:02 |
*** haomaiwang has joined #openstack-dev | 02:02 | |
ayoung | still there is a lot here....the internal functions add a lot of code | 02:02 |
morganfainberg | ayoung, there is. | 02:02 |
morganfainberg | it's because i'm reworking to encompass a lot of what the memcache driver does | 02:03 |
morganfainberg | remember in a couple patchsets the memcache driver is just a subclass that changes an instance variable and sets one option | 02:03 |
ayoung | so, you need to eal explicitly with expriation...KVS didn't do that in the past | 02:03 |
ayoung | yeah | 02:03 |
*** galstrom is now known as galstrom_zzz | 02:03 | |
morganfainberg | kvs beforehand said "oh i have access to the in-mem dict, let me muck with things" | 02:03 |
ayoung | morganfainberg, would this look less different if it were changes to the memcached driver instead? | 02:04 |
morganfainberg | it would still be changing a lot of things | 02:04 |
ayoung | plus you do locking | 02:04 |
morganfainberg | especially some optimisations since we can't do compare-and-set magic | 02:04 |
ayoung | any chances of dead lock? | 02:04 |
morganfainberg | (in fact, i need to make a fix to havana because that code is so bad) | 02:04 |
*** csd has quit IRC | 02:04 | |
morganfainberg | the locks (in memcache) auto-expire | 02:05 |
bknudson | did kvs not handle trusts before? | 02:05 |
morganfainberg | bknudson, kvs did, memcache did it poorly | 02:05 |
bknudson | this is the only use of CONF. : CONF.trust.enabled | 02:05 |
morganfainberg | i had to fix an issue oh. probably should be in the commit message | 02:05 |
ayoung | morganfainberg, shh | 02:05 |
bknudson | ayoung: see, that's how you find problems. | 02:05 |
*** fifieldt has quit IRC | 02:05 | |
morganfainberg | bug... uhm 1260080 | 02:06 |
*** _cjones_ has quit IRC | 02:06 | |
*** fifieldt has joined #openstack-dev | 02:06 | |
ayoung | bknudson, I've been through this code a few times. Part of the problem is each time I need to remember all the earlier conversations | 02:06 |
bknudson | ayoung: I agree at some point you have to hand it off. | 02:06 |
morganfainberg | ayoung, likely this would be less painful as a modification of the memcache driver | 02:06 |
morganfainberg | unfortunately, this is .. legitimately a single change set. | 02:06 |
morganfainberg | this one really is doing only one thing, moving kvs to use the dogpile backend for token | 02:07 |
morganfainberg | *cough* token backend | 02:07 |
ayoung | morganfainberg, is memcached changed in an earlier or later patch> | 02:07 |
morganfainberg | ayoung, later | 02:07 |
ayoung | OK. | 02:07 |
morganfainberg | ayoung, there is still the work to fix the non-expiring keys | 02:07 |
bknudson | morganfainberg: you could as well create a new file rather than changing existing | 02:07 |
bknudson | and then do a rename | 02:07 |
morganfainberg | bknudson, i think gerrit still shows it like this | 02:07 |
bknudson | kvs2 or something | 02:07 |
ayoung | this is OK | 02:07 |
morganfainberg | oh in two patches? | 02:07 |
morganfainberg | bknudson, i'm happy to do that if you'd like :) | 02:08 |
ayoung | no | 02:08 |
morganfainberg | proceedurally i don't mind things like that if it makes it easier to review | 02:08 |
ayoung | this is OK...so long as we can map to the origianl memcached logic. I'll just do that outside of the patch review | 02:08 |
bknudson | well, the changes really aren't helpful here. | 02:08 |
morganfainberg | bknudson, aye, it's best to look at it as new code, ignore the green/red parts | 02:08 |
morganfainberg | assume it's all a nice light-green color | 02:09 |
ayoung | morganfainberg, not a bad comment to put in to other reviewers: compare with the memcached driver | 02:09 |
morganfainberg | ayoung, the biggest change is storing the expiry time in the user-index behind the scenes | 02:09 |
morganfainberg | i have it open will add now. | 02:09 |
ayoung | yep | 02:09 |
ayoung | this looks good. | 02:09 |
morganfainberg | but that is to avoid the compare-and-set uglyness | 02:09 |
morganfainberg | that i need to fix in havana | 02:09 |
morganfainberg | that "keystone uses 100% cpu issue" | 02:10 |
ayoung | needed? | 02:10 |
ayoung | is fixed now, right | 02:10 |
morganfainberg | yeah, if you have high token issuance, cas causes excessive cpu | 02:10 |
morganfainberg | with this patchset, it should be fixed because we don't do cas | 02:10 |
bknudson | systems using neutron have high token issuance | 02:10 |
bknudson | unless they've fixed that. | 02:10 |
morganfainberg | we don't need to ask the memcache store each time for each token | 02:10 |
morganfainberg | we just pull things out of the lists if the expiry says to | 02:10 |
morganfainberg | much much better | 02:11 |
morganfainberg | for loop > for loop and asking memcache for N items one at a time | 02:11 |
morganfainberg | and if the cas fails, you have to do that loop again because "things changed" | 02:11 |
ayoung | morganfainberg, don't change it now, but it probably would have been better to A) make the changes to the memcached driver, and then rename it to the KVS driver, with the memcached driver inheriting from it. I'm guessing that was your origianly plan, but decided not to due to the expiring key issue? | 02:11 |
*** yaguang has joined #openstack-dev | 02:12 | |
ayoung | no CAS either | 02:12 |
morganfainberg | ayoung, actually, the plan was hit kvs first because memcache is actually used. | 02:12 |
ayoung | that uses the lock now, right> | 02:12 |
*** kenperkins_ has joined #openstack-dev | 02:12 | |
*** diakunchikov_ has joined #openstack-dev | 02:12 | |
morganfainberg | ayoung, correct | 02:12 |
ayoung | true | 02:12 |
morganfainberg | ayoung, kvs is really only testing | 02:12 |
*** Chaser has quit IRC | 02:12 | |
morganfainberg | so, fix kvs, then once we are sure it's good, move memcache to it. | 02:12 |
ayoung | change the one that is really used and you find the bugs sooner. | 02:12 |
morganfainberg | next time i'll make it "dogpile_kvs" or some such | 02:12 |
morganfainberg | except, we don't test the memcache one very well | 02:13 |
ayoung | yeah, so this is probably better, as it is used in all the unit tests | 02:13 |
bknudson | do we need a tempest scenario for memcache? | 02:13 |
*** GheRiver1 has joined #openstack-dev | 02:13 | |
morganfainberg | bknudson, likely it would be good. but once we move to dogpile the code (except the back end) is all the same | 02:13 |
morganfainberg | backend = memcache client | 02:14 |
*** cdub_ has joined #openstack-dev | 02:14 | |
ayoung | bknudson, can-o-worms there | 02:14 |
ayoung | we plkan on using the kvs as the code for multipe bakcends, memcached is just one | 02:14 |
ayoung | Cassandra is the big other one, as it actually persists | 02:14 |
morganfainberg | ^ | 02:14 |
*** sgran_ has joined #openstack-dev | 02:14 | |
*** dkehn_ has joined #openstack-dev | 02:14 | |
*** wfoster_ has joined #openstack-dev | 02:14 | |
morganfainberg | ayoung, at the hackathon i need to discuss some magic code for things like cassandra | 02:14 |
ayoung | kewl | 02:14 |
*** gimps has quit IRC | 02:14 | |
*** wfoster has quit IRC | 02:14 | |
*** cdub has quit IRC | 02:15 | |
*** kenperkins has quit IRC | 02:15 | |
*** dkehn has quit IRC | 02:15 | |
*** diakunchikov has quit IRC | 02:15 | |
*** sgran has quit IRC | 02:15 | |
*** GheRivero has quit IRC | 02:15 | |
*** wfoster_ has quit IRC | 02:15 | |
*** wfoster_ has joined #openstack-dev | 02:15 | |
morganfainberg | but.. that can be Juno specific things (for implementation) | 02:15 |
morganfainberg | just plant seeds now | 02:15 |
*** gimps has joined #openstack-dev | 02:15 | |
morganfainberg | omg, it's next week isn't it! | 02:15 |
*** 77CAA0A27 has joined #openstack-dev | 02:15 | |
*** erkules_ has joined #openstack-dev | 02:16 | |
*** 77CAA0A27 is now known as Chaser | 02:17 | |
morganfainberg | ayoung, also in the commit message i said as much about memcache driver vs. kvs driver | 02:17 |
ayoung | yeah...I need to make a hotel reservation | 02:17 |
morganfainberg | ayoung, i just did at the mariott courtyard | 02:17 |
morganfainberg | i think i found a couple nights were $89 | 02:17 |
morganfainberg | and the others were $109 | 02:18 |
morganfainberg | or so | 02:18 |
*** xarses has joined #openstack-dev | 02:18 | |
*** browne has quit IRC | 02:18 | |
morganfainberg | (no "group discount", just reail) | 02:18 |
morganfainberg | retail* | 02:18 |
ayoung | yeah...I have 2 other RHers coming, and was seeing if we needed a suite or something. GOing to reserve now | 02:18 |
ayoung | I thought there was a rackspace rate? | 02:18 |
morganfainberg | might be | 02:18 |
morganfainberg | but it was like $10/night off some nights. | 02:19 |
morganfainberg | i didn't bother. | 02:19 |
*** erkules has quit IRC | 02:19 | |
morganfainberg | would have saved $20 for my booking i think | 02:19 |
*** lbragstad has joined #openstack-dev | 02:19 | |
morganfainberg | bknudson, wow, lots of merging happneded. | 02:19 |
*** sumanthns has joined #openstack-dev | 02:19 | |
*** DennyZhang has joined #openstack-dev | 02:20 | |
*** jasondotstar has joined #openstack-dev | 02:21 | |
*** buzztroll has quit IRC | 02:21 | |
*** xchu has joined #openstack-dev | 02:23 | |
*** dkehn_ is now known as dkehn | 02:23 | |
*** kgriffs_afk is now known as kgriffs | 02:24 | |
*** e0ne has joined #openstack-dev | 02:24 | |
ayoung | morganfainberg, yeah, 99 a night, ask when you check in, or call | 02:28 |
morganfainberg | ayoung, yeah i'd save $20 | 02:28 |
morganfainberg | mine was all prepaid | 02:28 |
ayoung | that was $20 worth of beer, dagnabit! | 02:28 |
*** e0ne has quit IRC | 02:28 | |
morganfainberg | ayoung, eh, | 02:29 |
morganfainberg | i think i spilled more beer than that (sigh, good beer is expensive) this month | 02:29 |
*** amcrn has quit IRC | 02:29 | |
*** buzztroll has joined #openstack-dev | 02:30 | |
*** sandywalsh has quit IRC | 02:31 | |
ayoung | morganfainberg, +2ed that patch. If there are only trivial changes, and you get a +2 from another core, feel free to approve | 02:31 |
*** CaptTofu has quit IRC | 02:31 | |
morganfainberg | nod. | 02:32 |
morganfainberg | will do. | 02:32 |
morganfainberg | likely i'll be out soon and will need to pickup tomorrow. | 02:32 |
*** sc68cal has quit IRC | 02:33 | |
*** kgriffs is now known as kgriffs_afk | 02:34 | |
*** nelsnels_ has joined #openstack-dev | 02:36 | |
*** willingc has joined #openstack-dev | 02:36 | |
*** sc68cal has joined #openstack-dev | 02:36 | |
*** mriedem has quit IRC | 02:37 | |
*** nelsnelson has quit IRC | 02:39 | |
*** nelsnels_ has quit IRC | 02:41 | |
*** nelsnelson has joined #openstack-dev | 02:43 | |
*** sc68cal has quit IRC | 02:45 | |
*** angdraug has quit IRC | 02:46 | |
*** sc68cal has joined #openstack-dev | 02:46 | |
*** hcc has joined #openstack-dev | 02:47 | |
hcc | d | 02:47 |
*** hcc is now known as hdd_ | 02:47 | |
*** sc68cal has quit IRC | 02:48 | |
*** sandywalsh has joined #openstack-dev | 02:48 | |
*** nati_ueno has quit IRC | 02:50 | |
*** ayoung has quit IRC | 02:50 | |
*** sc68cal_ has joined #openstack-dev | 02:54 | |
*** sc68cal_ has quit IRC | 02:54 | |
*** otherwiseguy has quit IRC | 02:55 | |
*** sc68cal_ has joined #openstack-dev | 02:56 | |
*** changbl has joined #openstack-dev | 02:58 | |
*** jasondotstar has quit IRC | 02:59 | |
*** reed has quit IRC | 02:59 | |
*** prad has quit IRC | 02:59 | |
*** pdevine has quit IRC | 02:59 | |
thingee | notmyname: did you see me, did you see me? | 03:00 |
*** sumanthns has quit IRC | 03:01 | |
*** KeithSharp has quit IRC | 03:02 | |
*** sarob has joined #openstack-dev | 03:02 | |
*** Mandell has quit IRC | 03:03 | |
*** rods2 has quit IRC | 03:04 | |
*** KeithSharp has joined #openstack-dev | 03:04 | |
*** blamar has quit IRC | 03:05 | |
*** spzala has quit IRC | 03:05 | |
*** doug_shelley66 has quit IRC | 03:07 | |
*** comay has quit IRC | 03:11 | |
*** buzztroll has quit IRC | 03:11 | |
*** buzztroll has joined #openstack-dev | 03:12 | |
*** gongysh has joined #openstack-dev | 03:13 | |
*** haomaiwang has quit IRC | 03:13 | |
*** haomaiwang has joined #openstack-dev | 03:13 | |
*** blamar has joined #openstack-dev | 03:14 | |
*** buzztroll has quit IRC | 03:16 | |
*** _cjones_ has joined #openstack-dev | 03:17 | |
*** buzztroll has joined #openstack-dev | 03:17 | |
*** haomaiwang has quit IRC | 03:19 | |
*** haomaiwang has joined #openstack-dev | 03:19 | |
*** _cjones_ has quit IRC | 03:21 | |
*** e0ne has joined #openstack-dev | 03:25 | |
*** kgriffs_afk is now known as kgriffs | 03:25 | |
*** sarob has quit IRC | 03:25 | |
*** sarob has joined #openstack-dev | 03:26 | |
*** gokrokve has joined #openstack-dev | 03:29 | |
*** paragan has joined #openstack-dev | 03:29 | |
*** paragan has quit IRC | 03:29 | |
*** paragan has joined #openstack-dev | 03:29 | |
*** browne has joined #openstack-dev | 03:30 | |
*** e0ne has quit IRC | 03:30 | |
*** arnaud___ has quit IRC | 03:30 | |
*** browne has quit IRC | 03:30 | |
*** arnaud__ has quit IRC | 03:31 | |
*** READ10 has quit IRC | 03:31 | |
*** claxton has joined #openstack-dev | 03:32 | |
*** pixelb has quit IRC | 03:35 | |
*** mdomsch has joined #openstack-dev | 03:35 | |
*** kgriffs is now known as kgriffs_afk | 03:37 | |
*** Edward-Zhang has quit IRC | 03:37 | |
*** sarob has quit IRC | 03:38 | |
*** sarob has joined #openstack-dev | 03:39 | |
*** byeager has joined #openstack-dev | 03:42 | |
*** koofoss has joined #openstack-dev | 03:45 | |
*** coolsvap has quit IRC | 03:46 | |
*** yaguang has quit IRC | 03:47 | |
*** yaguang has joined #openstack-dev | 03:47 | |
*** carlp has quit IRC | 03:48 | |
*** mdomsch has quit IRC | 03:50 | |
*** yaguang has quit IRC | 03:50 | |
*** sarob has quit IRC | 03:50 | |
*** csaba|afk is now known as csaba | 03:51 | |
*** koofoss has left #openstack-dev | 03:52 | |
*** fire has joined #openstack-dev | 03:54 | |
*** claxton has quit IRC | 03:54 | |
notmyname | thingee: I did!! | 03:54 |
*** afazekas has joined #openstack-dev | 03:56 | |
*** DennyZhang has quit IRC | 03:56 | |
*** sarob has joined #openstack-dev | 04:02 | |
*** Edward-Zhang has joined #openstack-dev | 04:04 | |
*** willingc has quit IRC | 04:05 | |
*** sarob has quit IRC | 04:07 | |
*** amotoki has joined #openstack-dev | 04:07 | |
*** harlowja is now known as harlowja_away | 04:07 | |
*** vipul has quit IRC | 04:08 | |
*** vipul has joined #openstack-dev | 04:08 | |
*** willingc has joined #openstack-dev | 04:10 | |
*** comay has joined #openstack-dev | 04:11 | |
*** harlowja_away is now known as harlowja | 04:14 | |
*** yaguang has joined #openstack-dev | 04:15 | |
*** claxton has joined #openstack-dev | 04:15 | |
*** pmathews has joined #openstack-dev | 04:17 | |
*** pcm_ has quit IRC | 04:22 | |
*** sumanthns has joined #openstack-dev | 04:25 | |
*** e0ne has joined #openstack-dev | 04:25 | |
*** jpomero has quit IRC | 04:26 | |
*** arosen1 has joined #openstack-dev | 04:27 | |
*** kgriffs_afk is now known as kgriffs | 04:27 | |
*** novas0x2a|laptop has quit IRC | 04:28 | |
*** stevemar has joined #openstack-dev | 04:29 | |
*** e0ne has quit IRC | 04:30 | |
*** byeager has quit IRC | 04:30 | |
*** prad has joined #openstack-dev | 04:32 | |
*** stevemar has quit IRC | 04:36 | |
*** tongli has quit IRC | 04:36 | |
*** stevemar has joined #openstack-dev | 04:37 | |
*** kgriffs is now known as kgriffs_afk | 04:38 | |
*** stevemar has quit IRC | 04:39 | |
*** stevemar has joined #openstack-dev | 04:41 | |
*** dstanek has joined #openstack-dev | 04:42 | |
*** stevemar has quit IRC | 04:44 | |
*** stevemar has joined #openstack-dev | 04:45 | |
*** fire has quit IRC | 04:46 | |
*** doude has joined #openstack-dev | 04:46 | |
*** buzztroll has quit IRC | 04:47 | |
*** nosnos_ has joined #openstack-dev | 04:47 | |
*** branen_ has joined #openstack-dev | 04:48 | |
*** xingchao has joined #openstack-dev | 04:48 | |
*** bdpayne has joined #openstack-dev | 04:49 | |
*** rushiagr has joined #openstack-dev | 04:49 | |
*** comay_ has joined #openstack-dev | 04:49 | |
*** viktors1 has joined #openstack-dev | 04:49 | |
*** sdake_ has joined #openstack-dev | 04:49 | |
*** fifieldt_ has joined #openstack-dev | 04:49 | |
*** KeithSha_ has joined #openstack-dev | 04:49 | |
*** nelsnels_ has joined #openstack-dev | 04:50 | |
*** willingc has quit IRC | 04:50 | |
*** martines__ has joined #openstack-dev | 04:50 | |
*** asalkeld__ has joined #openstack-dev | 04:50 | |
*** antigluk__ has joined #openstack-dev | 04:50 | |
*** vipuls has joined #openstack-dev | 04:50 | |
*** stevemar has quit IRC | 04:52 | |
*** stevemar has joined #openstack-dev | 04:54 | |
*** dstanek has quit IRC | 04:55 | |
*** comay has quit IRC | 04:55 | |
*** vipul has quit IRC | 04:55 | |
*** KeithSharp has quit IRC | 04:55 | |
*** changbl has quit IRC | 04:55 | |
*** sandywalsh has quit IRC | 04:55 | |
*** nelsnelson has quit IRC | 04:55 | |
*** gimps has quit IRC | 04:55 | |
*** fifieldt has quit IRC | 04:55 | |
*** xingchao_ has quit IRC | 04:55 | |
*** nosnos has quit IRC | 04:55 | |
*** asalkeld_ has quit IRC | 04:55 | |
*** krtaylor has quit IRC | 04:55 | |
*** antigluk_ has quit IRC | 04:55 | |
*** branen has quit IRC | 04:55 | |
*** sdake has quit IRC | 04:55 | |
*** viktors has quit IRC | 04:55 | |
*** rpodolyaka has quit IRC | 04:55 | |
*** doude_ has quit IRC | 04:55 | |
*** notel has quit IRC | 04:55 | |
*** martines_ has quit IRC | 04:55 | |
*** stevemar has quit IRC | 04:55 | |
*** lbragstad has quit IRC | 04:55 | |
*** stevemar has joined #openstack-dev | 04:57 | |
*** gimps has joined #openstack-dev | 04:57 | |
*** notel has joined #openstack-dev | 04:57 | |
*** sandywalsh has joined #openstack-dev | 04:57 | |
*** changbl has joined #openstack-dev | 04:57 | |
*** stevemar has quit IRC | 04:59 | |
*** aeperezt has quit IRC | 04:59 | |
*** stevemar has joined #openstack-dev | 05:00 | |
*** lcheng has quit IRC | 05:00 | |
*** lcheng has joined #openstack-dev | 05:01 | |
*** stevemar has quit IRC | 05:02 | |
*** rpodolyaka has joined #openstack-dev | 05:03 | |
*** krtaylor has joined #openstack-dev | 05:03 | |
*** stevemar has joined #openstack-dev | 05:04 | |
*** pdevine has joined #openstack-dev | 05:04 | |
*** zaitcev has quit IRC | 05:05 | |
*** pmathews has quit IRC | 05:05 | |
*** jyhc has quit IRC | 05:05 | |
*** Samos123 has quit IRC | 05:06 | |
*** rmk has quit IRC | 05:06 | |
*** morganfainberg has quit IRC | 05:07 | |
*** CrackerJackMack has quit IRC | 05:07 | |
*** zaitcev has joined #openstack-dev | 05:07 | |
*** stevemar has quit IRC | 05:09 | |
*** stevemar has joined #openstack-dev | 05:10 | |
*** buzztroll has joined #openstack-dev | 05:11 | |
*** carl_baldwin has joined #openstack-dev | 05:11 | |
*** stevemar has quit IRC | 05:12 | |
*** stevemar has joined #openstack-dev | 05:14 | |
*** sthaha has quit IRC | 05:15 | |
*** stevemar has quit IRC | 05:17 | |
*** rmk has joined #openstack-dev | 05:18 | |
*** stevemar has joined #openstack-dev | 05:18 | |
*** stevemar has quit IRC | 05:21 | |
*** pmathews has joined #openstack-dev | 05:21 | |
*** sthaha has joined #openstack-dev | 05:22 | |
*** sthaha has quit IRC | 05:22 | |
*** sthaha has joined #openstack-dev | 05:22 | |
*** stevemar has joined #openstack-dev | 05:22 | |
*** neeti has joined #openstack-dev | 05:24 | |
*** stevemar has quit IRC | 05:24 | |
*** bdpayne has quit IRC | 05:25 | |
*** stevemar has joined #openstack-dev | 05:25 | |
*** chandankumar has joined #openstack-dev | 05:27 | |
*** stevemar has quit IRC | 05:27 | |
*** stevemar has joined #openstack-dev | 05:28 | |
*** kgriffs_afk is now known as kgriffs | 05:28 | |
*** Anukalp has joined #openstack-dev | 05:29 | |
*** skraynev has quit IRC | 05:30 | |
*** stevemar has quit IRC | 05:30 | |
*** galstrom_zzz is now known as galstrom | 05:30 | |
*** sthaha has quit IRC | 05:31 | |
*** stevemar has joined #openstack-dev | 05:32 | |
*** skraynev has joined #openstack-dev | 05:33 | |
*** irenab_ has joined #openstack-dev | 05:33 | |
*** lexano has quit IRC | 05:34 | |
*** lexano has joined #openstack-dev | 05:36 | |
*** stevemar has quit IRC | 05:36 | |
*** prad has quit IRC | 05:36 | |
*** stevemar has joined #openstack-dev | 05:38 | |
*** gokrokve has quit IRC | 05:38 | |
*** kgriffs is now known as kgriffs_afk | 05:38 | |
*** chandankumar_ has joined #openstack-dev | 05:39 | |
*** gyee_ has quit IRC | 05:39 | |
*** dstanek has joined #openstack-dev | 05:40 | |
*** nshaikh has joined #openstack-dev | 05:40 | |
*** galstrom is now known as galstrom_zzz | 05:41 | |
*** morganfainberg has joined #openstack-dev | 05:41 | |
*** sthaha has joined #openstack-dev | 05:42 | |
*** sthaha has quit IRC | 05:42 | |
*** sthaha has joined #openstack-dev | 05:42 | |
*** AMike has joined #openstack-dev | 05:42 | |
*** AMike has quit IRC | 05:42 | |
*** AMike has joined #openstack-dev | 05:42 | |
*** nati_ueno has joined #openstack-dev | 05:43 | |
*** stevemar has quit IRC | 05:44 | |
*** stevemar has joined #openstack-dev | 05:46 | |
*** dstanek has quit IRC | 05:47 | |
*** stevemar has quit IRC | 05:48 | |
*** stevemar has joined #openstack-dev | 05:50 | |
*** bdpayne has joined #openstack-dev | 05:51 | |
*** stevemar has quit IRC | 05:51 | |
*** UKn0Me has quit IRC | 05:52 | |
*** coolsvap has joined #openstack-dev | 05:53 | |
*** stevemar has joined #openstack-dev | 05:53 | |
*** galstrom_zzz is now known as galstrom | 05:54 | |
*** dstanek has joined #openstack-dev | 05:55 | |
*** stevemar has quit IRC | 05:55 | |
*** tzumainn has quit IRC | 05:56 | |
*** doron_afk has quit IRC | 05:57 | |
*** stevemar has joined #openstack-dev | 05:57 | |
*** galstrom is now known as galstrom_zzz | 05:57 | |
*** carl_baldwin has quit IRC | 05:59 | |
*** stevemar has quit IRC | 05:59 | |
*** stevemar has joined #openstack-dev | 06:00 | |
*** stevemar has quit IRC | 06:03 | |
*** mikeoutland has joined #openstack-dev | 06:03 | |
*** stevemar has joined #openstack-dev | 06:03 | |
*** stevemar has quit IRC | 06:05 | |
*** stevemar has joined #openstack-dev | 06:06 | |
*** Ryan_Lane has joined #openstack-dev | 06:07 | |
*** dkuffner has joined #openstack-dev | 06:08 | |
*** dstanek has quit IRC | 06:08 | |
*** stevemar has quit IRC | 06:11 | |
*** stevemar has joined #openstack-dev | 06:12 | |
*** jamielennox is now known as jamielennox|away | 06:13 | |
*** stevemar has quit IRC | 06:14 | |
*** stevemar has joined #openstack-dev | 06:16 | |
*** stevemar has quit IRC | 06:18 | |
*** stevemar has joined #openstack-dev | 06:19 | |
*** sthaha has quit IRC | 06:20 | |
*** hdd_ has quit IRC | 06:21 | |
*** yeylon_ has joined #openstack-dev | 06:21 | |
*** stevemar has quit IRC | 06:24 | |
*** arnaud__ has joined #openstack-dev | 06:24 | |
*** stevemar has joined #openstack-dev | 06:24 | |
*** rdas has joined #openstack-dev | 06:24 | |
*** chandankumar has quit IRC | 06:25 | |
*** harlowja is now known as harlowja_away | 06:25 | |
*** stevemar has quit IRC | 06:27 | |
*** e0ne has joined #openstack-dev | 06:27 | |
*** mikeoutland has quit IRC | 06:27 | |
*** stevemar has joined #openstack-dev | 06:28 | |
*** kgriffs_afk is now known as kgriffs | 06:29 | |
*** e0ne has quit IRC | 06:32 | |
*** erkrnt has quit IRC | 06:32 | |
*** stevemar has quit IRC | 06:32 | |
*** bashok has joined #openstack-dev | 06:33 | |
*** stevemar has joined #openstack-dev | 06:33 | |
*** stevemar has quit IRC | 06:35 | |
*** arnaud__ has quit IRC | 06:35 | |
*** arnaud__ has joined #openstack-dev | 06:35 | |
*** stevemar has joined #openstack-dev | 06:36 | |
*** alex_xu has joined #openstack-dev | 06:37 | |
*** stevemar has quit IRC | 06:38 | |
*** erkrnt has joined #openstack-dev | 06:38 | |
*** nshaikh has left #openstack-dev | 06:39 | |
*** kgriffs is now known as kgriffs_afk | 06:39 | |
*** stevemar has joined #openstack-dev | 06:40 | |
*** bdpayne has quit IRC | 06:40 | |
*** arnaud___ has joined #openstack-dev | 06:40 | |
*** arnaud__ has quit IRC | 06:41 | |
*** nshaikh has joined #openstack-dev | 06:42 | |
*** stevemar has quit IRC | 06:43 | |
*** stevemar has joined #openstack-dev | 06:45 | |
*** gokrokve has joined #openstack-dev | 06:49 | |
*** stevemar has quit IRC | 06:49 | |
*** mrunge has joined #openstack-dev | 06:49 | |
*** stevemar has joined #openstack-dev | 06:51 | |
*** pmathews has quit IRC | 06:51 | |
*** eglynn has joined #openstack-dev | 06:52 | |
*** sgran_ is now known as sgran | 06:53 | |
*** arnaud___ has quit IRC | 06:53 | |
*** bvandenh has joined #openstack-dev | 06:53 | |
*** arnaud__ has joined #openstack-dev | 06:53 | |
*** gokrokve has quit IRC | 06:54 | |
*** stevemar has quit IRC | 06:55 | |
*** arnaud__ has quit IRC | 06:56 | |
*** stevemar has joined #openstack-dev | 06:57 | |
*** stevemar has quit IRC | 06:59 | |
*** morganfainberg has quit IRC | 07:00 | |
*** stevemar has joined #openstack-dev | 07:00 | |
*** erkrnt has quit IRC | 07:00 | |
*** buzztroll has quit IRC | 07:01 | |
*** morganfainberg has joined #openstack-dev | 07:01 | |
*** aditirav has joined #openstack-dev | 07:02 | |
*** stevemar has quit IRC | 07:02 | |
*** tkammer has joined #openstack-dev | 07:03 | |
*** Drankis has joined #openstack-dev | 07:03 | |
*** stevemar has joined #openstack-dev | 07:04 | |
*** buzztroll has joined #openstack-dev | 07:05 | |
*** stevemar has quit IRC | 07:06 | |
*** markwash has quit IRC | 07:08 | |
*** stevemar has joined #openstack-dev | 07:08 | |
*** sergmelikyan has joined #openstack-dev | 07:09 | |
*** stevemar has quit IRC | 07:09 | |
*** dstufft_ has joined #openstack-dev | 07:09 | |
*** pmathews has joined #openstack-dev | 07:10 | |
*** dstufft has quit IRC | 07:10 | |
*** eglynn has quit IRC | 07:11 | |
*** markwash has joined #openstack-dev | 07:11 | |
*** stevemar has joined #openstack-dev | 07:11 | |
*** ilyashakhat_ has quit IRC | 07:12 | |
*** morganfainberg has quit IRC | 07:13 | |
*** stevemar has quit IRC | 07:13 | |
*** thurloat has quit IRC | 07:13 | |
*** morganfainberg has joined #openstack-dev | 07:14 | |
*** stevemar has joined #openstack-dev | 07:15 | |
*** bknudson has quit IRC | 07:15 | |
*** huachao has joined #openstack-dev | 07:16 | |
*** bknudson has joined #openstack-dev | 07:16 | |
*** huachao has left #openstack-dev | 07:17 | |
*** comay_ has quit IRC | 07:18 | |
*** stevemar has quit IRC | 07:18 | |
*** SergeyLukjanov has joined #openstack-dev | 07:18 | |
*** dkuffner has quit IRC | 07:19 | |
*** NikitaKonovalov has joined #openstack-dev | 07:21 | |
*** jamielennox|away is now known as jamielennox | 07:23 | |
*** yolanda has joined #openstack-dev | 07:23 | |
*** arosen1 has quit IRC | 07:23 | |
*** e0ne has joined #openstack-dev | 07:25 | |
*** yolanda has quit IRC | 07:26 | |
*** rushiagr is now known as rushiagr_away | 07:26 | |
*** belmoreira has joined #openstack-dev | 07:29 | |
*** belmoreira has quit IRC | 07:29 | |
*** belmoreira has joined #openstack-dev | 07:30 | |
*** kgriffs_afk is now known as kgriffs | 07:30 | |
*** buzztroll has quit IRC | 07:30 | |
*** doron_afk has joined #openstack-dev | 07:31 | |
*** yolanda has joined #openstack-dev | 07:31 | |
*** coolsvap has quit IRC | 07:33 | |
*** zaitcev has quit IRC | 07:36 | |
*** pmcg has quit IRC | 07:37 | |
*** renlt has joined #openstack-dev | 07:37 | |
*** pmcg has joined #openstack-dev | 07:37 | |
*** ifarkas has joined #openstack-dev | 07:39 | |
*** kgriffs is now known as kgriffs_afk | 07:40 | |
*** xingchao has quit IRC | 07:40 | |
*** xingchao has joined #openstack-dev | 07:40 | |
*** fire has joined #openstack-dev | 07:42 | |
*** Mandell has joined #openstack-dev | 07:43 | |
*** pmathews has quit IRC | 07:44 | |
*** coolsvap has joined #openstack-dev | 07:44 | |
*** vartom111111115 has joined #openstack-dev | 07:45 | |
*** pdevine has quit IRC | 07:45 | |
*** andreaf has joined #openstack-dev | 07:45 | |
*** doug_shelley66 has joined #openstack-dev | 07:46 | |
*** e0ne has quit IRC | 07:47 | |
*** SergeyLukjanov has quit IRC | 07:47 | |
*** SergeyLukjanov has joined #openstack-dev | 07:48 | |
*** vartom111111116 has joined #openstack-dev | 07:48 | |
*** sergmelikyan has quit IRC | 07:49 | |
*** vartom111111115 has quit IRC | 07:49 | |
*** jcoufal has joined #openstack-dev | 07:50 | |
*** dkuffner has joined #openstack-dev | 07:54 | |
*** sergmelikyan has joined #openstack-dev | 07:54 | |
*** nmagnezi has joined #openstack-dev | 07:56 | |
*** erkules_ is now known as erkules | 07:57 | |
*** jprovazn has joined #openstack-dev | 07:58 | |
*** corXi has joined #openstack-dev | 07:58 | |
*** neeti has quit IRC | 07:58 | |
*** renlt has quit IRC | 07:59 | |
*** renlt has joined #openstack-dev | 08:00 | |
*** pmcg has quit IRC | 08:00 | |
*** renlt has quit IRC | 08:00 | |
*** rushiagr_away is now known as rushiagr | 08:00 | |
*** renlt has joined #openstack-dev | 08:01 | |
*** pmcg has joined #openstack-dev | 08:02 | |
*** xgsa has joined #openstack-dev | 08:04 | |
*** rushiagr2 has joined #openstack-dev | 08:09 | |
*** xga has joined #openstack-dev | 08:11 | |
*** rushiagr has quit IRC | 08:13 | |
*** florentflament has joined #openstack-dev | 08:22 | |
*** sushils has joined #openstack-dev | 08:22 | |
*** jistr has joined #openstack-dev | 08:24 | |
*** julienvey_ has joined #openstack-dev | 08:25 | |
*** terrylhowe has quit IRC | 08:26 | |
*** bauzas has joined #openstack-dev | 08:27 | |
*** sushils has quit IRC | 08:27 | |
*** sushils has joined #openstack-dev | 08:28 | |
*** terrylhowe has joined #openstack-dev | 08:29 | |
*** aditirav_ has joined #openstack-dev | 08:30 | |
*** kpavel has joined #openstack-dev | 08:30 | |
*** claxton has quit IRC | 08:30 | |
*** kgriffs_afk is now known as kgriffs | 08:31 | |
*** marekd|away is now known as marekd | 08:31 | |
*** aditirav has quit IRC | 08:32 | |
*** fbo_away is now known as fbo | 08:33 | |
*** lbragstad has joined #openstack-dev | 08:33 | |
*** claxton has joined #openstack-dev | 08:33 | |
*** jyhc has joined #openstack-dev | 08:34 | |
*** CrackerJackMack has joined #openstack-dev | 08:36 | |
*** Samos123 has joined #openstack-dev | 08:36 | |
*** nmagnezi has quit IRC | 08:37 | |
*** sumanthns has quit IRC | 08:37 | |
*** mancdaz_away is now known as mancdaz | 08:38 | |
*** sahid has joined #openstack-dev | 08:39 | |
*** sumanthns has joined #openstack-dev | 08:39 | |
*** mancdaz is now known as mancdaz_away | 08:39 | |
*** aditirav has joined #openstack-dev | 08:39 | |
*** mancdaz_away is now known as mancdaz | 08:40 | |
*** djinni has quit IRC | 08:40 | |
*** nshaikh has left #openstack-dev | 08:40 | |
*** kgriffs is now known as kgriffs_afk | 08:40 | |
*** Slidey_ has quit IRC | 08:41 | |
*** djinni has joined #openstack-dev | 08:42 | |
*** ygbo has joined #openstack-dev | 08:43 | |
*** flaper87|afk is now known as flaper87 | 08:43 | |
*** SergeyLukjanov has quit IRC | 08:44 | |
*** Oneiroi has quit IRC | 08:45 | |
*** nmagnezi has joined #openstack-dev | 08:45 | |
*** csaba is now known as csaba|afk | 08:46 | |
*** nati_ueno has quit IRC | 08:47 | |
*** gszasz has joined #openstack-dev | 08:47 | |
*** rossella_s has joined #openstack-dev | 08:48 | |
*** alex_xu has quit IRC | 08:48 | |
*** nshaikh has joined #openstack-dev | 08:48 | |
*** jpich has joined #openstack-dev | 08:49 | |
*** Ryan_Lane has quit IRC | 08:50 | |
*** Oneiroi has joined #openstack-dev | 08:51 | |
*** e0ne has joined #openstack-dev | 08:54 | |
*** safchain has joined #openstack-dev | 08:56 | |
*** romcheg has joined #openstack-dev | 08:57 | |
*** romcheg has quit IRC | 08:57 | |
*** romcheg has joined #openstack-dev | 08:57 | |
*** buzztroll has joined #openstack-dev | 09:02 | |
*** _ruhe is now known as ruhe | 09:04 | |
*** saschpe has quit IRC | 09:05 | |
*** buzztroll has quit IRC | 09:07 | |
*** che-arne has quit IRC | 09:07 | |
*** mmagr has joined #openstack-dev | 09:08 | |
*** rushiagr2 is now known as rushiagr | 09:08 | |
*** JordanP has joined #openstack-dev | 09:09 | |
rushiagr | jgriffith: wow, the milestone page is sooo good :) | 09:10 |
*** Drankis has quit IRC | 09:10 | |
rushiagr | jgriffith: ^^ https://launchpad.net/cinder/+milestone/icehouse-2 | 09:10 |
*** Edward-Zhang has quit IRC | 09:12 | |
*** Drankis has joined #openstack-dev | 09:12 | |
*** saschpe has joined #openstack-dev | 09:13 | |
*** MaxV has joined #openstack-dev | 09:14 | |
*** giulivo has joined #openstack-dev | 09:15 | |
*** yassine has joined #openstack-dev | 09:15 | |
*** neeti has joined #openstack-dev | 09:16 | |
*** mindpixel has joined #openstack-dev | 09:18 | |
*** eglynn has joined #openstack-dev | 09:19 | |
*** athomas has joined #openstack-dev | 09:21 | |
*** omachace has joined #openstack-dev | 09:22 | |
*** jroovers has joined #openstack-dev | 09:25 | |
*** SergeyLukjanov has joined #openstack-dev | 09:25 | |
*** yassine has quit IRC | 09:25 | |
*** yassine has joined #openstack-dev | 09:26 | |
*** ativelkov has joined #openstack-dev | 09:29 | |
*** johnthetubaguy has joined #openstack-dev | 09:30 | |
*** kgriffs_afk is now known as kgriffs | 09:31 | |
*** jp_at_hp has joined #openstack-dev | 09:32 | |
*** sergmelikyan has quit IRC | 09:32 | |
*** giulivo has quit IRC | 09:32 | |
*** giulivo has joined #openstack-dev | 09:33 | |
*** tuxtobin_ has joined #openstack-dev | 09:33 | |
*** teran has joined #openstack-dev | 09:35 | |
*** rushiagr is now known as rushiagr_away | 09:36 | |
*** pixelb has joined #openstack-dev | 09:37 | |
*** johnthetubaguy has quit IRC | 09:38 | |
*** johnthetubaguy1 has joined #openstack-dev | 09:38 | |
*** renlt has quit IRC | 09:38 | |
*** saschpe has quit IRC | 09:39 | |
*** yassine has quit IRC | 09:40 | |
*** yassine has joined #openstack-dev | 09:41 | |
*** claxton has quit IRC | 09:41 | |
*** kgriffs is now known as kgriffs_afk | 09:41 | |
*** navid__ has joined #openstack-dev | 09:42 | |
*** nshaikh has quit IRC | 09:45 | |
*** coolsvap has quit IRC | 09:46 | |
*** yassine has quit IRC | 09:46 | |
*** lbragstad has quit IRC | 09:46 | |
*** claxton has joined #openstack-dev | 09:46 | |
*** yassine has joined #openstack-dev | 09:46 | |
*** ilyashakhat has joined #openstack-dev | 09:47 | |
*** rushiagr_away is now known as rushiagr | 09:47 | |
*** exed_ has joined #openstack-dev | 09:49 | |
*** derekh has joined #openstack-dev | 09:52 | |
*** julienvey has quit IRC | 09:53 | |
*** julienvey_ is now known as julienvey | 09:53 | |
*** DynamiteXXL has joined #openstack-dev | 09:56 | |
*** nati_ueno has joined #openstack-dev | 09:58 | |
*** jtomasek has joined #openstack-dev | 10:00 | |
*** jasondotstar has joined #openstack-dev | 10:00 | |
*** fire has quit IRC | 10:00 | |
*** nati_ueno has quit IRC | 10:02 | |
*** claxton has quit IRC | 10:03 | |
*** aditirav has quit IRC | 10:04 | |
*** venkatesh has joined #openstack-dev | 10:05 | |
*** sergmelikyan has joined #openstack-dev | 10:05 | |
*** sumansn_ has joined #openstack-dev | 10:06 | |
*** sumanthns has quit IRC | 10:07 | |
*** xchu has quit IRC | 10:07 | |
*** kruskakli has quit IRC | 10:08 | |
*** coolsvap has joined #openstack-dev | 10:10 | |
*** UKn0Me has joined #openstack-dev | 10:10 | |
*** teran has quit IRC | 10:12 | |
*** asalkeld__ is now known as asalkeld | 10:14 | |
*** rushiagr2 has joined #openstack-dev | 10:14 | |
*** Anukalp has quit IRC | 10:15 | |
*** UKn0Me has quit IRC | 10:17 | |
*** rushiagr has quit IRC | 10:18 | |
ekarlso | jamielennox: around dude ? | 10:18 |
*** akrivoka has joined #openstack-dev | 10:18 | |
ekarlso | or anyone that knows how it goes with the apiclient stuff | 10:18 |
*** xuhanp has quit IRC | 10:20 | |
*** claxton has joined #openstack-dev | 10:21 | |
*** aditirav has joined #openstack-dev | 10:21 | |
*** exed_ has quit IRC | 10:24 | |
*** Anukalp has joined #openstack-dev | 10:27 | |
*** Mandell has quit IRC | 10:28 | |
*** e0ne_ has joined #openstack-dev | 10:29 | |
*** exed_ has joined #openstack-dev | 10:29 | |
rushiagr2 | ekarlso: a little bit | 10:30 |
*** SergeyLukjanov has quit IRC | 10:30 | |
ekarlso | rushiagr2: is it "stable" to use ? | 10:31 |
rushiagr2 | ekarlso: are you talking about any specific client? I've worked only on the Cinder one | 10:32 |
*** kgriffs_afk is now known as kgriffs | 10:32 | |
*** e0ne has quit IRC | 10:33 | |
*** jtomasek has quit IRC | 10:34 | |
*** UKn0Me has joined #openstack-dev | 10:34 | |
ekarlso | rushiagr2: I mean the oslo-incubator apiclient code | 10:35 |
*** martyntaylor has joined #openstack-dev | 10:35 | |
rushiagr2 | ekarlso: awh. sorry! | 10:35 |
*** Oneiroi has quit IRC | 10:35 | |
*** claxton has quit IRC | 10:36 | |
*** paragan has quit IRC | 10:38 | |
*** jprovazn has quit IRC | 10:39 | |
*** boris-42 has quit IRC | 10:39 | |
*** Oneiroi has joined #openstack-dev | 10:41 | |
*** ruhe is now known as _ruhe | 10:42 | |
*** kgriffs is now known as kgriffs_afk | 10:42 | |
*** jpeeler has quit IRC | 10:44 | |
*** nosnos_ has quit IRC | 10:46 | |
*** gongysh has quit IRC | 10:47 | |
*** saschpe has joined #openstack-dev | 10:49 | |
*** Drankis has quit IRC | 10:49 | |
*** boris-42 has joined #openstack-dev | 10:50 | |
*** yassine has quit IRC | 10:51 | |
*** Drankis has joined #openstack-dev | 10:52 | |
*** venkatesh_ has joined #openstack-dev | 10:56 | |
*** saschpe has quit IRC | 10:57 | |
*** exed_ has quit IRC | 10:57 | |
*** venkatesh has quit IRC | 10:57 | |
*** dim_ has joined #openstack-dev | 10:58 | |
*** exed_ has joined #openstack-dev | 10:59 | |
jamielennox | ekarlso: just a little - what are you looking for? | 11:01 |
*** rohitk has joined #openstack-dev | 11:01 | |
*** _ruhe is now known as ruhe | 11:06 | |
*** claxton has joined #openstack-dev | 11:07 | |
florentflament | jammielennox: have you written some doc with dolph about how we could manage the transition towards better endpoints management (allowing users to choose which API version to use)? | 11:08 |
jamielennox | florentflament: sorry, just having a couple of conversations at once | 11:08 |
ekarlso | jamielennox: wondering if it's usable for a client :) | 11:09 |
florentflament | jamielennox: ok, so how can we do to start working in that direction ? | 11:10 |
jamielennox | florentflament: ok there isn't a doc that has been written up that i know of and there are still some problems with it | 11:10 |
jamielennox | the main problem is that we have to keep compatability with what we have and that's been a real pain | 11:10 |
jamielennox | the thought is to that if you provide an unversioned endpoint in the service catalog then we can leave it up to the individual clients to deal with which versions are available | 11:11 |
florentflament | yes, ideally we should provide a way for a smooth transition | 11:11 |
*** jprovazn has joined #openstack-dev | 11:11 | |
jamielennox | they should be doing some sort of available version checking anyway | 11:11 |
*** UKn0Me has quit IRC | 11:11 | |
jamielennox | ekarlso: i know we've talked about this before :) if what you're looking for is the base managers and resources then you may as well | 11:11 |
florentflament | Yes, some kind of discovery mechanism, which would have to be implemented in each client | 11:11 |
jamielennox | florentflament: so i think i can make it work without being done in every client | 11:13 |
*** Sumeniac2 has joined #openstack-dev | 11:14 | |
*** Sumeniac has quit IRC | 11:14 | |
jamielennox | florentflament: so we've been working towards making a common communication object that all clients would share | 11:14 |
florentflament | jamielennox: mmh that would ease the transition | 11:14 |
jamielennox | the point of this is to re-use the tokens and communication parameters (certs etc) amongst all the clients | 11:14 |
*** jcoufal has quit IRC | 11:14 | |
jamielennox | the basics of this has been done in keystoneclient | 11:14 |
*** jcoufal has joined #openstack-dev | 11:15 | |
jamielennox | the next step will be auth plugins, it's here: https://review.openstack.org/#/c/60751/ and will mean that we can get rid of nova and the individual client's authentication | 11:15 |
*** venkatesh_ has quit IRC | 11:15 | |
ekarlso | jamielennox: I may as well what ? | 11:16 |
jamielennox | florentflament: and then this one https://review.openstack.org/#/c/60752/ which asks the auth plugin for the url to use talking to a server | 11:16 |
*** markmc has joined #openstack-dev | 11:16 | |
jamielennox | ekarlso: I want to rip out the session basic work but i guess by now i will have to put that into oslo anyway | 11:16 |
ekarlso | jamielennox: rip it out how ? | 11:17 |
jamielennox | ekarlso: so there are some auth plugins work in apiclient that i think will be replaced soon | 11:17 |
florentflament | jamielennox: I don't know much about the auth plugins. I'll have to check that. Thanks for the links | 11:17 |
florentflament | Is there a way I can contribute to help you ? | 11:18 |
jamielennox | ekarlso: however what's in base.py with regards to the managers and resources isn't going to change much for now | 11:18 |
*** yaguang has quit IRC | 11:18 | |
*** ruhe is now known as _ruhe | 11:18 | |
jamielennox | ekarlso: i think you may as well just use it, yours wont be the only client we will have to change soon | 11:19 |
jamielennox | ekarlso: which client are you looking for? | 11:19 |
ekarlso | jamielennox: just looking for common api helpers : | 11:19 |
ekarlso | other words apiclienjt code | 11:19 |
*** rohitk has quit IRC | 11:19 | |
jamielennox | florentflament: ok, so what i'm thinking with that last review - once we have the auth plugin being asked for where the client should talk to we can move all that discovery into the one place | 11:20 |
jamielennox | if you look at how that last one works what it means will be that a v3 nova client will only need to say session.get('/path/to', service='compute', version='v3') | 11:21 |
jamielennox | ekarlso: so an established client? | 11:21 |
jamielennox | florentflament: so no discovery required for the nova client | 11:22 |
florentflament | jamielennox: Sounds good | 11:22 |
*** DynamiteXXL has quit IRC | 11:23 | |
jamielennox | so at least we can then handle the service catalog and talking to an unversioned endpoint and finding out what is available from one centralized place (that also knows how to use the service catalog) | 11:23 |
*** _ruhe is now known as ruhe | 11:23 | |
jamielennox | florentflament: so the first thing will be the auth plugins | 11:24 |
*** asalkeld has quit IRC | 11:24 | |
jamielennox | unfortunately this is a little bit of longer term planning (though i'm hoping for the majority for icehouse) | 11:25 |
florentflament | jamielennox: I agree with this approach. I'll have to have a look at this auth plugin to go further | 11:25 |
jamielennox | florentflament: it's mostly based around the auth plugin stuff from nova if you want to look there | 11:25 |
*** aditirav has quit IRC | 11:25 | |
jamielennox | it doesn't need to be compatible because it's a new way of doing things | 11:25 |
*** aditirav has joined #openstack-dev | 11:25 | |
jamielennox | florentflament: it will be good to have someone else working in this space | 11:26 |
florentflament | jamielennox: Mmh, haven't seen nova's auth plugin neither. I may look there too | 11:26 |
jamielennox | the auth plugin review can be a little confusing because most of that review is figuring out how we can hack the existing code into the new method | 11:26 |
*** asalkeld has joined #openstack-dev | 11:27 | |
jamielennox | the problem with working client side is that we aren't allowed to break compatability at all | 11:28 |
jamielennox | and there is a lot of crap code that really needs to be ripped out | 11:28 |
florentflament | jamielennox: sure | 11:28 |
florentflament | Anyway, if going towards the auth plugin, each client will have to be updated to use the plugin. | 11:29 |
*** boris-42 has quit IRC | 11:29 | |
florentflament | Maybe we can do a transition in 2 steps: | 11:30 |
*** pcm_ has joined #openstack-dev | 11:30 | |
*** pcm_ has quit IRC | 11:30 | |
florentflament | First, by maintaining current version API endpoints, and updating clients to use the auth pluging - that way compatibility will be kept during the transition | 11:31 |
*** pcm_ has joined #openstack-dev | 11:31 | |
florentflament | Second, once every client use the auth plugin, just update the plugin so that it can use unversionned API endpoints | 11:31 |
*** AndreyGrebenniko has quit IRC | 11:31 | |
florentflament | jamielennox: Does it sound reasonable ? | 11:32 |
jamielennox | florent yes and no | 11:32 |
jamielennox | hmm didn't press tab there | 11:32 |
florentflament | ;) | 11:32 |
jamielennox | each client won't need to support the auth token but they will need to support the session object | 11:32 |
jamielennox | but it's more or less the same problem | 11:33 |
*** kgriffs_afk is now known as kgriffs | 11:33 | |
jamielennox | florentflament: from most of what i've seen keystone is the main service really trying to push to a new api version | 11:33 |
jamielennox | i know there are new ones coming but is there anyone else really wanting it now? | 11:34 |
*** rohitk has joined #openstack-dev | 11:34 | |
*** teran has joined #openstack-dev | 11:34 | |
florentflament | jamielennox, don't know much about other project's api versions, but clearly the identity v3 API provides many very interesting features | 11:36 |
jamielennox | florentflament: yep, we have the issue for the time being at least that auth_token (the token verification middleware) requires the v2 api being up | 11:36 |
*** che-arne has joined #openstack-dev | 11:37 | |
jamielennox | florentflament: are you looking to use the API or hack around it in your own project? | 11:37 |
*** boris-42 has joined #openstack-dev | 11:38 | |
florentflament | We are thinking about using the v3 API, mostly to benefit from the domain feature, in a near future. | 11:39 |
*** tuxtobin_ has quit IRC | 11:39 | |
*** csaba|afk is now known as csaba | 11:39 | |
*** michchap_ has joined #openstack-dev | 11:41 | |
*** michchap has quit IRC | 11:41 | |
florentflament | jamielennox, so I understand that the auth_token requiring the v2 api may be an issue. | 11:41 |
*** claxton has quit IRC | 11:42 | |
*** dstanek has joined #openstack-dev | 11:42 | |
*** kgriffs is now known as kgriffs_afk | 11:43 | |
jamielennox | florentflament: so you are always able to just run the V3 client directly and it will work just fine | 11:43 |
jamielennox | it just requires knowing the url where it will be | 11:43 |
*** yamahata has quit IRC | 11:43 | |
*** exed_ has quit IRC | 11:44 | |
florentflament | jamielennox, still the v3 client gets its admin endpoint from the catalog | 11:45 |
*** claxton has joined #openstack-dev | 11:45 | |
*** jtomasek has joined #openstack-dev | 11:46 | |
jamielennox | oh right, yea forgot about that - getting late here | 11:46 |
jamielennox | so if you set client.management_url then it will override what you get from the service catalog | 11:47 |
florentflament | jamielennox, BTW, i'm not mistaking the distinction between admin and public endpoint doesn't make much sense with the v3 API. So maybe the client doesn't need to get its endpoint from the catalog | 11:47 |
jamielennox | its not a good long term solution, but there are ways of getting around it for the time being | 11:47 |
jamielennox | florentflament: yea, we're trying to ditch the concept of admin endpoints altogether | 11:48 |
*** dstanek has quit IRC | 11:48 | |
jamielennox | keystone is the only one that uses it and it was something that was left around from the v2 api | 11:48 |
florentflament | jamielennox, True that there are ways of getting around, but I would prefer not too ; ) | 11:48 |
jamielennox | for V3 admin/public is the sam e | 11:48 |
jamielennox | florentflament: yep i understand | 11:49 |
*** exed_ has joined #openstack-dev | 11:49 | |
florentflament | jamielennox, so a way to deal with the v2/v3 issue (at least in keystoneclient) would be to not use the catalog since the auth url is already provided and can be used both as public and admin endpoint ? | 11:50 |
*** dkuffner has quit IRC | 11:52 | |
florentflament | don't know if this is the best way to go | 11:52 |
jamielennox | somewhat, we're trying to keep using the catalog endpoints - there are times like if you have a different endpoint for a project or domain you might want to change that | 11:52 |
*** viktors1 has quit IRC | 11:52 | |
jamielennox | florentflament: nobody does that yet | 11:52 |
*** rohitk has quit IRC | 11:54 | |
*** pschaef has joined #openstack-dev | 11:55 | |
florentflament | jamielennox, using the catalog endpoints seems a better approach | 11:55 |
florentflament | (in the long run) | 11:55 |
*** rtheis has quit IRC | 11:56 | |
jamielennox | yep | 11:56 |
florentflament | jamielennox, so there's no obvious solution right now. | 11:56 |
jamielennox | no :( | 11:56 |
florentflament | jamielennox, in the end I like my approach there ; ) https://review.openstack.org/#/c/64834/ | 11:56 |
jamielennox | you can make certain situations work by hacking it in | 11:56 |
*** rfolco has joined #openstack-dev | 11:57 | |
jamielennox | that's why i never said no - it's not good for long term but it might save some problems for certain people | 11:57 |
jamielennox | though you would have to hard code catalog entries so it's not that much better | 11:57 |
jamielennox | (you can do the same thing by just asking the service catalog for that name) | 11:58 |
florentflament | jamielennox, In the mean time, I'll have a look at the auth plugin. And try and propose better long term solutions. | 11:58 |
*** rfolco_ has joined #openstack-dev | 11:58 | |
*** gongysh has joined #openstack-dev | 11:58 | |
jamielennox | dolph (me too) aren't a fan of adding things that will have to be supported later - but i'm not sure if that one is something we don't mind supporting anyway | 11:58 |
florentflament | jamielennox, Yes but anyway we have to fill endpoints in the catalog | 11:58 |
*** safchain has quit IRC | 11:58 | |
*** UKn0Me has joined #openstack-dev | 11:59 | |
florentflament | jamespage, maybe I misunderstood .. Where would I to hardcode catalog entries ? | 11:59 |
*** aditirav_ has joined #openstack-dev | 12:00 | |
*** mkollaro has joined #openstack-dev | 12:00 | |
florentflament | jamielennox, look at chmouel comment, I think that anyway the patch may be useful | 12:00 |
jamielennox | you would need to add your identiyv3 and then create the client with the right endpoint name | 12:01 |
jamielennox | so it would be a very solution endpoint implementation | 12:01 |
florentflament | jamielennox, I was thinking about adding a --service_type option to the CLI client, that would allow the user to specify the name of the service type | 12:01 |
jamielennox | so the CLI is v2 only | 12:02 |
jamielennox | we aren't supporting v3 by CLI | 12:02 |
jamielennox | it is moving towards openstack-client | 12:02 |
florentflament | jamielennox, python-openstackclient begins to support API v3 | 12:02 |
*** coolsvap has quit IRC | 12:02 | |
florentflament | jamielennox, that's were I was hoping to add the option | 12:03 |
florentflament | s/were/where/ | 12:03 |
jamielennox | florentflament: oh, ok - run it by dtroyer and co there as well to see if they are ok with supporting that | 12:03 |
*** aditirav has quit IRC | 12:03 | |
*** aditirav_ is now known as aditirav | 12:03 | |
jamielennox | again if they are willing to support it there they really don't need our help | 12:04 |
jamielennox | but it would be a good reason to have it added to the client | 12:04 |
jamielennox | good reason/stronger incentive | 12:05 |
*** exed_ has quit IRC | 12:05 | |
*** ruhe is now known as ruhe_away | 12:05 | |
florentflament | Well, the openstack-client uses the keystoneclient library | 12:05 |
jamielennox | it does, it uses a bunch of them - and i think it has hacks around most of them to get them to work correctly | 12:05 |
florentflament | So to make it work on openstackclient, the feature has to be added to the keystoneclient library | 12:05 |
*** rkukura has quit IRC | 12:06 | |
florentflament | Well, I was also thinking about having Horizon working with the Identity v3 API ; ) | 12:06 |
florentflament | as a next step ... | 12:06 |
*** DynamiteXXL_ has joined #openstack-dev | 12:07 | |
*** ndipanov has joined #openstack-dev | 12:07 | |
jamielennox | hmm, yea i can see how you could add i there that way... | 12:08 |
jamielennox | i don't know - it's not a good long term strategy and i don't know if it's a wise thing to promote because people will jump on something like that | 12:08 |
*** ruhe_away is now known as ruhe | 12:08 | |
jamielennox | but if you can clear the idea with dolphm then that's really all you need | 12:09 |
*** dkranz has joined #openstack-dev | 12:09 | |
jamielennox | (it actually may become easier to support a service_type option with session object anyway) | 12:09 |
*** exed_ has joined #openstack-dev | 12:10 | |
florentflament | jamielennox, ; ) I've seen some patches about session objects | 12:11 |
*** dims_ is now known as dims | 12:11 | |
*** rohitk has joined #openstack-dev | 12:11 | |
jamielennox | florentflament: anyway i'm out for the night, have a chat to dolphm (west coast US) and try to convince him, it won't affect my plans at all i think and i can see your reasoning | 12:12 |
florentflament | jamielennox, ok I'll try and catch dolphm to talk about that stuff | 12:12 |
florentflament | jamielennox, thanks for the info | 12:13 |
florentflament | jamielennox, I'm gmt+1 | 12:13 |
jamielennox | florentflament: any time | 12:13 |
*** fifieldt_ has quit IRC | 12:13 | |
jamielennox | gmt+10 so this time is unusual for me | 12:13 |
florentflament | jamielennox, ok .. I'll manage to find reasonable hours to talk to dolphm and you .. | 12:14 |
jamielennox | heh, yep they just won't overlap | 12:14 |
florentflament | ;) | 12:15 |
*** dstufft_ is now known as dstufft | 12:15 | |
*** belmoreira has left #openstack-dev | 12:17 | |
*** mjfork has quit IRC | 12:17 | |
*** belmoreira has joined #openstack-dev | 12:19 | |
*** eglynn is now known as eglynn-lunch | 12:19 | |
*** FunnyLookinHat has joined #openstack-dev | 12:22 | |
*** derekh has quit IRC | 12:23 | |
*** ruhe is now known as _ruhe | 12:23 | |
*** rfolco_ has quit IRC | 12:23 | |
*** aditirav has quit IRC | 12:24 | |
*** claxton has quit IRC | 12:25 | |
*** sumansn_ has quit IRC | 12:25 | |
*** radez_g0n3 is now known as radez | 12:25 | |
*** morazi has joined #openstack-dev | 12:26 | |
*** saschpe has joined #openstack-dev | 12:29 | |
*** yatin has joined #openstack-dev | 12:30 | |
*** yassine has joined #openstack-dev | 12:32 | |
*** renlt has joined #openstack-dev | 12:33 | |
*** kgriffs_afk is now known as kgriffs | 12:34 | |
*** exed_ has quit IRC | 12:34 | |
*** renlt has quit IRC | 12:34 | |
*** renlt has joined #openstack-dev | 12:35 | |
*** dstanek has joined #openstack-dev | 12:35 | |
*** crank has quit IRC | 12:35 | |
*** rushiagr2 has quit IRC | 12:36 | |
*** crank has joined #openstack-dev | 12:36 | |
*** drewlander has joined #openstack-dev | 12:39 | |
*** exed_ has joined #openstack-dev | 12:40 | |
akrivoka | hmm, nova and cinder are giving me different info on availability zones | 12:41 |
akrivoka | http://paste.openstack.org/show/60874/ | 12:41 |
akrivoka | is this expected? | 12:41 |
*** rohitk has quit IRC | 12:43 | |
*** jroovers has quit IRC | 12:43 | |
*** kgriffs is now known as kgriffs_afk | 12:44 | |
*** dstanek has quit IRC | 12:47 | |
*** sn0wb1rd has quit IRC | 12:47 | |
*** sn0wb1rd has joined #openstack-dev | 12:49 | |
*** _ruhe is now known as ruhe | 12:50 | |
*** mrunge has quit IRC | 12:54 | |
*** heyongli has joined #openstack-dev | 12:54 | |
*** dkranz has quit IRC | 12:54 | |
*** gmoro has quit IRC | 12:56 | |
*** NikitaKonovalov has quit IRC | 12:57 | |
*** derekh has joined #openstack-dev | 12:57 | |
*** irenab_ is now known as _irenab | 12:57 | |
*** bcrochet|bbl is now known as bcrochet | 13:00 | |
*** johnthetubaguy1 is now known as johnthetubaguy | 13:00 | |
*** dkranz has joined #openstack-dev | 13:01 | |
*** glenng has joined #openstack-dev | 13:01 | |
*** NikitaKonovalov has joined #openstack-dev | 13:02 | |
*** markvoelker1 has joined #openstack-dev | 13:03 | |
*** glenng1 has joined #openstack-dev | 13:03 | |
*** jtomasek has quit IRC | 13:04 | |
*** glenng1 has quit IRC | 13:04 | |
*** dkuffner has joined #openstack-dev | 13:04 | |
*** jtomasek has joined #openstack-dev | 13:05 | |
*** alee_ has quit IRC | 13:05 | |
antigluk | I have some strange issue, https://review.openstack.org/#/c/65665/ on Zuul status is successfully checked bug no +1 | 13:06 |
antigluk | and recheck doesn't work | 13:06 |
*** glenng has quit IRC | 13:06 | |
*** gmoro has joined #openstack-dev | 13:07 | |
*** dkranz has quit IRC | 13:08 | |
*** sgordon has joined #openstack-dev | 13:09 | |
*** eglynn-lunch is now known as eglynn | 13:11 | |
*** jcoufal has quit IRC | 13:11 | |
*** thurloat has joined #openstack-dev | 13:13 | |
dolphm | florentflament: jamielennox: o/ | 13:14 |
florentflament | dolphm, hi | 13:14 |
*** ndipanov has quit IRC | 13:14 | |
florentflament | dolphm, I think jamielennox is sleeping | 13:15 |
dolphm | yeah, i'm catching up on the conversation | 13:16 |
*** sandywalsh has quit IRC | 13:16 | |
florentflament | dolphm, ok | 13:17 |
*** jroovers has joined #openstack-dev | 13:18 | |
*** bswartz has quit IRC | 13:18 | |
antigluk | nevermind. all works | 13:18 |
*** jroovers has quit IRC | 13:18 | |
*** KeithSha_ has quit IRC | 13:18 | |
*** jtomasek_ has joined #openstack-dev | 13:18 | |
*** jcoufal has joined #openstack-dev | 13:18 | |
dolphm | florentflament: alright, i'm caught up, but lost on what exactly you wanted to ask me | 13:18 |
*** jroovers has joined #openstack-dev | 13:18 | |
dolphm | florentflament: or wanted to convince me of? | 13:18 |
florentflament | dolphm, ok ... basically I wanted to convince you that the patch https://review.openstack.org/#/c/64834/ wasn't bad | 13:19 |
dolphm | florentflament: the whole thing or just a slice of it? | 13:20 |
*** viktors has joined #openstack-dev | 13:20 | |
*** jtomasek has quit IRC | 13:20 | |
florentflament | dolphm, I discussed with jamielennox about the auth plugin that would allow better endpoints management. | 13:21 |
dolphm | florentflament: full stop- do not version the service type. | 13:22 |
*** KeithSharp has joined #openstack-dev | 13:22 | |
dolphm | florentflament: IMO other projects have made a terrible UX choice in adopting a bunch of versioned service types. unfortunately, keystone should have been the first project to lead with a better solution but we fell behind on that front when versioning our own api. we need to provide a better solution, not adopt the same hack | 13:22 |
*** mkollaro has quit IRC | 13:23 | |
dolphm | florentflament: i haven't done a full review of your patch, so if there's something worth pulling out -- i'd be interested | 13:23 |
dolphm | but end users should not be specifying service types that their client should be looking for. the entire goal of service types is to facilitate automated discovery | 13:24 |
florentflament | Well. I understand. I won't advocate for versioned service type. I'll try and help jamielennox in supporting unversionned service types. | 13:24 |
*** alexpilotti has joined #openstack-dev | 13:25 | |
*** prad has joined #openstack-dev | 13:25 | |
florentflament | However, the patch only adds an argument the Client constructor | 13:25 |
florentflament | allowing to specify the name of the service type (versus harcoded 'identity' name) | 13:26 |
*** safchain has joined #openstack-dev | 13:26 | |
*** thomasem has joined #openstack-dev | 13:26 | |
*** vladikr has joined #openstack-dev | 13:27 | |
florentflament | dolphm, somehow there is nothing wrong in letting the user set the names of his services. | 13:27 |
*** jcoufal_ has joined #openstack-dev | 13:28 | |
*** jcoufal has quit IRC | 13:28 | |
dolphm | florentflament: right, that's the other half of my objection-- is not a "name" at all | 13:28 |
dolphm | it's not user-defined | 13:28 |
*** gmoro has quit IRC | 13:29 | |
*** ndipanov has joined #openstack-dev | 13:30 | |
*** vartom111111116 has quit IRC | 13:30 | |
dolphm | florentflament: your deployment is *broken* if you use an unexpected service type, and you shouldn't be putting the burden on your users to fix it | 13:31 |
*** radez is now known as radez_g0n3 | 13:31 | |
*** sandywalsh has joined #openstack-dev | 13:31 | |
*** mkollaro has joined #openstack-dev | 13:31 | |
florentflament | dolphm, ok I give up. We shall keep hardcoded service types | 13:32 |
*** aeperezt has joined #openstack-dev | 13:33 | |
*** Anukalp has quit IRC | 13:33 | |
florentflament | dolphm, I understand. I'll look at how I can help jamielennox in managing different versions of service APIs. | 13:34 |
*** kgriffs_afk is now known as kgriffs | 13:35 | |
*** achampion has quit IRC | 13:36 | |
*** doron_afk is now known as doron | 13:36 | |
*** rushiagr2 has joined #openstack-dev | 13:37 | |
*** neeti has quit IRC | 13:38 | |
*** jasondotstar has quit IRC | 13:38 | |
*** prad has quit IRC | 13:38 | |
*** mdomsch has joined #openstack-dev | 13:39 | |
*** jasondotstar has joined #openstack-dev | 13:39 | |
*** jtomasek_ has quit IRC | 13:39 | |
*** CaptTofu has joined #openstack-dev | 13:40 | |
*** cagrev has joined #openstack-dev | 13:40 | |
*** gmoro has joined #openstack-dev | 13:41 | |
*** renlt has quit IRC | 13:41 | |
*** mindpixel has quit IRC | 13:42 | |
*** jtomasek has joined #openstack-dev | 13:42 | |
*** kgriffs is now known as kgriffs_afk | 13:45 | |
*** rcj has joined #openstack-dev | 13:45 | |
*** bswartz has joined #openstack-dev | 13:47 | |
*** yamahata has joined #openstack-dev | 13:49 | |
*** yamahata has quit IRC | 13:50 | |
*** yamahata has joined #openstack-dev | 13:51 | |
*** rushiagr2 is now known as rushiagr | 13:51 | |
*** paragan has joined #openstack-dev | 13:52 | |
*** paragan has quit IRC | 13:52 | |
*** paragan has joined #openstack-dev | 13:52 | |
*** doug_shelley66 has quit IRC | 13:52 | |
*** sballe has joined #openstack-dev | 13:52 | |
*** reIce has joined #openstack-dev | 13:54 | |
*** gmoro has quit IRC | 13:54 | |
reIce | hi | 13:55 |
*** lexano has quit IRC | 13:55 | |
dolphm | reIce: o/ | 13:56 |
*** dvarga has joined #openstack-dev | 13:58 | |
*** bswartz has quit IRC | 13:59 | |
*** mriedem has joined #openstack-dev | 14:00 | |
*** dprince has joined #openstack-dev | 14:00 | |
*** med_ has quit IRC | 14:01 | |
*** jdob has joined #openstack-dev | 14:01 | |
*** jtomasek_ has joined #openstack-dev | 14:02 | |
*** jtomasek has quit IRC | 14:02 | |
*** medberry has joined #openstack-dev | 14:02 | |
*** medberry has quit IRC | 14:02 | |
*** tzumainn has joined #openstack-dev | 14:03 | |
_irenab | baoli: hi | 14:03 |
*** armax has joined #openstack-dev | 14:03 | |
*** lbragstad has joined #openstack-dev | 14:04 | |
*** jpeeler has joined #openstack-dev | 14:05 | |
*** jpeeler has joined #openstack-dev | 14:05 | |
*** noslzzp has joined #openstack-dev | 14:05 | |
*** jayg|g0n3 is now known as jayg | 14:05 | |
*** ndipanov has quit IRC | 14:07 | |
*** amuller has joined #openstack-dev | 14:07 | |
*** gmoro has joined #openstack-dev | 14:07 | |
*** romcheg has quit IRC | 14:07 | |
*** ndipanov has joined #openstack-dev | 14:07 | |
*** romcheg has joined #openstack-dev | 14:08 | |
*** xga_ has joined #openstack-dev | 14:08 | |
*** xga has quit IRC | 14:08 | |
*** kwss has joined #openstack-dev | 14:08 | |
*** thuc has joined #openstack-dev | 14:08 | |
*** amotoki has quit IRC | 14:09 | |
*** _irenab has quit IRC | 14:10 | |
*** heyongli has quit IRC | 14:11 | |
*** coolsvap has joined #openstack-dev | 14:11 | |
*** doron has left #openstack-dev | 14:13 | |
*** gmoro has quit IRC | 14:14 | |
*** gordc has joined #openstack-dev | 14:14 | |
*** yaguang has joined #openstack-dev | 14:17 | |
*** yatin has quit IRC | 14:18 | |
*** peristeri has joined #openstack-dev | 14:19 | |
*** ayoung has joined #openstack-dev | 14:21 | |
*** prad has joined #openstack-dev | 14:22 | |
*** SergeyLukjanov has joined #openstack-dev | 14:23 | |
*** lbragstad has quit IRC | 14:25 | |
*** gmoro has joined #openstack-dev | 14:26 | |
*** michchap_ has quit IRC | 14:26 | |
*** lbragstad has joined #openstack-dev | 14:26 | |
*** michchap has joined #openstack-dev | 14:27 | |
*** nkinder has quit IRC | 14:29 | |
*** neelashah has joined #openstack-dev | 14:30 | |
*** lbragstad has quit IRC | 14:31 | |
*** jecarey has quit IRC | 14:31 | |
*** stevemar has joined #openstack-dev | 14:32 | |
*** achampion has joined #openstack-dev | 14:32 | |
*** prad has quit IRC | 14:33 | |
*** doug_shelley66 has joined #openstack-dev | 14:33 | |
*** gmoro has quit IRC | 14:33 | |
*** jmw has quit IRC | 14:35 | |
*** kgriffs_afk is now known as kgriffs | 14:35 | |
*** dvarga is now known as dvarga|away | 14:36 | |
*** dvarga|away is now known as dvarga | 14:36 | |
*** mrodden has joined #openstack-dev | 14:36 | |
*** dbalog has joined #openstack-dev | 14:37 | |
*** stevemar has quit IRC | 14:38 | |
*** markmcclain has quit IRC | 14:39 | |
*** stevemar has joined #openstack-dev | 14:40 | |
*** ilyashakhat has quit IRC | 14:41 | |
*** eharney has joined #openstack-dev | 14:41 | |
*** neelashah has quit IRC | 14:41 | |
*** mjfork has joined #openstack-dev | 14:42 | |
*** FunnyLookinHat has quit IRC | 14:42 | |
*** reIce has quit IRC | 14:42 | |
*** vijendar has joined #openstack-dev | 14:42 | |
*** pberis has joined #openstack-dev | 14:43 | |
*** GheRiver1 is now known as GheRivero | 14:43 | |
*** rtheis has joined #openstack-dev | 14:43 | |
*** thuc has quit IRC | 14:43 | |
*** thuc has joined #openstack-dev | 14:44 | |
ayoung | kwss, Federationg things are looking good. Anything you are stuck on? | 14:45 |
*** kgriffs is now known as kgriffs_afk | 14:45 | |
*** gmoro has joined #openstack-dev | 14:45 | |
kwss | ayoung: not right now, just coding up the changes to my plugin at the moment | 14:46 |
ayoung | kwss, cool. JUst checking | 14:46 |
kwss | ayoung, thanks :) | 14:46 |
*** bashok has quit IRC | 14:47 | |
*** jecarey has joined #openstack-dev | 14:48 | |
*** thuc has quit IRC | 14:48 | |
*** CaptTofu has quit IRC | 14:48 | |
*** READ10 has joined #openstack-dev | 14:49 | |
*** rods1 has joined #openstack-dev | 14:50 | |
*** aveiga has joined #openstack-dev | 14:52 | |
*** jtomasek_ has quit IRC | 14:52 | |
*** jtomasek has joined #openstack-dev | 14:54 | |
*** lbragstad has joined #openstack-dev | 14:54 | |
*** terriyu has joined #openstack-dev | 14:55 | |
*** cpallares has joined #openstack-dev | 14:56 | |
*** rraja has joined #openstack-dev | 14:57 | |
*** marun has quit IRC | 14:57 | |
*** thuc has joined #openstack-dev | 14:57 | |
*** prad has joined #openstack-dev | 14:57 | |
*** herndon_ has joined #openstack-dev | 14:58 | |
*** CaptTofu has joined #openstack-dev | 14:58 | |
*** glenng has joined #openstack-dev | 14:59 | |
*** bswartz has joined #openstack-dev | 14:59 | |
*** rkukura has joined #openstack-dev | 15:00 | |
*** carl_baldwin has joined #openstack-dev | 15:00 | |
*** pmathews has joined #openstack-dev | 15:01 | |
*** burt has joined #openstack-dev | 15:02 | |
*** thuc has quit IRC | 15:02 | |
*** CaptTofu has quit IRC | 15:02 | |
*** markmcclain has joined #openstack-dev | 15:02 | |
*** CaptTofu has joined #openstack-dev | 15:02 | |
*** thuc has joined #openstack-dev | 15:02 | |
*** gargya has joined #openstack-dev | 15:02 | |
*** xga_ has quit IRC | 15:04 | |
*** gordc has quit IRC | 15:05 | |
*** thuc has quit IRC | 15:07 | |
*** tdruiva_ has joined #openstack-dev | 15:07 | |
*** CaptTofu has quit IRC | 15:07 | |
*** tdruiva_ has quit IRC | 15:07 | |
*** antigluk__ has quit IRC | 15:08 | |
*** tdruiva_ has joined #openstack-dev | 15:08 | |
*** zz_paulczar is now known as paulczar | 15:09 | |
*** gordc has joined #openstack-dev | 15:09 | |
marekd | kwss: did you chck the libs to be used instead of pysaml ? | 15:09 |
*** kbrierly has joined #openstack-dev | 15:09 | |
kwss | marekd, I'm using pyxmlsec in my latest implementation but I'll have to double check if it has any other dependencies | 15:11 |
*** gordc1 has joined #openstack-dev | 15:11 | |
*** kbrierly has quit IRC | 15:11 | |
*** zaneb has quit IRC | 15:12 | |
*** kbrierly has joined #openstack-dev | 15:12 | |
marekd | kwss: but that's just for the XML, right? | 15:12 |
*** marun has joined #openstack-dev | 15:12 | |
*** kbrierly has quit IRC | 15:12 | |
*** kbrierly has joined #openstack-dev | 15:13 | |
kwss | marekd, pyxmlsec does the signature verification, libxml2 is used to parse the XML | 15:14 |
*** gordc has quit IRC | 15:14 | |
*** kbrierly has quit IRC | 15:15 | |
*** neelashah has joined #openstack-dev | 15:15 | |
marekd | kwss: so, in other words you are going to build SAML assertions by yourself and not depend on libraries like pysaml. | 15:16 |
*** kbrierly has joined #openstack-dev | 15:16 | |
*** sc68cal_ is now known as sc68cal | 15:17 | |
*** sc68cal has joined #openstack-dev | 15:17 | |
kwss | marekd, yes, but I only build authnrequests, the authn/attribute assertions are assumed to be passed to the plugin by the client | 15:17 |
*** jruzicka has joined #openstack-dev | 15:18 | |
marekd | kwss: so you trust the client passes valid SAML response, and the only thing you do is check it's signature. | 15:18 |
marekd | so at least we know it was issued by a trusted IDP. | 15:19 |
*** jobewan has joined #openstack-dev | 15:19 | |
*** FunnyLookinHat has joined #openstack-dev | 15:19 | |
*** topol has joined #openstack-dev | 15:19 | |
*** CaptTofu has joined #openstack-dev | 15:19 | |
*** gordc1 has quit IRC | 15:20 | |
kwss | marekd, yes, but after the attributes are extracted they are verified according to the issuing/mapping rules as well | 15:20 |
*** gordc has joined #openstack-dev | 15:20 | |
*** nkinder has joined #openstack-dev | 15:21 | |
*** omachace has left #openstack-dev | 15:21 | |
*** navid__ has left #openstack-dev | 15:22 | |
*** JordanP has quit IRC | 15:22 | |
*** gmoro has quit IRC | 15:22 | |
marekd | you are talking about mapping engine now (attributes -> keystone groups), or something else? | 15:22 |
*** JordanP has joined #openstack-dev | 15:23 | |
*** gordc1 has joined #openstack-dev | 15:23 | |
*** krotscheck has joined #openstack-dev | 15:23 | |
*** rwsu has joined #openstack-dev | 15:23 | |
*** dims has quit IRC | 15:23 | |
*** pmathews has quit IRC | 15:23 | |
*** pmcg has quit IRC | 15:23 | |
kwss | marekd, the mapping is part of it, but we'd ideally like to have another stage of verification which checks that the idp is trusted to issue the given attributes | 15:24 |
*** dims has joined #openstack-dev | 15:24 | |
*** pmcg has joined #openstack-dev | 15:25 | |
marekd | kwss: there was one proposal from David about that, I remember now. | 15:25 |
*** gordc has quit IRC | 15:25 | |
*** xga has joined #openstack-dev | 15:25 | |
*** jnoller has joined #openstack-dev | 15:26 | |
kwss | yea, I've got a simple file based issuing policy class in my plugin but we'd like to add an API for it | 15:26 |
marekd | kwss: i don't know that well SAML, but does the signature mean also guarantess that no values were changed (mitm attack)? | 15:26 |
*** mfink has joined #openstack-dev | 15:27 | |
*** dkranz has joined #openstack-dev | 15:27 | |
kwss | marekd, yea, the digest value of the signature can prove that the assertion is unchanged | 15:27 |
*** zaitcev has joined #openstack-dev | 15:27 | |
marekd | kwss: ok, no more questions. | 15:27 |
kwss | marekd, ok, feel free to buzz me again if any more pop up :) | 15:28 |
*** mfer has joined #openstack-dev | 15:29 | |
*** gimps_ has joined #openstack-dev | 15:32 | |
*** aswadrangnekar1 has quit IRC | 15:33 | |
*** aloga has quit IRC | 15:33 | |
*** aloga has joined #openstack-dev | 15:33 | |
*** jorisroovers has joined #openstack-dev | 15:34 | |
*** gmoro has joined #openstack-dev | 15:34 | |
*** kevinconway has joined #openstack-dev | 15:35 | |
*** rnirmal has joined #openstack-dev | 15:35 | |
*** jdob has quit IRC | 15:35 | |
rpodolyaka | bnemec: ping | 15:35 |
*** gimps_ has quit IRC | 15:35 | |
*** jnoller has quit IRC | 15:35 | |
*** kgriffs_afk is now known as kgriffs | 15:36 | |
*** jdob has joined #openstack-dev | 15:36 | |
*** tongli has joined #openstack-dev | 15:37 | |
*** jroovers has quit IRC | 15:37 | |
bnemec | rpodolyaka: ack | 15:37 |
*** carlp has joined #openstack-dev | 15:37 | |
rpodolyaka | bnemec: hey! May I ask to review https://review.openstack.org/#/c/63782/ when you have a free minute? it's kind of a blocker for oslo.db | 15:37 |
*** jnoller has joined #openstack-dev | 15:38 | |
*** gordc1 has quit IRC | 15:38 | |
*** tdruiva_ is now known as tdruiva | 15:38 | |
*** zaneb has joined #openstack-dev | 15:38 | |
bnemec | rpodolyaka: Sure, I'll take a look | 15:39 |
rpodolyaka | bnemec: thanks a lot! | 15:39 |
*** gszasz has quit IRC | 15:41 | |
*** dvarga is now known as dvarga|away | 15:41 | |
*** dvarga|away is now known as dvarga | 15:41 | |
*** mfink has quit IRC | 15:41 | |
*** xga has quit IRC | 15:41 | |
*** xga_ has joined #openstack-dev | 15:41 | |
*** mfink has joined #openstack-dev | 15:42 | |
*** jgrimm has joined #openstack-dev | 15:44 | |
*** mfink has quit IRC | 15:44 | |
*** mfink has joined #openstack-dev | 15:44 | |
*** mfink has quit IRC | 15:45 | |
*** otherwiseguy has joined #openstack-dev | 15:46 | |
*** mfink has joined #openstack-dev | 15:46 | |
*** gimps_ has joined #openstack-dev | 15:46 | |
*** gargya has quit IRC | 15:48 | |
*** rcleere has joined #openstack-dev | 15:48 | |
*** ilyashakhat has joined #openstack-dev | 15:48 | |
*** ramishra has joined #openstack-dev | 15:50 | |
*** lbragstad has quit IRC | 15:51 | |
*** rm_work has quit IRC | 15:51 | |
stevemar | marekd ping | 15:52 |
marekd | stevemar: hey | 15:52 |
*** jmckind has joined #openstack-dev | 15:52 | |
*** galstrom_zzz is now known as galstrom | 15:52 | |
*** gszasz has joined #openstack-dev | 15:53 | |
stevemar | marekd, i missed your ping last night, i think you were asking about reviewing my patches | 15:53 |
marekd | stevemar: no problem | 15:53 |
stevemar | marekd, if you could, please do :D https://review.openstack.org/#/c/60424/ and https://review.openstack.org/#/c/59848/ | 15:53 |
*** chandankumar_ has quit IRC | 15:54 | |
marekd | stevemar: so basically this is the lateset version of the mapping engine, or just a rebase so it also contains IdP CRUD code? | 15:54 |
*** iartarisi has joined #openstack-dev | 15:55 | |
stevemar | just a rebase | 15:55 |
stevemar | the engine will be in another patch | 15:55 |
chmouel | bugsduggan: ping | 15:55 |
stevemar | different patch, not a new one | 15:55 |
*** jmontemayor has joined #openstack-dev | 15:55 | |
marekd | stevemar: this what i was asking about :-) cause didn't know whether you are almost ready to upload new code and my comments would not be relevant. | 15:56 |
stevemar | marekd, ... the mapping engine will be in another change set, that will depend on this one | 15:56 |
*** gordc has joined #openstack-dev | 15:56 | |
stevemar | don't wait, just comment :D | 15:56 |
marekd | stevemar: ok | 15:56 |
*** JonnyNomad has joined #openstack-dev | 15:57 | |
*** markmcclain has quit IRC | 16:00 | |
*** paulczar is now known as zz_paulczar | 16:00 | |
*** Ruetobas has quit IRC | 16:01 | |
*** gimps_ has quit IRC | 16:01 | |
*** gothicmindfood has joined #openstack-dev | 16:02 | |
*** gothicmindfood has quit IRC | 16:02 | |
*** kenperkins_ is now known as kenperkins | 16:02 | |
*** rraja has quit IRC | 16:02 | |
*** joesavak has joined #openstack-dev | 16:02 | |
*** zz_paulczar is now known as paulczar | 16:02 | |
*** gothicmindfood has joined #openstack-dev | 16:02 | |
*** gothicmindfood has quit IRC | 16:02 | |
*** Ruetobas has joined #openstack-dev | 16:03 | |
*** terriyu has quit IRC | 16:03 | |
*** gothicmindfood has joined #openstack-dev | 16:04 | |
bugsduggan | chmouel: pong | 16:04 |
*** jsavak has joined #openstack-dev | 16:04 | |
chmouel | bugsduggan: hello, | 16:04 |
bugsduggan | chmouel: hi | 16:05 |
ayoung | chmouel, so...I see you are taking an interest in the SSL patch, and I was wondering if you could help drive Swift toward using the requests library. | 16:05 |
chmouel | bugsduggan: I have updated the reviews directly since I have logged a feature request on requests | 16:05 |
bugsduggan | chmouel: thanks, do you still need me to link that PDF for the requests folks? | 16:06 |
chmouel | ayoung: yep, down the line i think everybody would be happy with request if we can have this implemented https://github.com/kennethreitz/requests/issues/1853 | 16:06 |
ayoung | chmouel, looking | 16:06 |
chmouel | bugsduggan: that wold be good if you can link it in that review, I am looking at the code and it does not seem too hard to add it | 16:06 |
bugsduggan | chmouel: will do | 16:06 |
chmouel | but stepping in a non openstack project is weird these days :) | 16:07 |
*** xga_ has quit IRC | 16:07 | |
*** xga has joined #openstack-dev | 16:07 | |
bugsduggan | chmouel: I have a vague recollection of looking into requests before and finding that the library its relying on (urllib2 iirc) doesn't have the ability to turn SSL compression off either, hence the decision to use raw(ish) openssl stuff | 16:07 |
*** joesavak has quit IRC | 16:08 | |
*** Ruetobas has quit IRC | 16:08 | |
*** gordc has quit IRC | 16:08 | |
*** spzala has joined #openstack-dev | 16:09 | |
*** teran has quit IRC | 16:09 | |
chmouel | bugsduggan: yeah this may be have to be done inside urllib3 | 16:09 |
*** markmcclain has joined #openstack-dev | 16:10 | |
bugsduggan | chmouel: yes, I backed off at that point as it looked like it might take a while to land in urllib3 | 16:10 |
chmouel | bugsduggan: i.e: here https://github.com/shazow/urllib3/blob/master/urllib3/util.py#L610 | 16:10 |
chmouel | bugsduggan: why? seems like they have updates like three days ago | 16:11 |
ayoung | bugsduggan, does that mean we need to modify both librarires? urllib to support the option, and requests to pass it on through? | 16:11 |
*** rm_work|away has joined #openstack-dev | 16:11 | |
bugsduggan | chmouel: ah, they didn't last time I checked (although in fairness that was a long time ago now) | 16:11 |
*** ifarkas has quit IRC | 16:11 | |
*** medberry has joined #openstack-dev | 16:12 | |
*** medberry has quit IRC | 16:12 | |
*** medberry has joined #openstack-dev | 16:12 | |
bugsduggan | ayoung: I think that is the RightThing™ to do, yes | 16:12 |
chmouel | ayoung, bugsduggan: it would seem like it | 16:12 |
*** herndon_ has left #openstack-dev | 16:12 | |
chmouel | bugsduggan: is it yours? https://github.com/shazow/urllib3/pull/309 | 16:12 |
chmouel | bugsduggan: well anyway the dude sent patch like 5 hours ago | 16:13 |
chmouel | hooray for the timing 8-) | 16:13 |
bugsduggan | chmouel: no, although that looks like it might save us all a lot of headaches! | 16:13 |
chmouel | bugsduggan: yeah :) | 16:13 |
*** Ruetobas has joined #openstack-dev | 16:13 | |
bugsduggan | chmouel: (fyi, I'm bugsduggan on github) | 16:13 |
*** paragan has quit IRC | 16:14 | |
*** rdas has quit IRC | 16:14 | |
tristanC | bugsduggan: hello! | 16:15 |
bugsduggan | tristanC: hi | 16:15 |
sileht | markmc, hi | 16:15 |
tristanC | bugsduggan: chmouel: ok, but then, how long will it takes for request to have the required feature ? | 16:16 |
*** markmcclain has quit IRC | 16:16 | |
*** gordc has joined #openstack-dev | 16:16 | |
*** lbragstad has joined #openstack-dev | 16:16 | |
tristanC | bugsduggan: maybe we can premptively switch to request module before it allow compression disabling | 16:16 |
chmouel | tristanC: may take a bit of a while ideally if we can have this review passing properly to have the security folks appeased it would be great working in the meantime on the requests/urllib3 addition | 16:17 |
markmc | sileht, hey | 16:17 |
sileht | markmc, did you find some times to take a look into the notification subscriber reviews ? | 16:17 |
markmc | sileht, I'm just catching up on things today, hoping to get back to oslo.messaging tomorrow | 16:17 |
sileht | markmc, cool, good news :) | 16:18 |
*** stevemar has quit IRC | 16:19 | |
tristanC | chmouel: i agree we should fix this issue as soon as possible | 16:20 |
*** krotscheck has quit IRC | 16:20 | |
*** alexpilotti has quit IRC | 16:20 | |
*** yaguang has quit IRC | 16:20 | |
*** stevemar has joined #openstack-dev | 16:21 | |
*** iartarisi has quit IRC | 16:21 | |
*** kpavel has quit IRC | 16:21 | |
*** stevemar has quit IRC | 16:22 | |
*** stevemar has joined #openstack-dev | 16:24 | |
*** pmathews has joined #openstack-dev | 16:24 | |
*** peristeri has quit IRC | 16:25 | |
*** gyee_ has joined #openstack-dev | 16:25 | |
*** nmagnezi has quit IRC | 16:26 | |
tristanC | bugsduggan: if you have some time, we should share our test setting... maybe I can help you reproduce the issue more easily | 16:26 |
*** peristeri has joined #openstack-dev | 16:26 | |
*** ramishra has quit IRC | 16:27 | |
*** belmoreira has quit IRC | 16:27 | |
*** ramishra has joined #openstack-dev | 16:28 | |
bugsduggan | tristanC: that would be great, I'm having trouble replicating what you guys are seeing at the moment | 16:28 |
*** belmoreira has joined #openstack-dev | 16:28 | |
*** belmoreira has quit IRC | 16:28 | |
*** armax has quit IRC | 16:28 | |
*** thuc has joined #openstack-dev | 16:28 | |
*** thuc_ has joined #openstack-dev | 16:30 | |
*** thuc has quit IRC | 16:30 | |
*** jcoufal_ has quit IRC | 16:31 | |
*** hvprash_ has joined #openstack-dev | 16:32 | |
*** stevemar has quit IRC | 16:32 | |
david-lyle | dolphm: ping | 16:33 |
dolphm | david-lyle: pong (but in a meeting) | 16:33 |
*** browne has joined #openstack-dev | 16:34 | |
david-lyle | dolphm: looking at your project update slides (missed the talk) I saw deprecating the v2 api in i-2 as a possibility | 16:34 |
*** stevemar has joined #openstack-dev | 16:34 | |
david-lyle | is that correct? | 16:34 |
dolphm | david-lyle: yes, that's done | 16:35 |
*** venkatesh has joined #openstack-dev | 16:35 | |
*** asselin_ has joined #openstack-dev | 16:35 | |
*** florentflament has quit IRC | 16:35 | |
david-lyle | dolphm: what's the planned timeframe for obsolescence? | 16:36 |
david-lyle | or tbd | 16:36 |
*** rushiagr2 has joined #openstack-dev | 16:36 | |
*** alop has joined #openstack-dev | 16:36 | |
*** venkatesh has quit IRC | 16:36 | |
*** csaba is now known as csaba|afk | 16:37 | |
*** browne has quit IRC | 16:38 | |
*** browne has joined #openstack-dev | 16:39 | |
*** stevemar has quit IRC | 16:39 | |
*** rushiagr has quit IRC | 16:39 | |
*** stevemar has joined #openstack-dev | 16:41 | |
*** bogdando has quit IRC | 16:42 | |
*** stevemar has quit IRC | 16:42 | |
*** kwss has quit IRC | 16:44 | |
*** stevemar has joined #openstack-dev | 16:44 | |
*** CaptTofu has quit IRC | 16:44 | |
*** mmagr has quit IRC | 16:45 | |
*** xarses has quit IRC | 16:46 | |
*** medberry is now known as med_ | 16:47 | |
*** SumitNaiksatam has quit IRC | 16:48 | |
*** stevemar has quit IRC | 16:48 | |
*** che-arne has quit IRC | 16:49 | |
*** che-arne has joined #openstack-dev | 16:50 | |
*** stevemar has joined #openstack-dev | 16:50 | |
*** e0ne_ has quit IRC | 16:51 | |
*** dkuffner has quit IRC | 16:51 | |
*** zz_ewindisch is now known as ewindisch | 16:52 | |
*** stevemar has quit IRC | 16:52 | |
*** jculp has joined #openstack-dev | 16:52 | |
*** pablosan has joined #openstack-dev | 16:53 | |
*** stevemar has joined #openstack-dev | 16:54 | |
*** buzztroll has joined #openstack-dev | 16:54 | |
*** devoid has joined #openstack-dev | 16:55 | |
*** jculp has quit IRC | 16:55 | |
*** Oneiroi has quit IRC | 16:57 | |
*** stevemar has quit IRC | 16:58 | |
*** xmltok has joined #openstack-dev | 16:58 | |
*** marekd is now known as marekd|away | 16:59 | |
*** stevemar has joined #openstack-dev | 17:00 | |
*** vartom111111116 has joined #openstack-dev | 17:00 | |
*** tkammer has quit IRC | 17:02 | |
*** stevemar has quit IRC | 17:02 | |
*** derekh has quit IRC | 17:02 | |
*** joesavak has joined #openstack-dev | 17:02 | |
*** Oneiroi has joined #openstack-dev | 17:03 | |
*** rushiagr2 is now known as rushiagr_away | 17:03 | |
*** gokrokve has joined #openstack-dev | 17:03 | |
*** jtomasek has quit IRC | 17:03 | |
*** stevemar has joined #openstack-dev | 17:03 | |
*** Mandell has joined #openstack-dev | 17:03 | |
*** markmc has quit IRC | 17:04 | |
*** devoid has left #openstack-dev | 17:04 | |
*** tdruiva_ has joined #openstack-dev | 17:04 | |
*** NikitaKonovalov has quit IRC | 17:04 | |
*** mlavalle has joined #openstack-dev | 17:05 | |
*** jsavak has quit IRC | 17:05 | |
*** SumitNaiksatam has joined #openstack-dev | 17:06 | |
*** tdruiva has quit IRC | 17:06 | |
*** jsavak has joined #openstack-dev | 17:06 | |
*** joesavak has quit IRC | 17:08 | |
*** stevemar has quit IRC | 17:08 | |
*** alexpilotti has joined #openstack-dev | 17:09 | |
*** stevemar has joined #openstack-dev | 17:09 | |
*** jorisroovers has quit IRC | 17:10 | |
*** dvarga is now known as dvarga|away | 17:11 | |
*** dvarga|away is now known as dvarga | 17:11 | |
*** stevemar has quit IRC | 17:12 | |
*** martyntaylor has quit IRC | 17:13 | |
*** stevemar has joined #openstack-dev | 17:14 | |
*** gszasz has quit IRC | 17:14 | |
*** stevemar has quit IRC | 17:16 | |
*** pschaef has quit IRC | 17:17 | |
*** angdraug has joined #openstack-dev | 17:17 | |
*** stevemar has joined #openstack-dev | 17:18 | |
*** ramishra has quit IRC | 17:19 | |
*** buzztroll has quit IRC | 17:20 | |
*** stevemar has quit IRC | 17:20 | |
*** tdruiva_ is now known as tdruiva | 17:20 | |
*** markmcclain has joined #openstack-dev | 17:21 | |
*** stevemar has joined #openstack-dev | 17:22 | |
*** buzztroll has joined #openstack-dev | 17:23 | |
*** gordc1 has joined #openstack-dev | 17:23 | |
*** gordc has quit IRC | 17:23 | |
*** arnaud__ has joined #openstack-dev | 17:25 | |
*** arnaud has joined #openstack-dev | 17:25 | |
*** bdpayne has joined #openstack-dev | 17:25 | |
*** stevemar has quit IRC | 17:26 | |
*** ruhe is now known as _ruhe | 17:27 | |
*** vartom111111116 has quit IRC | 17:28 | |
*** stevemar has joined #openstack-dev | 17:28 | |
*** gargya has joined #openstack-dev | 17:29 | |
*** stevemar has quit IRC | 17:29 | |
*** yassine has quit IRC | 17:30 | |
*** ozialien_ has quit IRC | 17:31 | |
*** jistr has quit IRC | 17:31 | |
*** stevemar has joined #openstack-dev | 17:31 | |
*** JordanP has quit IRC | 17:31 | |
*** igorodet has joined #openstack-dev | 17:33 | |
*** reed has joined #openstack-dev | 17:33 | |
*** aswadrangnekar has joined #openstack-dev | 17:34 | |
*** comay has joined #openstack-dev | 17:35 | |
*** kenperkins has quit IRC | 17:35 | |
*** mancdaz is now known as mancdaz_away | 17:35 | |
*** Mandell has quit IRC | 17:36 | |
*** ilyashakhat has quit IRC | 17:36 | |
*** corXi has quit IRC | 17:36 | |
*** gordc1 has quit IRC | 17:37 | |
*** NikitaKonovalov has joined #openstack-dev | 17:37 | |
*** buzztroll has quit IRC | 17:38 | |
*** aswadrangnekar has quit IRC | 17:38 | |
*** buzztroll has joined #openstack-dev | 17:38 | |
*** nmagnezi has joined #openstack-dev | 17:39 | |
*** kenperkins has joined #openstack-dev | 17:39 | |
*** MaxV has quit IRC | 17:40 | |
*** stevemar has quit IRC | 17:40 | |
*** rushiagr_away is now known as rushiagr2 | 17:40 | |
*** kenperkins has quit IRC | 17:41 | |
*** gordc has joined #openstack-dev | 17:42 | |
*** stevemar has joined #openstack-dev | 17:42 | |
*** nati_ueno has joined #openstack-dev | 17:42 | |
*** willingc has joined #openstack-dev | 17:44 | |
*** stevemar has quit IRC | 17:44 | |
*** xarses has joined #openstack-dev | 17:44 | |
*** stevemar has joined #openstack-dev | 17:46 | |
*** jbryce has joined #openstack-dev | 17:46 | |
*** stevemar has quit IRC | 17:47 | |
*** gokrokve has quit IRC | 17:49 | |
*** safchain has quit IRC | 17:49 | |
*** ijw has joined #openstack-dev | 17:49 | |
*** stevemar has joined #openstack-dev | 17:49 | |
ijw | fungi: ping | 17:50 |
*** gordc has quit IRC | 17:50 | |
*** DynamiteXXL_ has quit IRC | 17:50 | |
*** gordc has joined #openstack-dev | 17:51 | |
*** gordc has quit IRC | 17:51 | |
*** KeithSharp has quit IRC | 17:51 | |
fungi | ijw: hi there | 17:52 |
ijw | fungi: I think in certain twisty situations you could probably trigger that ipv6 issue, but you may require a warped mind | 17:52 |
*** eglynn has quit IRC | 17:53 | |
ijw | Specifically, any hypervisor that isn't libvirt, and ipv6 support turned off in Openstack | 17:53 |
*** jbryce has quit IRC | 17:54 | |
*** KeithSharp has joined #openstack-dev | 17:54 | |
fungi | ijw: thanks | 17:55 |
*** jsavak has quit IRC | 17:55 | |
*** SumitNaiksatam_ has joined #openstack-dev | 17:55 | |
*** NikitaKonovalov has quit IRC | 17:56 | |
*** dvarga is now known as dvarga|away | 17:56 | |
*** SumitNaiksatam has quit IRC | 17:57 | |
*** SumitNaiksatam_ is now known as SumitNaiksatam | 17:57 | |
*** rm_work|away is now known as rm_work | 17:57 | |
*** rm_work has joined #openstack-dev | 17:57 | |
*** stevemar has quit IRC | 17:59 | |
*** afazekas has quit IRC | 18:00 | |
*** BobBall is now known as BobBallAway | 18:00 | |
*** stevemar has joined #openstack-dev | 18:01 | |
*** CaptTofu has joined #openstack-dev | 18:01 | |
*** jroovers has joined #openstack-dev | 18:01 | |
*** gokrokve has joined #openstack-dev | 18:01 | |
*** NikitaKonovalov has joined #openstack-dev | 18:01 | |
*** jorisroovers has joined #openstack-dev | 18:01 | |
morganfainberg | stevemar, ping | 18:01 |
*** moted has quit IRC | 18:01 | |
*** akrivoka has quit IRC | 18:01 | |
stevemar | morganfainberg hola | 18:02 |
morganfainberg | stevemar, looking for a quick pair of eyes on https://review.openstack.org/#/c/65377/ | 18:02 |
*** nmagnezi has quit IRC | 18:02 | |
morganfainberg | super simple cleanup stuff. | 18:02 |
morganfainberg | but don't want it to get lost. | 18:02 |
morganfainberg | if its worth splitting into multiple patches i can do that today | 18:03 |
*** gokrokve has quit IRC | 18:03 | |
*** moted has joined #openstack-dev | 18:04 | |
*** dvarga|away is now known as dvarga | 18:04 | |
*** ygbo has quit IRC | 18:04 | |
*** jnoller has quit IRC | 18:05 | |
*** jroovers has quit IRC | 18:06 | |
stevemar | morganfainberg - yeah its a bunch of random stuff :) | 18:06 |
stevemar | morganfainberg but very trivial | 18:06 |
*** rushiagr2 is now known as rushiagr_away | 18:06 | |
*** jmeridth has quit IRC | 18:06 | |
stevemar | does it need a rebase? | 18:07 |
morganfainberg | it was actually meant to be additions to the business logic patchset | 18:07 |
stevemar | last update as on the 7th | 18:07 |
*** harlowja_away is now known as harlowja | 18:07 | |
morganfainberg | but that one was approved before i could upload a new one | 18:07 |
morganfainberg | nah, it should not require a rebase | 18:07 |
morganfainberg | it's parent was my assignment first class one | 18:07 |
morganfainberg | the one that removes the disable user logic from delete_domain | 18:08 |
*** jpich has quit IRC | 18:08 | |
stevemar | approved | 18:08 |
*** dvarga is now known as dvarga|away | 18:08 | |
*** dvarga|away is now known as dvarga | 18:08 | |
stevemar | yay | 18:08 |
morganfainberg | cool | 18:08 |
*** paulczar is now known as zz_paulczar | 18:08 | |
morganfainberg | stevemar, I'm super happy that code is all in now. | 18:08 |
*** tqtran has joined #openstack-dev | 18:08 | |
morganfainberg | so much cleanup in Icehouse for keystone so far | 18:08 |
*** athomas has quit IRC | 18:09 | |
stevemar | cleanup is good | 18:09 |
morganfainberg | yes. | 18:09 |
*** hvprash_ has quit IRC | 18:09 | |
morganfainberg | if the rest of the cleanup gets done, i think working on Keystone in Juno is going to start becoming easier | 18:09 |
*** teran has joined #openstack-dev | 18:10 | |
morganfainberg | generally speaking, things look better and better | 18:10 |
*** martines__ has quit IRC | 18:11 | |
*** joesavak has joined #openstack-dev | 18:11 | |
*** martines has joined #openstack-dev | 18:11 | |
*** thuc_ has quit IRC | 18:12 | |
*** jdurgin1 has joined #openstack-dev | 18:12 | |
*** sdake_ has quit IRC | 18:12 | |
*** rushiagr_away is now known as rushiagr2 | 18:12 | |
*** thuc has joined #openstack-dev | 18:13 | |
morganfainberg | stevemar, also, OMG merge rebase craziness | 18:13 |
stevemar | morganfainberg, ugh i know | 18:13 |
morganfainberg | stevemar, sorry :( | 18:13 |
morganfainberg | a lot of that is my fault | 18:13 |
*** xga has quit IRC | 18:13 | |
morganfainberg | the assignment first class + deletion logic changes touched a ton of things | 18:14 |
morganfainberg | oh my, look at the time | 18:15 |
morganfainberg | i need to head into the office! | 18:15 |
*** _cjones_ has joined #openstack-dev | 18:15 | |
* morganfainberg was distracted by emails and code | 18:15 | |
*** jsavak has joined #openstack-dev | 18:15 | |
morganfainberg | uhm... be back in a few | 18:15 |
*** johnthetubaguy has quit IRC | 18:15 | |
stevemar | morganfainberg, work from home day | 18:15 |
morganfainberg | stevemar, work from bed? :P nah, need to chat w/ people @ office | 18:16 |
morganfainberg | and... i'm lacking good quality caffination at home | 18:16 |
*** otherwiseguy has quit IRC | 18:16 | |
stevemar | morganfainberg, and we're back to normal typing... all the pizza i was eating is done | 18:17 |
morganfainberg | stevemar, and i _might_ be a coffee snob | 18:17 |
stevemar | morganfainberg, i know full well that you are ^_- | 18:17 |
*** thuc has quit IRC | 18:17 | |
*** morganfainberg is now known as needscoffee | 18:17 | |
stevemar | dolphm has promised good coffee at hackathon | 18:17 |
needscoffee | stevemar, i know | 18:18 |
*** joesavak has quit IRC | 18:19 | |
*** rm_work has quit IRC | 18:19 | |
*** csd has joined #openstack-dev | 18:20 | |
*** thuc has joined #openstack-dev | 18:20 | |
*** thuc has quit IRC | 18:21 | |
*** thuc has joined #openstack-dev | 18:21 | |
*** dvarga is now known as dvarga|away | 18:21 | |
*** dvarga|away is now known as dvarga | 18:22 | |
*** thuc has quit IRC | 18:22 | |
*** thuc has joined #openstack-dev | 18:22 | |
*** julienvey has quit IRC | 18:23 | |
*** rm_work|away has joined #openstack-dev | 18:23 | |
*** rm_work|away is now known as rm_work | 18:23 | |
*** rm_work has joined #openstack-dev | 18:23 | |
ayoung | *might*? | 18:23 |
needscoffee | ayoung, lol | 18:24 |
ayoung | any Nova devs: can one user view another user's keypairs? | 18:25 |
*** xgsa has quit IRC | 18:25 | |
needscoffee | ayoung, the ssh keypairs? | 18:25 |
ayoung | needscoffee, yeah | 18:25 |
needscoffee | ayoung, i believe so, since iirc you can select a keypair. | 18:25 |
needscoffee | ayoung, but... i might be confusing it with aws | 18:26 |
ayoung | needscoffee, I can only seem to see my own on our internal OS system | 18:26 |
needscoffee | i'll look once i'm in the office if you don't have an aswer (have a dev system setup there) | 18:26 |
needscoffee | answer before i'm there | 18:26 |
ayoung | needscoffee, I'll find out | 18:26 |
needscoffee | k | 18:26 |
needscoffee | yeah, i might be confusing it w/ AWS. | 18:26 |
*** mlavalle has quit IRC | 18:27 | |
*** galstrom is now known as galstrom_zzz | 18:31 | |
*** amuller has quit IRC | 18:33 | |
*** stevemar has quit IRC | 18:35 | |
*** stevemar has joined #openstack-dev | 18:37 | |
*** asselin_ has quit IRC | 18:38 | |
*** thuc has quit IRC | 18:39 | |
*** thuc has joined #openstack-dev | 18:40 | |
ayoung | russellb, do you know if it is possible for one user to see another users keypairs in Nova? If I want to create a vm, and have another team member be able to log in to it, what is the usual approach? Manual Keypair management, or is there some way to use the Nova keypairs? | 18:40 |
*** jnoller has joined #openstack-dev | 18:40 | |
*** stevemar has quit IRC | 18:42 | |
*** thuc_ has joined #openstack-dev | 18:42 | |
russellb | ayoung: keypairs in nova are owned by individual users | 18:43 |
russellb | so, you can only see your own | 18:43 |
*** thuc_ has quit IRC | 18:43 | |
russellb | also, nova only lets you specify a single key | 18:43 |
*** stevemar has joined #openstack-dev | 18:43 | |
russellb | so i guess you'd get it set up with 1 automatically, and add the rest some other way | 18:43 |
*** thuc_ has joined #openstack-dev | 18:44 | |
russellb | whether that's custom user data stuff to cloud init, or some other means | 18:44 |
*** thuc has quit IRC | 18:44 | |
russellb | puppet, chef, etc | 18:44 |
*** thuc_ has quit IRC | 18:45 | |
*** thuc has joined #openstack-dev | 18:45 | |
ayoung | russellb, that is what I thought. Would it make sense to do something like expose some keypairs per (user/project) and then all members of the project could view them and, potenaitlly add them to an image? | 18:45 |
*** che-arne has quit IRC | 18:45 | |
*** dstanek has joined #openstack-dev | 18:45 | |
russellb | yeah, might make sense to expose a keypair to a whole project instead of just a user | 18:45 |
russellb | just not supported right now AFAIK | 18:45 |
*** ndipanov has quit IRC | 18:46 | |
russellb | also i'm not sure if nova is the right long term place for storing these keys anyway | 18:46 |
russellb | just there for historical reasons | 18:46 |
ayoung | right, just that Nova needs to be aware of them regardless of where they are stored | 18:46 |
russellb | yeah | 18:46 |
*** kenperkins has joined #openstack-dev | 18:46 | |
*** rushiagr2 has quit IRC | 18:47 | |
*** epim has joined #openstack-dev | 18:47 | |
*** amcrn has joined #openstack-dev | 18:47 | |
*** sarob has joined #openstack-dev | 18:49 | |
*** dstanek has quit IRC | 18:50 | |
*** zzelle has joined #openstack-dev | 18:50 | |
*** zz_paulczar is now known as paulczar | 18:51 | |
*** _ruhe is now known as ruhe | 18:52 | |
*** rcj has quit IRC | 18:53 | |
*** stevemar has quit IRC | 18:53 | |
*** epim has quit IRC | 18:54 | |
*** stevemar has joined #openstack-dev | 18:55 | |
*** beagles has quit IRC | 18:56 | |
*** stevemar has quit IRC | 18:56 | |
*** MaxV has joined #openstack-dev | 18:56 | |
*** jruzicka has quit IRC | 18:56 | |
*** dvarga is now known as dvarga|away | 18:57 | |
*** dvarga|away is now known as dvarga | 18:57 | |
*** stevemar has joined #openstack-dev | 18:58 | |
*** dstanek has joined #openstack-dev | 18:59 | |
*** stevemar has quit IRC | 19:00 | |
*** cagrev_ has joined #openstack-dev | 19:00 | |
*** b3nt_pin has joined #openstack-dev | 19:01 | |
*** mlavalle has joined #openstack-dev | 19:01 | |
*** b3nt_pin is now known as beagles | 19:01 | |
*** e0ne has joined #openstack-dev | 19:01 | |
*** NikitaKonovalov has quit IRC | 19:02 | |
*** stevemar has joined #openstack-dev | 19:02 | |
*** galstrom_zzz is now known as galstrom | 19:02 | |
*** cagrev has quit IRC | 19:03 | |
*** dstanek has quit IRC | 19:04 | |
*** epim has joined #openstack-dev | 19:04 | |
*** tqtran1 has joined #openstack-dev | 19:05 | |
*** mdomsch has quit IRC | 19:05 | |
*** dstanek has joined #openstack-dev | 19:05 | |
*** alexpilotti has quit IRC | 19:06 | |
*** tqtran has quit IRC | 19:06 | |
*** danielbruno has joined #openstack-dev | 19:08 | |
*** stevemar has quit IRC | 19:08 | |
*** alexpilotti has joined #openstack-dev | 19:09 | |
*** wwallnrr__ has joined #openstack-dev | 19:09 | |
*** stevemar has joined #openstack-dev | 19:10 | |
*** MaxV has quit IRC | 19:11 | |
*** stevemar has quit IRC | 19:11 | |
*** vartom111111116 has joined #openstack-dev | 19:12 | |
*** dvarga is now known as dvarga|away | 19:12 | |
*** dvarga|away is now known as dvarga | 19:12 | |
*** SergeyLukjanov has quit IRC | 19:13 | |
*** stevemar has joined #openstack-dev | 19:13 | |
*** gargya has quit IRC | 19:13 | |
*** sahid has quit IRC | 19:13 | |
*** MaxV has joined #openstack-dev | 19:14 | |
*** rossella_s has quit IRC | 19:14 | |
*** kgriffs is now known as kgriffs_afk | 19:14 | |
*** rossella_s has joined #openstack-dev | 19:15 | |
*** rossella_s has quit IRC | 19:15 | |
*** tqtran has joined #openstack-dev | 19:17 | |
*** stevemar has quit IRC | 19:17 | |
*** stevemar has joined #openstack-dev | 19:18 | |
*** melwitt has joined #openstack-dev | 19:19 | |
*** treeg has joined #openstack-dev | 19:20 | |
*** treeg has left #openstack-dev | 19:20 | |
*** tqtran1 has quit IRC | 19:20 | |
*** stevemar has quit IRC | 19:22 | |
*** rcleere has quit IRC | 19:22 | |
*** vikasd has joined #openstack-dev | 19:23 | |
*** doug_shelley66 has quit IRC | 19:23 | |
*** stevemar has joined #openstack-dev | 19:24 | |
*** doug_shelley66 has joined #openstack-dev | 19:24 | |
*** belmoreira has joined #openstack-dev | 19:25 | |
ayoung | dolphm, is the Credentials API the appropriate replacement for having KeyPairs directly in Nova? Should Nova query Keystone for the Keypairs for a user? | 19:26 |
*** sushils has quit IRC | 19:27 | |
*** stevemar has quit IRC | 19:27 | |
jaypipes | ayoung: had a couple questions for you on https://review.openstack.org/#/c/63570/ if you have a moment. thx in advance! | 19:27 |
ayoung | jaypipes, lemme pull that up | 19:28 |
jaypipes | cheers man | 19:28 |
ayoung | jaypipes, fire 'way | 19:28 |
jaypipes | ayoung: FYI, I def think the credentials API is the perfect place for keypair management. | 19:28 |
*** ijw has quit IRC | 19:28 | |
jaypipes | ayoung: questions are in the review inline :) | 19:28 |
ayoung | jaypipes, so..if we use the cred api, should keys be exposer per project? | 19:28 |
ayoung | exposed | 19:28 |
jaypipes | ayoung: per project, yes. | 19:29 |
ayoung | ie: I want everyone in my "IdM" project to be able to inject my keys into VMs that they spin up? | 19:29 |
*** willingc has quit IRC | 19:29 | |
*** stevemar has joined #openstack-dev | 19:29 | |
*** thuc has quit IRC | 19:29 | |
ayoung | So we would need to be able to query credential based on some project association | 19:29 |
jaypipes | ayoung: yes. | 19:30 |
*** doug_shelley66 has quit IRC | 19:30 | |
*** thuc has joined #openstack-dev | 19:30 | |
jaypipes | ayoung: GET /$tenant/keypairs | 19:30 |
ayoung | $project dude! | 19:30 |
jaypipes | sorry, $project :) old habits die hard... | 19:30 |
ayoung | heheh | 19:30 |
jaypipes | :) | 19:30 |
ayoung | jaypipes, your comment on the review is correct | 19:31 |
ayoung | the sql upgrade tests you point out are the right idea | 19:31 |
ayoung | https://github.com/openstack/keystone/blob/master/keystone/tests/test_sql_upgrade.py#L609 | 19:31 |
jaypipes | k, great. just wanted to verify with you before I went further.. | 19:31 |
ayoung | yous can be pretty minimalistic, just confirm the column names after upgrade | 19:31 |
ayoung | sorry, 'yous' should read 'youses' | 19:32 |
*** MaxV has quit IRC | 19:32 | |
*** sushils has joined #openstack-dev | 19:32 | |
jaypipes | ayoung: I got yous. | 19:32 |
ayoung | Wikked Awesome | 19:32 |
jaypipes | lol. | 19:32 |
jaypipes | ayoung: on the other question? | 19:32 |
ayoung | looking now | 19:32 |
jaypipes | kk | 19:32 |
*** rnirmal has quit IRC | 19:33 | |
ayoung | the nesting thing was answered by you in IRC: we don't query by region yet. Addthe SQL tests and this is good by me | 19:33 |
jaypipes | ok dokey, will do. many thx! | 19:34 |
ayoung | be nice to put this one to bed | 19:34 |
jaypipes | ayoung: yup. more patches related to regions will build on it (like how to deal with the endpoint.region mappings that already exist in a deploy) | 19:34 |
*** pdevine has joined #openstack-dev | 19:34 | |
*** thuc has quit IRC | 19:34 | |
*** danielbruno has quit IRC | 19:35 | |
*** thuc has joined #openstack-dev | 19:35 | |
*** otherwiseguy has joined #openstack-dev | 19:35 | |
*** doug_shelley66 has joined #openstack-dev | 19:36 | |
*** rcleere has joined #openstack-dev | 19:38 | |
*** stevemar has quit IRC | 19:38 | |
*** stevemar has joined #openstack-dev | 19:39 | |
*** rnirmal has joined #openstack-dev | 19:39 | |
*** doug_shelley66 has quit IRC | 19:40 | |
*** colinmcnamara has joined #openstack-dev | 19:40 | |
*** doug_shelley66 has joined #openstack-dev | 19:40 | |
*** markmcclain has quit IRC | 19:42 | |
*** kenperkins has quit IRC | 19:43 | |
*** spzala has quit IRC | 19:44 | |
ayoung | jaypipes, https://blueprints.launchpad.net/keystone/+spec/project-scoped-credentials | 19:44 |
*** ruhe is now known as _ruhe | 19:44 | |
jaypipes | ayoung: ++ | 19:45 |
*** dstanek has quit IRC | 19:46 | |
*** novas0x2a|laptop has joined #openstack-dev | 19:47 | |
*** danielbruno has joined #openstack-dev | 19:47 | |
*** danielbruno has quit IRC | 19:47 | |
*** danielbruno has joined #openstack-dev | 19:47 | |
*** Mandell has joined #openstack-dev | 19:47 | |
*** stevemar has quit IRC | 19:49 | |
*** dkuffner has joined #openstack-dev | 19:50 | |
*** sarob has quit IRC | 19:50 | |
*** sarob has joined #openstack-dev | 19:51 | |
*** stevemar has joined #openstack-dev | 19:51 | |
*** sarob has quit IRC | 19:53 | |
ayoung | jaypipes, https://blueprints.launchpad.net/nova/+spec/credentials-from-keystone | 19:53 |
*** sarob has joined #openstack-dev | 19:53 | |
*** antigluk_ has joined #openstack-dev | 19:53 | |
*** needscoffee is now known as morganfainberg | 19:54 | |
*** blamar has quit IRC | 19:54 | |
*** stevemar has quit IRC | 19:55 | |
*** david-lyle_ has joined #openstack-dev | 19:55 | |
morganfainberg | chmouel, ping | 19:56 |
*** gokrokve has joined #openstack-dev | 19:56 | |
morganfainberg | chmouel, i know you're not US time, but... wanted to bug you about a devstack review if you have a moment | 19:56 |
*** markmcclain has joined #openstack-dev | 19:56 | |
*** stevemar has joined #openstack-dev | 19:57 | |
morganfainberg | chmouel, and i se you responding to emails every now and again ;) | 19:57 |
*** dvarga is now known as dvarga|away | 19:58 | |
*** MaxV has joined #openstack-dev | 19:58 | |
*** noslzzp has quit IRC | 19:58 | |
*** CaptTofu has quit IRC | 19:59 | |
*** sushils has quit IRC | 20:00 | |
*** antigluk_ has quit IRC | 20:01 | |
jaypipes | ayoung: "Nova only has maintains a store" :) | 20:02 |
ayoung | Did I write that? | 20:02 |
*** dvarga|away is now known as dvarga | 20:02 | |
jaypipes | yup :) | 20:02 |
*** antigluk_ has joined #openstack-dev | 20:02 | |
jaypipes | ayoung: lmao. | 20:02 |
*** antigluk_ has quit IRC | 20:03 | |
jaypipes | ayoung: very Yoda-esque. | 20:03 |
ayoung | jaypipes, glad I am here to entertain you. | 20:03 |
jaypipes | :) | 20:03 |
ayoung | Joe Pesci style | 20:03 |
morganfainberg | ayoung, what no nick change for that? | 20:03 |
*** danielbruno has quit IRC | 20:04 | |
*** ayoung is now known as tommy-devito | 20:04 | |
*** antigluk_ has joined #openstack-dev | 20:04 | |
morganfainberg | ayoung, anything else you need from me blocking the revocation event stuff (tokens or what have you)? | 20:04 |
morganfainberg | tommy-devito, before i start working on memcache, hmac/encrypt, etc for it | 20:04 |
*** tommy-devito is now known as ayoung | 20:05 | |
morganfainberg | or other things, want to ensure i'm not holding you up | 20:05 |
ayoung | morganfainberg, nope | 20:05 |
morganfainberg | ayoung, ok good. | 20:05 |
morganfainberg | ayoung, cause, revocation events = win | 20:05 |
ekarlso | horizon folks here ? | 20:05 |
*** radez_g0n3 is now known as radez | 20:05 | |
ayoung | no pressure on nothin | 20:05 |
*** vipuls is now known as vipuls-away | 20:05 | |
morganfainberg | phsaw, | 20:05 |
*** vipuls-away is now known as vipuls | 20:05 | |
morganfainberg | you got that | 20:05 |
morganfainberg | no problem. | 20:05 |
*** rcj has joined #openstack-dev | 20:05 | |
*** sushils has joined #openstack-dev | 20:06 | |
*** antigluk_ has quit IRC | 20:06 | |
*** rpodolyaka1 has joined #openstack-dev | 20:07 | |
*** antigluk_ has joined #openstack-dev | 20:07 | |
*** antigluk_ has quit IRC | 20:08 | |
*** boris-42 has quit IRC | 20:08 | |
*** SergeyLukjanov has joined #openstack-dev | 20:09 | |
*** antigluk_ has joined #openstack-dev | 20:09 | |
*** xga has joined #openstack-dev | 20:10 | |
*** dvarga is now known as dvarga|away | 20:11 | |
*** dvarga|away is now known as dvarga | 20:11 | |
*** alexpilotti has quit IRC | 20:11 | |
*** SergeyLukjanov has quit IRC | 20:11 | |
*** kgriffs_afk is now known as kgriffs | 20:12 | |
*** rpodolyaka1 has left #openstack-dev | 20:13 | |
*** spzala has joined #openstack-dev | 20:14 | |
*** henrynash has quit IRC | 20:14 | |
*** xga has quit IRC | 20:15 | |
*** antigluk_ has quit IRC | 20:15 | |
*** sdake has joined #openstack-dev | 20:16 | |
*** sdake has quit IRC | 20:16 | |
*** sdake has joined #openstack-dev | 20:16 | |
*** antigluk_ has joined #openstack-dev | 20:16 | |
*** boris-42 has joined #openstack-dev | 20:17 | |
*** Drankis has quit IRC | 20:19 | |
*** vipuls is now known as vipuls-away | 20:21 | |
*** dkuffner has quit IRC | 20:22 | |
*** nkinder has quit IRC | 20:23 | |
*** antigluk_ has quit IRC | 20:23 | |
*** dkuffner has joined #openstack-dev | 20:24 | |
*** antigluk_ has joined #openstack-dev | 20:24 | |
*** yolanda has quit IRC | 20:25 | |
*** briancli1e is now known as briancline | 20:25 | |
*** alexpilotti has joined #openstack-dev | 20:27 | |
*** rfolco has quit IRC | 20:28 | |
*** gothicmindfood has quit IRC | 20:30 | |
*** eharney has quit IRC | 20:30 | |
*** antigluk_ has quit IRC | 20:30 | |
*** dkuffner has quit IRC | 20:31 | |
*** antigluk_ has joined #openstack-dev | 20:31 | |
*** rkukura has quit IRC | 20:32 | |
*** colinmcnamara has quit IRC | 20:33 | |
*** cagrev_ has quit IRC | 20:34 | |
*** tdruiva has quit IRC | 20:34 | |
*** kenperkins has joined #openstack-dev | 20:36 | |
*** antigluk_ has quit IRC | 20:37 | |
*** antigluk_ has joined #openstack-dev | 20:38 | |
*** tdruiva has joined #openstack-dev | 20:38 | |
*** tdruiva has quit IRC | 20:39 | |
*** cagrev_ has joined #openstack-dev | 20:40 | |
*** mjfork_ has joined #openstack-dev | 20:41 | |
*** spzala has quit IRC | 20:41 | |
*** mjfork has quit IRC | 20:43 | |
*** mjfork_ is now known as mjfork | 20:43 | |
*** antigluk_ has quit IRC | 20:44 | |
*** stevemar has quit IRC | 20:45 | |
*** antigluk_ has joined #openstack-dev | 20:45 | |
*** KataiKou has joined #openstack-dev | 20:46 | |
*** otherwiseguy has quit IRC | 20:46 | |
KataiKou | Do we have the draft of the Installation Guide for Icehouse posted anywhere? | 20:46 |
*** radix__ has quit IRC | 20:46 | |
*** stevemar has joined #openstack-dev | 20:47 | |
*** browne has quit IRC | 20:48 | |
*** jamespage_ has joined #openstack-dev | 20:48 | |
*** Sumeniac2 has quit IRC | 20:49 | |
*** pdevine has quit IRC | 20:49 | |
*** antigluk_ has quit IRC | 20:50 | |
*** drewlander has quit IRC | 20:51 | |
*** antigluk_ has joined #openstack-dev | 20:52 | |
*** denis_makogon_ has joined #openstack-dev | 20:52 | |
*** paulczar is now known as zz_paulczar | 20:52 | |
*** denis_makogon_ is now known as denis_makogon | 20:52 | |
*** cpallares has quit IRC | 20:53 | |
*** dprince has quit IRC | 20:53 | |
*** KataiKou has left #openstack-dev | 20:54 | |
*** sandywalsh has quit IRC | 20:54 | |
*** antigluk_ has quit IRC | 20:54 | |
*** antigluk_ has joined #openstack-dev | 20:56 | |
*** dstanek has joined #openstack-dev | 21:01 | |
*** stevemar has quit IRC | 21:01 | |
*** zz_paulczar is now known as paulczar | 21:01 | |
*** Sumeniac has joined #openstack-dev | 21:01 | |
*** cagrev_ has quit IRC | 21:02 | |
*** cagrev__ has joined #openstack-dev | 21:02 | |
*** herndon has joined #openstack-dev | 21:02 | |
*** stevemar has joined #openstack-dev | 21:02 | |
*** csd has quit IRC | 21:02 | |
*** dbalog has quit IRC | 21:04 | |
*** stevemar has quit IRC | 21:04 | |
*** eharney has joined #openstack-dev | 21:05 | |
*** stevemar has joined #openstack-dev | 21:05 | |
*** hartsocks has quit IRC | 21:05 | |
*** hartsocks has joined #openstack-dev | 21:06 | |
*** cagrev__ has quit IRC | 21:06 | |
*** jamespage_ has quit IRC | 21:07 | |
*** antigluk_ has quit IRC | 21:07 | |
*** ayoung has quit IRC | 21:07 | |
*** Sumeniac has quit IRC | 21:07 | |
*** sandywalsh has joined #openstack-dev | 21:07 | |
*** antigluk_ has joined #openstack-dev | 21:08 | |
*** vipuls-away is now known as vipuls | 21:08 | |
*** MaxV has quit IRC | 21:09 | |
*** antigluk_ has quit IRC | 21:09 | |
*** buzztroll has quit IRC | 21:10 | |
*** buzztroll has joined #openstack-dev | 21:10 | |
*** antigluk_ has joined #openstack-dev | 21:11 | |
*** Sumeniac has joined #openstack-dev | 21:11 | |
*** fbo is now known as fbo_away | 21:12 | |
*** kenperkins has quit IRC | 21:14 | |
*** stevemar has quit IRC | 21:14 | |
*** epim has quit IRC | 21:15 | |
*** buzztroll has quit IRC | 21:15 | |
*** stevemar has joined #openstack-dev | 21:15 | |
*** epim has joined #openstack-dev | 21:15 | |
*** antigluk_ has quit IRC | 21:16 | |
*** jamielennox is now known as jamielennox|away | 21:17 | |
*** stevemar has quit IRC | 21:17 | |
*** antigluk_ has joined #openstack-dev | 21:17 | |
*** dbalog has joined #openstack-dev | 21:19 | |
*** antigluk_ has quit IRC | 21:19 | |
*** stevemar has joined #openstack-dev | 21:19 | |
*** e0ne has quit IRC | 21:20 | |
*** stevemar has quit IRC | 21:20 | |
*** gokrokve has quit IRC | 21:21 | |
*** antigluk_ has joined #openstack-dev | 21:21 | |
*** gokrokve has joined #openstack-dev | 21:22 | |
*** kenperkins has joined #openstack-dev | 21:22 | |
*** stevemar has joined #openstack-dev | 21:22 | |
*** rcj has quit IRC | 21:23 | |
*** stevemar has quit IRC | 21:23 | |
*** nkinder has joined #openstack-dev | 21:24 | |
*** antigluk_ has quit IRC | 21:24 | |
*** stevemar has joined #openstack-dev | 21:25 | |
*** antigluk_ has joined #openstack-dev | 21:26 | |
*** otherwiseguy has joined #openstack-dev | 21:26 | |
*** gokrokve has quit IRC | 21:26 | |
*** antigluk_ has quit IRC | 21:27 | |
*** sandywalsh has quit IRC | 21:27 | |
*** colinmcnamara has joined #openstack-dev | 21:27 | |
*** colinmcnamara has quit IRC | 21:27 | |
*** nmagnezi has joined #openstack-dev | 21:29 | |
*** stevemar has quit IRC | 21:29 | |
*** antigluk_ has joined #openstack-dev | 21:29 | |
*** joesavak has joined #openstack-dev | 21:29 | |
*** mdomsch has joined #openstack-dev | 21:29 | |
*** stevemar has joined #openstack-dev | 21:31 | |
*** antigluk_ has quit IRC | 21:32 | |
*** stevemar has quit IRC | 21:32 | |
*** jsavak has quit IRC | 21:32 | |
*** antigluk_ has joined #openstack-dev | 21:33 | |
*** jsavak has joined #openstack-dev | 21:33 | |
*** dkuffner has joined #openstack-dev | 21:33 | |
*** dvarga is now known as dvarga|away | 21:34 | |
*** dvarga|away is now known as dvarga | 21:34 | |
*** stevemar has joined #openstack-dev | 21:34 | |
*** antigluk_ has quit IRC | 21:34 | |
*** joesavak has quit IRC | 21:35 | |
*** dstanek has quit IRC | 21:35 | |
*** antigluk_ has joined #openstack-dev | 21:35 | |
*** belmoreira has quit IRC | 21:37 | |
*** nmagnezi has quit IRC | 21:37 | |
*** sgordon has quit IRC | 21:38 | |
*** stevemar has quit IRC | 21:38 | |
*** willingc has joined #openstack-dev | 21:40 | |
*** stevemar has joined #openstack-dev | 21:40 | |
*** antigluk_ has quit IRC | 21:40 | |
*** sandywalsh has joined #openstack-dev | 21:41 | |
*** antigluk_ has joined #openstack-dev | 21:42 | |
*** stevemar has quit IRC | 21:42 | |
morganfainberg | stevemar, when do you fly into SAT? next week? | 21:42 |
morganfainberg | of course... he logs out just as i ask a question | 21:43 |
*** topol has quit IRC | 21:43 | |
*** stevemar has joined #openstack-dev | 21:44 | |
*** thuc has quit IRC | 21:44 | |
*** antigluk_ has quit IRC | 21:44 | |
*** thomasem has quit IRC | 21:45 | |
*** thuc has joined #openstack-dev | 21:45 | |
*** pdevine has joined #openstack-dev | 21:45 | |
*** romcheg has quit IRC | 21:45 | |
*** csd has joined #openstack-dev | 21:46 | |
*** sc68cal has quit IRC | 21:46 | |
*** antigluk_ has joined #openstack-dev | 21:46 | |
*** romcheg has joined #openstack-dev | 21:46 | |
*** sc68cal has joined #openstack-dev | 21:47 | |
*** DennyZhang has joined #openstack-dev | 21:47 | |
paulczar | I made a srewup with a review and merged in some changes from head with my updates … is there a way to nuke out a specific patch set from gerrit ? | 21:47 |
*** antigluk_ has quit IRC | 21:47 | |
*** herndon has quit IRC | 21:48 | |
*** stevemar has quit IRC | 21:48 | |
*** antigluk_ has joined #openstack-dev | 21:49 | |
*** aeperezt has quit IRC | 21:49 | |
*** thuc has quit IRC | 21:49 | |
*** antigluk_ has quit IRC | 21:50 | |
*** sarob has quit IRC | 21:50 | |
*** FunnyLookinHat has quit IRC | 21:50 | |
*** dvarga has quit IRC | 21:50 | |
*** sarob has joined #openstack-dev | 21:51 | |
*** jdob has quit IRC | 21:52 | |
*** antigluk_ has joined #openstack-dev | 21:52 | |
*** DennyZhang has quit IRC | 21:53 | |
*** sarob_ has joined #openstack-dev | 21:53 | |
*** antigluk_ has quit IRC | 21:54 | |
*** david_lyle has joined #openstack-dev | 21:55 | |
*** sarob has quit IRC | 21:56 | |
*** FunnyLookinHat has joined #openstack-dev | 21:56 | |
*** FunnyLookinHat has quit IRC | 21:56 | |
*** FunnyLookinHat has joined #openstack-dev | 21:56 | |
*** nati_ueno has quit IRC | 21:56 | |
*** dklyle has joined #openstack-dev | 21:57 | |
*** gfidente has joined #openstack-dev | 21:57 | |
morganfainberg | paulczar, in waht way the whole review? or just a single item? | 21:57 |
morganfainberg | paulczar, if you just push a "new" fixed change over the top, the latest patchset in a review wins | 21:58 |
paulczar | morganfainberg: cool, that's what I was planning on doing … just didn't want to start pushing more bad review on top of bad reviews if that wasn't the right way to go | 21:58 |
morganfainberg | in some cases with drafts you can delete patchsets but... i don't remember the specific rules gerrit applies to that. | 21:58 |
morganfainberg | paulczar, we've all done it :) | 21:59 |
*** nati_ueno has joined #openstack-dev | 21:59 | |
*** david-lyle_ has quit IRC | 21:59 | |
*** otherwiseguy has quit IRC | 22:00 | |
morganfainberg | paulczar, it happens to the best of us. don't worry about it too much. heck i've accidently pushed a patchset i forgot to fix a merge conflict in a few times | 22:00 |
*** dklyle has quit IRC | 22:00 | |
morganfainberg | paulczar, yes, i was embarassed by that :P | 22:00 |
*** otherwiseguy has joined #openstack-dev | 22:00 | |
*** thuc has joined #openstack-dev | 22:00 | |
*** erkrnt has joined #openstack-dev | 22:00 | |
*** david_lyle has quit IRC | 22:01 | |
paulczar | morganfainberg: it's hard enough to distinguish my work from that of a cat running across a keyboard in the first place, so I try not to add silly mistakes to the mix :) | 22:02 |
morganfainberg | paulczar, hmm, maybe i should hire a cat then. my code might become clearer. :P | 22:03 |
*** nati_ueno has quit IRC | 22:03 | |
*** mfink has quit IRC | 22:04 | |
*** nati_ueno has joined #openstack-dev | 22:04 | |
*** erkrnt has quit IRC | 22:04 | |
*** erkrnt has joined #openstack-dev | 22:05 | |
*** browne has joined #openstack-dev | 22:05 | |
*** willingc has quit IRC | 22:06 | |
*** jmontemayor has quit IRC | 22:06 | |
*** dsirrine has quit IRC | 22:08 | |
*** markwash has quit IRC | 22:10 | |
*** pcm_ has quit IRC | 22:11 | |
*** dims has quit IRC | 22:12 | |
*** gfidente has quit IRC | 22:12 | |
*** jgrimm has quit IRC | 22:13 | |
*** rtheis has quit IRC | 22:13 | |
*** doug_shelley66 has quit IRC | 22:13 | |
*** CaptTofu has joined #openstack-dev | 22:14 | |
*** vartom111111117 has joined #openstack-dev | 22:14 | |
*** gokrokve has joined #openstack-dev | 22:14 | |
*** jbryce has joined #openstack-dev | 22:16 | |
*** mestery has quit IRC | 22:16 | |
*** vartom111111116 has quit IRC | 22:17 | |
*** alexpilotti has quit IRC | 22:17 | |
*** dims has joined #openstack-dev | 22:18 | |
*** mestery has joined #openstack-dev | 22:19 | |
*** dbalog has quit IRC | 22:23 | |
*** vladikr has quit IRC | 22:23 | |
*** UKn0Me has quit IRC | 22:23 | |
*** jprovazn has quit IRC | 22:24 | |
*** markwash has joined #openstack-dev | 22:24 | |
*** asalkeld has quit IRC | 22:25 | |
mriedem | got a sqlalchemy question if someone has any tips - trying to update each row in a table where column x's value is y, but i need to set the new value to something unique, | 22:25 |
mriedem | doing this in a db migration, so not sure if i need to use the model query stuff like in the nova db apis, or if i can do this with sql expression API | 22:26 |
mriedem | i.e. i don't think table.update().values(x=z).where(x=y) will work since z needs to be unique for each result of x | 22:26 |
*** radix_ has joined #openstack-dev | 22:27 | |
*** asalkeld has joined #openstack-dev | 22:27 | |
*** bswartz has quit IRC | 22:28 | |
*** hartsocks1 has joined #openstack-dev | 22:28 | |
*** flaper87 is now known as flaper87|afk | 22:30 | |
*** hartsocks has quit IRC | 22:30 | |
*** e0ne has joined #openstack-dev | 22:31 | |
*** dkuffner has quit IRC | 22:32 | |
*** ijw has joined #openstack-dev | 22:33 | |
*** aeperezt has joined #openstack-dev | 22:33 | |
*** kenperkins has quit IRC | 22:33 | |
*** markwash has quit IRC | 22:35 | |
*** rods2 has joined #openstack-dev | 22:35 | |
*** rods1 has quit IRC | 22:35 | |
*** mfer has quit IRC | 22:35 | |
*** jayg is now known as jayg|g0n3 | 22:35 | |
*** e0ne has quit IRC | 22:35 | |
*** dbalog has joined #openstack-dev | 22:36 | |
*** mriedem has quit IRC | 22:39 | |
*** jmckind has quit IRC | 22:40 | |
*** mfink has joined #openstack-dev | 22:40 | |
*** nelsnels_ has quit IRC | 22:41 | |
lifeless | fungi: any chance you can review 65414? solum folk feeling blocked by it | 22:45 |
*** rwsu has quit IRC | 22:45 | |
*** doug_shelley66 has joined #openstack-dev | 22:46 | |
*** thuc has quit IRC | 22:47 | |
*** thuc has joined #openstack-dev | 22:47 | |
*** mfink has quit IRC | 22:48 | |
*** rockyg has joined #openstack-dev | 22:49 | |
*** kgriffs is now known as kgriffs_afk | 22:49 | |
*** vartom111111117 has quit IRC | 22:49 | |
*** radez is now known as radez_g0n3 | 22:51 | |
*** morazi has quit IRC | 22:52 | |
*** neelashah has quit IRC | 22:54 | |
*** nati_ueno has quit IRC | 22:54 | |
*** markmcclain has quit IRC | 22:54 | |
nkinder | dolphm: have a minute to discuss https://bugs.launchpad.net/ossn/+bug/1254619 ? | 22:55 |
*** nati_ueno has joined #openstack-dev | 22:56 | |
*** nati_ueno has quit IRC | 22:57 | |
*** hartsocks1 has quit IRC | 22:57 | |
*** nati_ueno has joined #openstack-dev | 22:57 | |
*** jorisroovers has quit IRC | 22:57 | |
*** DennyZhang has joined #openstack-dev | 22:58 | |
*** achampion has quit IRC | 22:59 | |
*** thuc has quit IRC | 22:59 | |
*** burt has quit IRC | 22:59 | |
*** thuc has joined #openstack-dev | 22:59 | |
*** sarob_ has quit IRC | 23:01 | |
*** mdomsch has quit IRC | 23:01 | |
*** sarob has joined #openstack-dev | 23:01 | |
*** paulczar is now known as zz_paulczar | 23:02 | |
*** kbrierly has quit IRC | 23:02 | |
*** DennyZhang has quit IRC | 23:03 | |
*** thuc has quit IRC | 23:04 | |
*** willingc has joined #openstack-dev | 23:05 | |
*** sarob has quit IRC | 23:06 | |
*** tongli has quit IRC | 23:06 | |
*** vijendar has quit IRC | 23:07 | |
*** denis_makogon has quit IRC | 23:07 | |
fungi | lifeless: sure, bumping 65414 up in priority | 23:07 |
*** jecarey has quit IRC | 23:08 | |
*** mkollaro has quit IRC | 23:08 | |
*** jbryce has quit IRC | 23:10 | |
*** jamielennox|away is now known as jamielennox | 23:13 | |
*** mikeoutland has joined #openstack-dev | 23:14 | |
*** jsavak has quit IRC | 23:14 | |
*** yamahata has quit IRC | 23:14 | |
*** romcheg has quit IRC | 23:15 | |
*** rkukura has joined #openstack-dev | 23:15 | |
*** mkollaro has joined #openstack-dev | 23:15 | |
*** dstufft has quit IRC | 23:16 | |
*** dstufft has joined #openstack-dev | 23:17 | |
*** rcleere has quit IRC | 23:19 | |
*** kgriffs_afk is now known as kgriffs | 23:20 | |
*** jobewan has quit IRC | 23:20 | |
*** pablosan has quit IRC | 23:20 | |
*** lbragstad has quit IRC | 23:23 | |
*** pablosan has joined #openstack-dev | 23:23 | |
*** kgriffs is now known as kgriffs_afk | 23:29 | |
*** dkranz has quit IRC | 23:33 | |
*** morazi has joined #openstack-dev | 23:34 | |
*** alexpilotti has joined #openstack-dev | 23:35 | |
*** sballe has quit IRC | 23:36 | |
*** kenperkins has joined #openstack-dev | 23:36 | |
*** prad has quit IRC | 23:36 | |
*** zzelle has quit IRC | 23:36 | |
*** sballe has joined #openstack-dev | 23:36 | |
*** READ10 has quit IRC | 23:38 | |
*** jnoller has quit IRC | 23:38 | |
*** romcheg has joined #openstack-dev | 23:40 | |
*** romcheg has quit IRC | 23:40 | |
*** markwash has joined #openstack-dev | 23:43 | |
*** CaptTofu has quit IRC | 23:43 | |
*** tkay has joined #openstack-dev | 23:43 | |
sdague | harlowja: how is the taskflow release coming? | 23:44 |
harlowja | sdague ok, just a few reviews that need to get approve, hopefully by tommoro | 23:44 |
sdague | ok | 23:45 |
*** CaptTofu has joined #openstack-dev | 23:45 | |
sdague | please let me know when it gets to the pip mirrors so I can recheck that review and see what else is broken | 23:45 |
harlowja | np | 23:45 |
harlowja | will do | 23:46 |
*** galstrom is now known as galstrom_zzz | 23:46 | |
*** antigluk_ has joined #openstack-dev | 23:49 | |
*** epim has quit IRC | 23:50 | |
*** antigluk_ has quit IRC | 23:51 | |
*** epim has joined #openstack-dev | 23:53 | |
*** antigluk_ has joined #openstack-dev | 23:53 | |
*** thuc has joined #openstack-dev | 23:54 | |
*** epim has quit IRC | 23:54 | |
*** antigluk_ has quit IRC | 23:54 | |
*** antigluk_ has joined #openstack-dev | 23:56 | |
*** vipuls is now known as vipuls-away | 23:56 | |
*** jasondotstar has quit IRC | 23:56 | |
bknudson | is it too late to move kds from keystone to its own repository? | 23:57 |
morganfainberg | bknudson, likely for Icehouse | 23:58 |
*** vipuls-away is now known as vipuls | 23:58 | |
*** antigluk_ has quit IRC | 23:58 | |
bknudson | "tox -r -e py27" is giving me an error -- Could not find any downloads that satisfy the requirement netifaces>=0.5 | 23:58 |
morganfainberg | bknudson, doesn't mean it hurts to ask | 23:58 |
bknudson | morganfainberg: have you seen that one? | 23:59 |
*** peristeri has quit IRC | 23:59 | |
morganfainberg | bknudson, no. | 23:59 |
morganfainberg | checkout of a specific review? | 23:59 |
*** antigluk_ has joined #openstack-dev | 23:59 | |
morganfainberg | or current head? | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!