Saturday, 2015-02-07

*** ayoung has quit IRC00:00
*** hichtakk has joined #openstack-keystone00:00
*** hichtakk has quit IRC00:01
*** henrynash has quit IRC00:02
*** aix has quit IRC00:02
gyeemorganfainberg, does this sound familiar? https://bugs.launchpad.net/keystone/+bug/117210600:06
openstackLaunchpad bug 1172106 in Keystone icehouse "Live LDAP tests fail on unicode names" [Medium,Fix released] - Assigned to John Dennis (jdennis-a)00:06
morganfainbergyep00:07
morganfainbergthat was what i was looking for00:07
morganfainbergand that should be juno then00:07
morganfainbergwonder if we hit a new version of that bug now00:07
gyeeyeah, looks like the LDAP ID to public ID code didn't do the encoding or something00:08
morganfainbergdoh00:08
*** ljfisher_ has joined #openstack-keystone00:09
*** ljfisher has quit IRC00:09
*** ljfisher_ is now known as ljfisher00:09
morganfainberggyee, yep00:09
morganfainberggenerate_public id00:09
morganfainbergcrap.00:09
morganfainberggyee, ok we need to apply that same type of fix00:09
morganfainbergkfox1111, thanks for the bug report! :)00:10
gyeeprobably, though I have had a chance to dive into the code yet00:10
kfox1111np. thanks for looking. :)00:10
gyeeI mean I haven't00:10
morganfainberggyee, right.00:10
morganfainbergbut i'm seeing it00:10
morganfainbergkeystone.common.wsgi public_id = self.id_generator_api.generate_public_ID(entity)00:10
morganfainbergright there00:10
gyeeyikes00:10
morganfainbergkeystone.common.wsgi File "/usr/lib/python2.7/site-packages/keystone/identity/id_generators/sha256.py", line 27, in generate_public_ID00:10
morganfainberg... new critical bug of the day00:11
gyeecoffee time00:12
* gyee is getting a headache00:12
kfox1111ok. I managed to get it to exclude ldap entries that fail to ascii encode for now, I think.00:13
morganfainbergok classified the bug and marked as critical00:14
morganfainbergkfox1111, good find. i think i know what needs to be done now00:14
morganfainbergand we'll backport any fix to juno as well00:14
morganfainbergso RDO should pick it up reasonably fast [they're good about it]00:14
*** hichtakk has joined #openstack-keystone00:15
kfox1111wow... well, that will test scalability.... 20948 in id mappings.00:16
*** david-lyle is now known as david-lyle_afk00:16
kfox1111morganfainberg: that would be great. thanks. :)00:16
*** hichtakk has quit IRC00:16
morganfainbergthe mappings table is typically pretty robust00:17
kfox1111oh....00:17
kfox1111because machines are part of this user query. :/00:17
morganfainberg20k rows w/ a good index isn't bad.00:18
morganfainbergbut we wouldn't populate them until the user is actually trying to use the system00:18
morganfainbergooooor in the case of a list like you did00:18
kfox1111yeah. :)00:18
kfox1111just user list timing kind of sucks,00:18
kfox1111and will probably hurt anyone trying to do it in browser. :)00:19
morganfainbergthere is an addon bit for keystone-manage that would let you flush users/groups that don't have assignments00:19
morganfainbergi kindof want user-list to die.00:19
morganfainbergit's an awful question to ask especially when you factor in "federated identity"00:19
morganfainbergor an idp with 400k users in it00:19
kfox1111I'd be happy with user-search00:20
kfox1111user-get is kind of broken though. it shouldn't try and  do a whole list query to get the one item.00:20
morganfainberguser-get is broken because of how people use it.00:21
morganfainbergit's an issue with asking for a named object that is not unique00:21
morganfainbergnor indexed00:21
kfox1111hrm?00:21
kfox1111how should I be asking for the user id for a user then?00:22
kfox1111time keystone user-get kfox00:22
kfox11111 min 20 seconds.00:22
morganfainbergthat is the issue00:22
morganfainbergyou're asking for a non-indexed/searchable value00:22
morganfainbergit's a gap in the API00:22
kfox1111yeah.00:22
morganfainbergfrom LDAP in a non-read/write configuration, the ID is programatically generatable00:23
morganfainbergwith the right information00:23
morganfainbergso you can infer that info00:23
morganfainbergbut saying "hey give me user X" when all LDAP knows is user_ids00:23
morganfainbergmeans we have to do bad searching00:23
morganfainbergagain, with federated identity, it's the wrong question to be asking in most any case00:23
morganfainbergso it's only a partial gap.00:24
kfox1111but.. you have all the info you need to login as use "kfox" without doing a huge lookup, right?00:24
kfox1111can't you do the same to lookup the specific entry?00:24
morganfainbergif you login with domain / username you don't have to lookup00:24
morganfainbergwell lookup in the same way00:24
morganfainbergthere is still some bad lookup that has to happen00:24
kfox1111but shouldn't user-get be able to make the same optimizations?00:24
morganfainbergnot w/o a new REST API00:25
morganfainbergkeystoneclient "user-get" with a name is really a "list and then filter by name"00:25
morganfainbergit's not something we could fix in Juno00:25
kfox1111yeah. just wondering why it has to be implemented that way.00:25
kfox1111or is it just that it was easy, and no one has ever fixed it?00:25
morganfainbergwe could fix it in kilo, and keystoneclient would need to know how to ask the right questions between versions00:25
kfox1111ah. ok.00:26
morganfainbergit's fixable00:26
morganfainbergjust not "easy" to fix00:26
morganfainbergtouches a number of things00:26
morganfainbergannnnnnd00:26
kfox1111ooh... you mean the keystone client is just doing a list, then its filtering itself?00:26
morganfainbergyep.00:26
kfox1111OHHH... gotcha.00:26
morganfainbergand the rest api does the same bad logic right now00:26
kfox1111thats even worse. :)00:26
kfox1111but I understand why it probably grew that way.00:26
morganfainbergwell rest api doesn't have a "get by usenrame"00:27
morganfainbergrest api has a "get by id"00:27
morganfainbergthe issue is user_list in the rest api with filtering does the same awful stuff00:27
kfox1111heh. and that leads to some interesting case sensitive stuff...00:27
morganfainbergthere is also an open bug on that00:27
kfox1111I can login as svc-irc,00:27
morganfainbergLDAP is not-case sensitive in most implementations00:27
kfox1111but in ldap its Svc-IRC so user-get doesnt' work with svc-irc.00:27
kfox1111yeah....00:28
morganfainbergbut it is case-preserving00:28
kfox1111fun.00:28
morganfainbergyep.00:28
morganfainbergldap has a bunch of edge cases00:28
*** nellysmitt has joined #openstack-keystone00:28
morganfainberglongterm the hope is to move to something like SSSD to handle the LDAP -> user awfulness00:28
morganfainbergrathert than needing to carry a lot of this code everywhere00:28
morganfainbergbut that is a big project not for today00:28
*** markvoelker has quit IRC00:29
kfox1111that may be good or bad...00:29
kfox1111I'm not sure you can bind sssd to multiple domains?00:29
morganfainbergSSSD has solved a bunch of these issues.00:29
morganfainbergit's all doable, just work00:29
kfox1111so if you wanted multiple domains each with a different ldap, would that work?00:29
morganfainbergiirc yes00:29
kfox1111ah. cool.00:29
morganfainbergbut it's work to get there.00:29
morganfainbergi *think* i set that up at one point00:29
morganfainbergbut it's been a while00:29
*** tellesnobrega_ has quit IRC00:30
*** nellysmitt has quit IRC00:33
kfox1111hmmm.... its taking a long time to login as my domain user...00:34
kfox1111over a minute...00:36
kfox1111and still going...00:36
kfox1111is it trying to reimport all the entries again?00:36
kfox1111there we go....00:36
kfox1111that was a long time...00:37
*** r-daneel has quit IRC00:54
*** markvoelker has joined #openstack-keystone01:00
*** jorge_munoz has quit IRC01:04
*** markvoelker has quit IRC01:07
*** mtreinish has quit IRC01:08
*** _cjones_ has quit IRC01:09
*** mtreinish has joined #openstack-keystone01:12
kfox1111what was that command to prune unused mappings? I just put in a user filter to see if I can filter out the machine accounts. :/01:13
*** ljfisher has quit IRC01:16
*** zzzeek has quit IRC01:17
*** jacer_huawei has joined #openstack-keystone01:19
*** jacer_huawei is now known as wanghong01:19
*** zzzeek has joined #openstack-keystone01:22
*** abhirc has joined #openstack-keystone01:24
*** tqtran has quit IRC01:32
*** gothicmindfood has quit IRC01:34
*** dimsum__ has quit IRC01:34
kfox1111hmm... how about this one....01:35
kfox1111 I set multiple domain drivers.01:35
kfox1111default ldap.01:36
kfox1111created an admin domain, set in its config:01:36
kfox1111driver=keystone.identity.backends.sql.Identity01:36
kfox1111but its complaining about multiple uses of ldap.01:37
kfox11112015-02-06 17:38:01.611 31670 WARNING keystone.identity.core [-] Found multiple domains being mapped to a driver that does not support that (e.g. LDAP) - Domain ID: f7f3512cff1540418eb9b4078ed0d399, Default Driver: True01:38
morganfainbergkfox1111, do you have multiple domains w/o specific configs?01:39
morganfainbergLDAP can only support a single domain01:39
morganfainbergso for example if you have "admin", "other domain", and "default"01:39
morganfainbergand admin is set to SQL but "other domain" is not, you'd run into issues01:39
kfox1111hmm.. oh. there's probably a heat one too...01:39
morganfainbergand right now iirc you can only have "default" (which means all w/o configs) mapped to SQL if you want more than 1 domain in SQL01:40
morganfainbergotherwise only the specific domain mapped for SQL (e.g. "admin") can have the SQL driver01:41
*** leseb- has quit IRC01:41
kfox1111heh. this might sound odd, but can you set the default to sql, then override default for default to ldap? :)01:41
morganfainbergyou should be able to do it that way01:41
kfox1111awesome. then it wouldnt break when just adding another domain.01:42
*** lhcheng has quit IRC01:42
morganfainbergjust can't configure more than one specific domain for sql w/ the per-domain config01:42
kfox1111The Keystone domain configuration file ['/etc/keystone/domains/keystone.heat.conf'] defines an additional SQL driver - only one is permitted.01:42
morganfainbergyep01:42
kfox1111arg....01:42
morganfainbergexactly01:42
kfox1111so, you can support exactly two domains? one with ldap, and one with sql?01:42
morganfainbergyou can have as many ldap definitions in per-domain configs01:43
morganfainbergthe issue is you've set the global default to use LDAP01:43
kfox1111ah. so if I do the default thing I just asked about it would work?01:43
morganfainbergyeah01:43
morganfainbergthat *should* afaik01:43
kfox1111k. thx. :)01:43
kfox1111lets try... :)01:43
morganfainbergsince then you're just overriding the "Default" domain01:43
morganfainbergnot the global "where do i stick things w/o a specific config"01:44
*** zzzeek has quit IRC01:53
*** ljfisher has joined #openstack-keystone01:58
openstackgerritwanghong proposed openstack/keystone: use tokens returned by delete_tokens to invalidate cache  https://review.openstack.org/15350102:00
*** markvoelker has joined #openstack-keystone02:02
*** markvoelker has quit IRC02:07
kfox1111?02:07
kfox1111group add user b7fc2f136d2842659482389675bcfb06 90ece9f251f9956738a973970812a66543805fa1ec3adc7dedf8b34ea0ae9c7d02:07
kfox111190ece9f251f9956738a973970812a66543805fa1ec3adc7dedf8b34ea0ae9c7d not added to group b7fc2f136d2842659482389675bcfb0602:08
*** erkules_ has joined #openstack-keystone02:08
kfox1111oh....02:09
kfox1111"Group membership across backend boundaries is not allowed"02:09
kfox1111unfortunate.02:09
kfox1111Can someone please provide an ER diagram for domain/role/user/group/project? I've been trying to figure it all out for a week, and I'm still finding things that surprise me.02:11
*** erkules has quit IRC02:11
*** rwsu is now known as rwsu-afk02:11
*** lnxnut has joined #openstack-keystone02:18
*** ljfisher has quit IRC02:19
*** tellesnobrega_ has joined #openstack-keystone02:19
*** gyee has quit IRC02:21
*** dimsum__ has joined #openstack-keystone02:24
*** nellysmitt has joined #openstack-keystone02:29
*** spandhe has quit IRC02:33
*** nellysmitt has quit IRC02:34
*** kfox1111 has quit IRC02:34
*** harlowja has quit IRC02:35
*** davechen_ has joined #openstack-keystone02:36
*** lnxnut has quit IRC02:38
*** DaveChen has quit IRC02:38
openstackgerritMerged openstack/keystone-specs: Address style and formatting comments from 153114  https://review.openstack.org/15348802:52
*** hichtakk has joined #openstack-keystone02:52
*** hichtakk has quit IRC02:53
*** abhirc has quit IRC02:54
openstackgerritMerged openstack/keystone-specs: Removes confusing functional test tox example  https://review.openstack.org/15336602:55
*** markvoelker has joined #openstack-keystone03:03
*** markvoelker has quit IRC03:08
*** lhcheng has joined #openstack-keystone03:28
*** dimsum__ has quit IRC03:32
*** dimsum__ has joined #openstack-keystone03:32
*** dobson has joined #openstack-keystone03:40
*** dobson has quit IRC03:47
*** dobson has joined #openstack-keystone03:51
*** dobson has quit IRC03:56
*** markvoelker has joined #openstack-keystone04:04
*** markvoelker has quit IRC04:09
*** lnxnut has joined #openstack-keystone04:10
*** _cjones_ has joined #openstack-keystone04:10
*** davechen__ has joined #openstack-keystone04:12
*** davechen_ has quit IRC04:15
*** _cjones_ has quit IRC04:15
*** zzzeek has joined #openstack-keystone04:17
*** dimsum__ has quit IRC04:18
*** tellesnobrega_ has quit IRC04:27
*** dobson has joined #openstack-keystone04:30
*** stevemar has joined #openstack-keystone04:30
*** ChanServ sets mode: +v stevemar04:30
*** nellysmitt has joined #openstack-keystone04:30
*** nellysmitt has quit IRC04:35
*** zzzeek has quit IRC04:44
*** markvoelker has joined #openstack-keystone05:05
*** markvoelker has quit IRC05:10
*** lnxnut has quit IRC05:19
*** lnxnut has joined #openstack-keystone05:19
*** lnxnut has quit IRC05:24
*** richm has quit IRC05:38
*** zzzeek has joined #openstack-keystone05:40
*** zzzeek has quit IRC05:43
*** lnxnut has joined #openstack-keystone05:50
openstackgerritOpenStack Proposal Bot proposed openstack/keystone: Imported Translations from Transifex  https://review.openstack.org/15376706:03
*** spandhe has joined #openstack-keystone06:04
*** markvoelker has joined #openstack-keystone06:07
*** markvoelker has quit IRC06:12
*** ajayaa has joined #openstack-keystone06:16
*** MasterPiece has joined #openstack-keystone06:17
*** nellysmitt has joined #openstack-keystone06:26
*** ajayaa has quit IRC06:36
*** lnxnut has quit IRC06:51
*** markvoelker has joined #openstack-keystone07:08
*** markvoelker has quit IRC07:13
*** stevemar has quit IRC07:37
*** lnxnut has joined #openstack-keystone07:47
*** ajayaa has joined #openstack-keystone07:51
*** lnxnut has quit IRC07:52
openstackgerritMerged openstack/keystone: Imported Translations from Transifex  https://review.openstack.org/15376708:01
openstackgerritMerged openstack/keystonemiddleware: Switch from oslo.utils to oslo_utils  https://review.openstack.org/14596208:07
openstackgerritMerged openstack/keystonemiddleware: Switch from oslo.serialization to oslo_serialization  https://review.openstack.org/14810308:07
*** markvoelker has joined #openstack-keystone08:09
openstackgerritMerged openstack/keystonemiddleware: Switch from oslo.config to oslo_config  https://review.openstack.org/14810408:10
openstackgerritMerged openstack/keystonemiddleware: Enforce check F821 and H304  https://review.openstack.org/14635608:10
openstackgerritMerged openstack/keystonemiddleware: Add python-memcached to test-requirements  https://review.openstack.org/14633208:10
*** aix has joined #openstack-keystone08:14
*** markvoelker has quit IRC08:14
*** nkinder has joined #openstack-keystone08:15
*** lhcheng has quit IRC08:34
*** nkinder has quit IRC08:38
*** henrynash has joined #openstack-keystone09:00
*** ChanServ sets mode: +v henrynash09:00
*** rhbear has joined #openstack-keystone09:03
*** henrynash has quit IRC09:05
*** spandhe has quit IRC09:09
*** afeakas|oyua has quit IRC09:09
*** rhbear has quit IRC09:09
*** markvoelker has joined #openstack-keystone09:10
*** spandhe has joined #openstack-keystone09:13
*** ajayaa has quit IRC09:13
*** markvoelker has quit IRC09:15
*** nkinder has joined #openstack-keystone09:15
*** spandhe has quit IRC09:18
*** zz_avozza is now known as avozza09:25
*** nkinder has quit IRC09:31
*** andreaf has joined #openstack-keystone09:43
*** henrynash has joined #openstack-keystone09:46
*** ChanServ sets mode: +v henrynash09:46
*** avozza is now known as zz_avozza09:48
*** zz_avozza is now known as avozza09:54
*** henrynash has quit IRC10:00
*** markvoelker has joined #openstack-keystone10:11
*** nellysmitt has quit IRC10:13
*** markvoelker has quit IRC10:15
*** avozza is now known as zz_avozza10:28
*** zz_avozza is now known as avozza10:28
*** nkinder has joined #openstack-keystone10:32
*** avozza is now known as zz_avozza10:36
*** zz_avozza is now known as avozza10:36
*** avozza is now known as zz_avozza10:49
*** nkinder has quit IRC11:05
*** MasterPiece has quit IRC11:12
*** markvoelker has joined #openstack-keystone11:12
*** MasterPiece has joined #openstack-keystone11:15
*** markvoelker has quit IRC11:16
*** nkinder has joined #openstack-keystone11:17
openstackgerritDave Chen proposed openstack/keystone: Add new "RoleAssignment" exception  https://review.openstack.org/13362811:21
*** nkinder has quit IRC11:42
*** tellesnobrega_ has joined #openstack-keystone11:52
*** markvoelker has joined #openstack-keystone12:13
*** nellysmitt has joined #openstack-keystone12:13
*** rdo has quit IRC12:18
*** nellysmitt has quit IRC12:18
*** markvoelker has quit IRC12:18
*** rdo has joined #openstack-keystone12:19
*** dimsum__ has joined #openstack-keystone12:33
*** atiwari1 has quit IRC12:38
*** dimsum__ has quit IRC12:42
*** dimsum__ has joined #openstack-keystone12:43
*** dimsum__ has quit IRC12:43
*** dimsum__ has joined #openstack-keystone12:50
*** atiwari has joined #openstack-keystone12:55
*** lnxnut has joined #openstack-keystone13:03
*** lnxnut has quit IRC13:08
*** dimsum__ has quit IRC13:09
*** dimsum__ has joined #openstack-keystone13:12
*** richm has joined #openstack-keystone13:13
*** markvoelker has joined #openstack-keystone13:14
*** dimsum__ has quit IRC13:16
*** MasterPiece has quit IRC13:18
*** markvoelker has quit IRC13:19
*** lnxnut has joined #openstack-keystone14:04
*** lnxnut has quit IRC14:08
*** nellysmitt has joined #openstack-keystone14:14
*** markvoelker has joined #openstack-keystone14:15
*** nellysmitt has quit IRC14:19
*** markvoelker has quit IRC14:20
*** dimsum__ has joined #openstack-keystone14:21
*** dimsum__ has quit IRC14:25
*** pnavarro has joined #openstack-keystone14:29
*** dimsum__ has joined #openstack-keystone14:34
*** dimsum__ has quit IRC14:38
*** tellesnobrega_ has quit IRC14:45
*** rwsu-afk has quit IRC14:45
*** BAKfr has quit IRC14:45
*** xu_alex has quit IRC14:45
*** ccard has quit IRC14:45
*** haneef_ has quit IRC14:45
*** sluo_wfh has quit IRC14:45
*** svasheka has quit IRC14:45
*** anteaya has quit IRC14:45
*** jjulien has quit IRC14:45
*** kragniz has quit IRC14:45
*** telemonster has quit IRC14:45
*** xianghui has quit IRC14:45
*** kragniz has joined #openstack-keystone14:45
*** telemonster has joined #openstack-keystone14:45
*** jjulien has joined #openstack-keystone14:45
*** xianghui has joined #openstack-keystone14:45
*** rwsu-afk has joined #openstack-keystone14:45
*** haneef_ has joined #openstack-keystone14:45
*** tellesnobrega_ has joined #openstack-keystone14:45
*** svasheka has joined #openstack-keystone14:45
*** ccard has joined #openstack-keystone14:46
*** anteaya has joined #openstack-keystone14:46
*** xu_alex has joined #openstack-keystone14:49
*** sluo_wfh has joined #openstack-keystone14:49
*** BAKfr has joined #openstack-keystone14:49
*** lnxnut has joined #openstack-keystone15:05
*** nkinder has joined #openstack-keystone15:07
*** lnxnut has quit IRC15:09
*** zzzeek has joined #openstack-keystone15:13
*** markvoelker has joined #openstack-keystone15:16
*** markvoelker has quit IRC15:21
*** josecastroleon has joined #openstack-keystone15:30
openstackgerritAlistair Coles proposed openstack/keystonemiddleware: Delay denial when service token is invalid  https://review.openstack.org/15324715:37
*** dimsum__ has joined #openstack-keystone15:39
*** josecastroleon has quit IRC15:39
*** dobson has quit IRC15:41
*** dimsum__ has quit IRC15:44
*** dobson has joined #openstack-keystone15:45
*** dobson has quit IRC15:50
*** zzzeek has quit IRC15:58
*** dobson has joined #openstack-keystone16:01
*** pnavarro has quit IRC16:08
*** nellysmitt has joined #openstack-keystone16:15
*** markvoelker has joined #openstack-keystone16:18
*** nkinder has quit IRC16:19
*** nellysmitt has quit IRC16:20
*** markvoelker has quit IRC16:22
*** lnxnut has joined #openstack-keystone16:36
*** lnxnut has quit IRC16:40
*** lnxnut has joined #openstack-keystone16:49
*** dims_ has joined #openstack-keystone16:51
*** dims_ has quit IRC16:53
*** dims_ has joined #openstack-keystone16:53
*** lnxnut has quit IRC16:54
*** lnxnut has joined #openstack-keystone16:54
openstackgerritArvind Tiwari proposed openstack/keystone-specs: HMAC signature based token  https://review.openstack.org/15380316:58
*** dimsum__ has joined #openstack-keystone17:01
*** dims_ has quit IRC17:03
*** dimsum__ has quit IRC17:07
*** dimsum__ has joined #openstack-keystone17:07
*** dims_ has joined #openstack-keystone17:12
*** stevemar has joined #openstack-keystone17:12
*** ChanServ sets mode: +v stevemar17:12
*** nellysmitt has joined #openstack-keystone17:13
*** dimsum__ has quit IRC17:14
*** markvoelker has joined #openstack-keystone17:19
*** markvoelker has quit IRC17:23
*** dimsum__ has joined #openstack-keystone17:24
*** dims_ has quit IRC17:25
*** zz_avozza is now known as avozza17:29
*** dimsum__ has quit IRC17:29
*** nellysmitt has quit IRC17:33
*** avozza is now known as zz_avozza17:43
*** lnxnut has quit IRC17:46
*** lnxnut has joined #openstack-keystone17:46
*** nellysmitt has joined #openstack-keystone17:47
*** lnxnut has quit IRC17:50
*** atiwari has quit IRC17:51
*** henrynash has joined #openstack-keystone17:56
*** ChanServ sets mode: +v henrynash17:56
*** kfox1111 has joined #openstack-keystone18:04
*** zzzeek has joined #openstack-keystone18:08
*** stevemar has quit IRC18:09
*** zz_avozza is now known as avozza18:10
*** EmilienM has quit IRC18:19
*** markvoelker has joined #openstack-keystone18:20
*** EmilienM has joined #openstack-keystone18:20
*** avozza is now known as zz_avozza18:20
*** zz_avozza is now known as avozza18:20
*** markvoelker has quit IRC18:25
*** chlong has quit IRC18:26
*** tellesnobrega__ has joined #openstack-keystone18:33
*** tellesnobrega_ has quit IRC18:33
*** avozza is now known as zz_avozza18:38
*** rwsu-afk has quit IRC18:43
*** jell has quit IRC18:46
*** dimsum__ has joined #openstack-keystone18:53
*** markvoelker has joined #openstack-keystone18:54
*** stevemar has joined #openstack-keystone19:50
*** ChanServ sets mode: +v stevemar19:50
openstackgerritSteve Martinelli proposed openstack/keystone: WIP - make federation part of keystone core  https://review.openstack.org/15381519:58
openstackgerritSteve Martinelli proposed openstack/keystone: WIP - make federation part of keystone core  https://review.openstack.org/15381519:58
*** nellysmitt has quit IRC20:13
*** rm_work is now known as rm_work|away20:14
*** esp has left #openstack-keystone20:27
*** lnxnut has joined #openstack-keystone20:32
*** zzzeek has quit IRC20:43
*** nkinder has joined #openstack-keystone20:54
*** markvoelker has quit IRC20:56
*** markvoelker has joined #openstack-keystone20:56
*** markvoelker has quit IRC21:01
*** lnxnut has quit IRC21:12
*** ctina has joined #openstack-keystone21:15
*** stevemar has quit IRC21:28
*** erkules_ is now known as erkules21:28
*** nkinder has quit IRC21:28
*** dimsum__ has quit IRC21:45
*** topol has joined #openstack-keystone21:47
*** ChanServ sets mode: +v topol21:47
*** andreaf has quit IRC21:47
*** andreaf has joined #openstack-keystone21:50
*** markvoelker has joined #openstack-keystone21:55
*** zzzeek has joined #openstack-keystone21:57
*** markvoelker has quit IRC22:00
*** zz_avozza is now known as avozza22:00
*** ChanServ has quit IRC22:02
*** ChanServ has joined #openstack-keystone22:04
*** sendak.freenode.net sets mode: +o ChanServ22:04
*** zzzeek has quit IRC22:05
*** nellysmitt has joined #openstack-keystone22:14
*** tellesnobrega__ has quit IRC22:14
*** tellesnobrega_ has joined #openstack-keystone22:17
*** nellysmitt has quit IRC22:18
*** tellesnobrega_ has quit IRC22:27
*** wanghong has quit IRC22:29
*** jacer_huawei has joined #openstack-keystone22:31
*** jacer_huawei has quit IRC22:35
*** topol has quit IRC22:35
*** jacer_huawei has joined #openstack-keystone22:36
*** openstack has joined #openstack-keystone22:51
*** dobson has joined #openstack-keystone22:51
*** markvoelker has joined #openstack-keystone22:56
*** markvoelker has quit IRC23:01
*** amerine_ has quit IRC23:29
*** markvoelker has joined #openstack-keystone23:57

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