Tuesday, 2014-08-26

morganfainberggyee, there is a difference between shoving crap into structured data and extending a structured data model00:00
gyeehahaha00:00
morganfainberggyee, everyting v2 at this point is pretty much the former00:00
* jamielennox just discovered that my mail client is not syncing the openstack-dev folder thought it had been quiet00:00
morganfainbergjamielennox, v00:00
morganfainbergjamielennox, https://www.surveymonkey.com/results/SM-LX589JF8/00:00
gyeewell, we shove trust in v200:00
morganfainberggyee, we also blindly shove the entire metadata into it00:00
gyeeand issue_data00:00
morganfainbergamong a whole lot of other things that is just "oh whatever you pass to us"00:00
* gyee eschew metadata00:01
morganfainbergi'm not opposed to a custom field model that can be used to extend that data00:01
morganfainbergi am opposed to "here put everything into that token ... and this... and this... and this"00:01
openstackgerritA change was merged to openstack/keystonemiddleware: Remove intersphinx mappings  https://review.openstack.org/11248000:01
jamielennoxmorganfainberg: 11% custom provider :O00:02
morganfainberggyee, maybe the right answer is "issue_token" calls "get_base_token_data", "get_custom_structured_data", "format_token", "create_token_id", return data00:02
morganfainberggyee, the two that go on the driver are "get_custom_structured_data and create_token_id00:03
gyeemorganfainberg, ++00:03
gyeewe need to provide hooks for extensions00:03
gyeewe need it for federation anyway00:04
morganfainberganything that is custom structured data would be <ID>:<VALUE> and go in something like 'OS-EXTENDED-DATA:id':<value>00:04
morganfainberggyee, the in-tree keystone things can have special case code and labels (OS-TRUST, OS-FEDERATED, etc)00:04
gyeemorganfainberg, works for me, bring some sanity to customization00:04
*** bknudson has joined #openstack-keystone00:04
morganfainbergdarn it, bknudson missed the convo :(00:05
bknudson??00:05
gyeemorganfainberg, on a different topic, after running tox, etc/keystone.conf.sample got modified00:05
morganfainbergbknudson, refactoring issue tokens and validate token to be 100% on the manager, so the workflow wouild be00:05
gyeeis it my env or this is a bug00:05
bknudsonit makes sense to have everything in the manager00:06
*** dims has quit IRC00:06
gyeeall I did was 1) git clone keystone and 2) tox00:06
morganfainbergbknudson, issue_token gets basic token data, gets driver customized data (e.g. HP has custom data in the tokens), formats the token V2/V3/VXX, and then does create_id(token_data)00:06
gyeefreaking keystone.conf.sample got changed while running tox00:06
gyeew00:06
gyeet00:06
gyeef?00:06
*** dims has joined #openstack-keystone00:06
morganfainberggyee, tox runs *all* environments, py26, 27, 33, sample_config00:06
gyeemorganfainberg, the default option00:07
morganfainberggyee, so.. you ran the sample_config generator by running bare "tox" instead of tox -e<environment>00:07
bknudsonmorganfainberg: is it needed for juno?00:07
morganfainbergbknudson, it'd be needed for non-persistent tokens00:07
morganfainbergbknudson, which at this point i don't think can land 100% in junoi00:07
openstackgerritA change was merged to openstack/keystonemiddleware: Add a test for re-caching a token  https://review.openstack.org/11484800:07
morganfainbergbknudson, v2 tokens are so wild-west i can't make CMS extracted code work cleanly, there is a lot of assumption that we've looked up the metadata_ref etc in the current provider code00:08
morganfainbergbknudson, and a lot of "we'll just throw whatever data you want into the tokens,pass it on in"00:08
bknudsonI can't figure out that code anymore.00:08
gyeertfc00:08
morganfainbergbknudson, i got ~50% through moving to cms extracting the pki tokens and ran into "oh except for all these edge cases in v2 tokens because we didn't specify the token format"00:09
morganfainbergbknudson, i figure i can keep *most* of that functionality but define what we've got going into the tokens at least somewhat reasonably so we can do a cms decode and know what to expect00:10
morganfainbergbknudson, and make it clear what the data is not just blobs of "oh we got some dict we'll just leave that lying around"00:10
*** dims has quit IRC00:11
morganfainbergmost of these issues are keystone internals only not really issues with what auth_token sees00:11
*** stevemar has joined #openstack-keystone00:14
bknudsonmorganfainberg: what does auth_token have to do with it?00:15
morganfainbergbknudson, nothing, just auth-token already relies on cms and does the right thing™, so the issues i'm running into isn't middleware related was all i was pointing out00:15
bknudsonthere's a lot of functions that are like v2_token v3_token and you don't know whether that's the input version or the response version?00:15
bknudsonit's wacky00:15
jamielennoxbknudson:  https://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/auth/identity/v2.py#L116 causes problems with keystonemiddleware tests00:16
bknudsonwe'd have to have a really canonical way to convert a v3 to a v2 token00:16
*** HenryG_ is now known as HenryG00:16
jamielennoxthey setup a password plugin with no parameters and expect the stubbing to work00:16
jamielennoxtechnically a breakage but is it better to just fix auth_token?00:17
bknudsonotherwise I think we'd wind up with a change that's not backwards compat00:17
bknudsonjamielennox: where's the middleware test?00:17
bknudsonand how did you find out it broke keystonemiddleware?00:18
bknudsonwouldn't the original code break keystonemiddleware too?00:18
openstackgerritA change was merged to openstack/python-keystoneclient: Hash for PKIZ  https://review.openstack.org/11465400:18
jamielennoxbknudson: all of them https://github.com/openstack/keystonemiddleware/blob/master/keystonemiddleware/tests/test_auth_token_middleware.py#L22400:18
*** praneshp has quit IRC00:19
jamielennoxeasily fixed with http://paste.openstack.org/show/100188/ but is it a compatibility issue we care about?00:19
bknudsonjamielennox: I'm still trying to figure out how it worked before... the parameters were required, so that would have failed.00:20
jamielennoxno, it loads them via _conf_get so it was passing a parameter but it was passing None00:20
morganfainbergbknudson, that was what i've been driving towards with the token_model, and if the formatter could do that conversion, easy00:21
jamielennoxthe auth request that was being constructed wouldn't have worked, but it doesn't matter because we are mocking the response00:21
bknudsonjamielennox: so you could fix keystoneclient... instead of using None use a different sentinel.00:22
jamielennoxbecause of https://github.com/openstack/keystonemiddleware/blob/master/keystonemiddleware/auth_token.py#L103800:22
*** Kui has joined #openstack-keystone00:22
jamielennoxugly, but i don't think we have another option because otherwise the tests won't work for middleware with newer client00:23
bknudsonjamielennox: I think you need to do that.00:23
bknudsonmiddleware tests can also be changed.00:23
openstackgerritA change was merged to openstack/python-keystoneclient: Move fake session to HTTPClient  https://review.openstack.org/10886800:24
openstackgerritA change was merged to openstack/keystone: Configurable python-keystoneclient repo  https://review.openstack.org/10328300:24
openstackgerritJamie Lennox proposed a change to openstack/python-keystoneclient: Allow passing None for username in v2.Password  https://review.openstack.org/11675700:36
openstackgerritBrant Knudson proposed a change to openstack/keystone: Enhance V3 extensions to provide JSON Home data  https://review.openstack.org/10398300:37
openstackgerritBrant Knudson proposed a change to openstack/keystone: Change the sub-routers to provide JSON Home data  https://review.openstack.org/11157700:37
openstackgerritBrant Knudson proposed a change to openstack/keystone: Change OS-INHERIT extension to provide JSON Home data  https://review.openstack.org/11157800:37
openstackgerritBrant Knudson proposed a change to openstack/keystone: Enhance V3 extension class to integrate JSON Home data  https://review.openstack.org/11157900:37
openstackgerritBrant Knudson proposed a change to openstack/keystone: Enhance GET /v3 to handle Accept header  https://review.openstack.org/11546200:37
openstackgerritJamie Lennox proposed a change to openstack/keystonemiddleware: Always supply a username to auth_token tests setup  https://review.openstack.org/11676000:39
openstackgerritJamie Lennox proposed a change to openstack/keystonemiddleware: Create an Auth Plugin to pass to users  https://review.openstack.org/10722200:41
*** jorge_munoz has joined #openstack-keystone00:52
*** mitz has joined #openstack-keystone00:53
*** jorge_munoz has quit IRC00:58
*** diegows has joined #openstack-keystone00:59
*** wanghong has joined #openstack-keystone01:05
*** dims_ has joined #openstack-keystone01:25
*** zzzeek has quit IRC01:26
*** zzzeek has joined #openstack-keystone01:28
*** richm has quit IRC01:39
*** marcoemorais has quit IRC01:40
*** diegows has quit IRC01:51
*** alex_xu has joined #openstack-keystone01:55
*** shakamunyi has quit IRC02:05
*** toddnni has joined #openstack-keystone02:15
*** gokrokve_ has quit IRC02:15
*** shakamunyi has joined #openstack-keystone02:23
*** rushiagr_away is now known as rushiagr02:24
*** rushiagr is now known as rushiagr_away02:25
*** dims_ has quit IRC02:29
*** dims_ has joined #openstack-keystone02:29
*** david-lyle has quit IRC02:31
*** gyee has quit IRC02:47
*** dims__ has joined #openstack-keystone02:48
*** dims_ has quit IRC02:48
*** Kui has quit IRC02:48
*** vhoward has left #openstack-keystone02:51
*** ncoghlan has joined #openstack-keystone02:52
openstackgerritA change was merged to openstack/keystone: assignment controller error path fix  https://review.openstack.org/11664702:52
*** gokrokve has joined #openstack-keystone02:53
*** ncoghlan is now known as ncoghlan_afk02:53
openstackgerritOpenStack Proposal Bot proposed a change to openstack/keystone: Updated from global requirements  https://review.openstack.org/11162002:55
openstackgerritOpenStack Proposal Bot proposed a change to openstack/python-keystoneclient: Updated from global requirements  https://review.openstack.org/11625502:59
*** dims__ has quit IRC03:00
*** KanagarajM has joined #openstack-keystone03:03
*** Kui has joined #openstack-keystone03:11
*** ncoghlan_afk is now known as ncoghlan03:19
*** Kui has quit IRC03:24
*** Kui has joined #openstack-keystone03:25
*** zzzeek has quit IRC03:37
*** harlowja is now known as harlowja_away03:47
*** harlowja_away is now known as harlowja03:48
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Mark methods on token_api deprecated  https://review.openstack.org/11534703:49
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Remove trust dependency on token_api  https://review.openstack.org/10946203:49
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Revoke by Audit Id / Audit Id Chain instead of expires  https://review.openstack.org/11486403:49
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Update AuthContextMiddleware to not use token_api  https://review.openstack.org/11342903:49
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Add extra guarding to revoke_by_audit_id methods  https://review.openstack.org/11514703:50
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Notification Constant Cleanup and internal notify type  https://review.openstack.org/11533703:50
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Remove assignment_api dependency on token_api  https://review.openstack.org/11533803:50
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Remove wsgi and base controller dependency on token_api  https://review.openstack.org/11520503:50
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Remove identity_api dependency on token_api  https://review.openstack.org/11504503:50
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Remove SAML2 plugin dependency on token_api  https://review.openstack.org/11501203:50
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Remove oauth controller dependency on token_api  https://review.openstack.org/11534303:50
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Add __repr__ to KeystoneToken model  https://review.openstack.org/11343003:50
*** marcoemorais has joined #openstack-keystone03:53
*** marcoemorais has quit IRC03:54
morganfainbergi think i'm losing my mind03:57
morganfainbergi've now had rebases fail and revert code on my ~4 times today03:57
morganfainberg:(03:57
*** vhoward has joined #openstack-keystone03:59
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Revoke by Audit Id / Audit Id Chain instead of expires  https://review.openstack.org/11486404:02
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Revoke by Audit Id / Audit Id Chain instead of expires  https://review.openstack.org/11486404:02
*** david-lyle has joined #openstack-keystone04:02
openstackgerritJamie Lennox proposed a change to openstack/python-keystoneclient: Allow overriding endpoint URLs in session  https://review.openstack.org/11654304:04
*** zzzeek has joined #openstack-keystone04:06
openstackgerritJamie Lennox proposed a change to openstack/python-keystoneclient: Versioned Endpoint hack for Sessions  https://review.openstack.org/9063204:07
openstackgerritJamie Lennox proposed a change to openstack/python-keystoneclient: [WIP] Add template hacks to identity plugins  https://review.openstack.org/11275204:07
*** david-lyle has quit IRC04:07
*** zzzeek has quit IRC04:11
openstackgerritJamie Lennox proposed a change to openstack/keystonemiddleware: Replace httpretty with requests-mock  https://review.openstack.org/11277704:11
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Mark methods on token_api deprecated  https://review.openstack.org/11534704:12
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Remove trust dependency on token_api  https://review.openstack.org/10946204:12
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Update AuthContextMiddleware to not use token_api  https://review.openstack.org/11342904:12
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Add extra guarding to revoke_by_audit_id methods  https://review.openstack.org/11514704:12
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Notification Constant Cleanup and internal notify type  https://review.openstack.org/11533704:12
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Remove assignment_api dependency on token_api  https://review.openstack.org/11533804:12
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Remove wsgi and base controller dependency on token_api  https://review.openstack.org/11520504:12
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Remove identity_api dependency on token_api  https://review.openstack.org/11504504:12
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Remove SAML2 plugin dependency on token_api  https://review.openstack.org/11501204:12
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Remove oauth controller dependency on token_api  https://review.openstack.org/11534304:12
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Add __repr__ to KeystoneToken model  https://review.openstack.org/11343004:12
morganfainbergstevemar, why does git hate me so much :(04:13
stevemarmorganfainberg, cause of your rebase bonanza04:14
morganfainbergstevemar, i had to get a visual git explorer out to solve this rebase issue04:14
stevemareek04:14
morganfainbergand it involved a lot of reflog viewing04:14
*** praneshp has joined #openstack-keystone04:16
stevemarmorganfainberg, i got a q for your04:16
stevemaryou*04:16
morganfainbergstevemar, sure04:17
morganfainbergstevemar, before i go and call it a night04:17
stevemarmorganfainberg, https://review.openstack.org/#/c/111576/6/keystone/auth/routers.py04:17
stevemarwhere is the spec for OS-PKI ?04:17
stevemarline 42...04:17
morganfainbergstevemar, uhm...04:19
morganfainbergstevemar you mean identity-api bits?04:19
morganfainbergstevemar, that is the token revocation list, predates the -specs repo04:19
stevemaris there any info on it on identity-api?04:19
*** praneshp_ has joined #openstack-keystone04:21
morganfainbergmust be missing04:21
morganfainbergbut the router is there04:21
*** praneshp has quit IRC04:21
*** praneshp_ is now known as praneshp04:21
stevemaryeah, i know the router exists, weird that we don't have it doced04:26
stevemarahh apparently GET /v3/auth/tokens/OS-PKI/revoked should be deprecated04:27
stevemaralso04:27
stevemarhttps://bugs.launchpad.net/openstack-api-site/+bug/130460604:27
uvirtbotLaunchpad bug 1304606 in openstack-api-site "Identity API v3 OS-PKI extension is undocumented" [High,Triaged]04:27
stevemarawful04:28
stevemarf'ing awful04:28
openstackgerritSteve Martinelli proposed a change to openstack/identity-api: Clean up JSON home API  https://review.openstack.org/11678404:30
openstackgerritKanagaraj Manickam proposed a change to openstack/keystone: Endpoint table is missing reference to region table  https://review.openstack.org/11318304:32
*** zzzeek has joined #openstack-keystone04:36
*** oomichi_away has quit IRC04:37
*** chandankumar has joined #openstack-keystone04:43
*** zzzeek has quit IRC04:44
*** amirosh has joined #openstack-keystone04:52
*** david-lyle has joined #openstack-keystone05:03
*** david-lyle has quit IRC05:07
openstackgerritA change was merged to openstack/keystone: Back off initial migration to 35  https://review.openstack.org/11482705:12
openstackgerritA change was merged to openstack/keystone: Make SQL the default backend for Identity & Assignment unit tests.  https://review.openstack.org/11652805:12
*** zzzeek has joined #openstack-keystone05:15
*** shakamunyi has quit IRC05:16
*** KanagarajM has quit IRC05:17
openstackgerritA change was merged to openstack/keystone: Provide the V3 routers to the V3 extension controller  https://review.openstack.org/11157405:17
*** chandankumar has quit IRC05:18
*** yasukun has joined #openstack-keystone05:19
*** zzzeek has quit IRC05:20
*** chandankumar has joined #openstack-keystone05:32
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Create SAML generation route and controller  https://review.openstack.org/11413805:36
*** KanagarajM has joined #openstack-keystone05:36
*** ajayaa has joined #openstack-keystone05:46
*** stevemar has quit IRC05:54
*** ncoghlan is now known as ncoghlan_afk05:57
*** k4n0 has joined #openstack-keystone05:57
*** gokrokve has quit IRC06:00
*** david-lyle has joined #openstack-keystone06:04
*** alex_xu has quit IRC06:04
openstackgerritOpenStack Proposal Bot proposed a change to openstack/keystone: Imported Translations from Transifex  https://review.openstack.org/11192006:05
*** david-lyle has quit IRC06:08
*** ajayaa has quit IRC06:15
*** ukalifon has joined #openstack-keystone06:16
*** zzzeek has joined #openstack-keystone06:17
*** alex_xu has joined #openstack-keystone06:17
*** afazekas has joined #openstack-keystone06:17
*** zzzeek has quit IRC06:22
*** gokrokve has joined #openstack-keystone06:27
*** ajayaa has joined #openstack-keystone06:28
*** gokrokve has quit IRC06:28
*** gokrokve has joined #openstack-keystone06:29
*** dvorak has quit IRC06:29
*** gokrokve has quit IRC06:30
*** harlowja is now known as harlowja_away06:31
*** gokrokve has joined #openstack-keystone06:31
*** jimbaker has quit IRC06:31
*** jimbaker has joined #openstack-keystone06:35
*** jimbaker has quit IRC06:35
*** jimbaker has joined #openstack-keystone06:35
*** gokrokve has quit IRC06:35
openstackgerritA change was merged to openstack/keystone: Enhance V3 version controller to provide JSON Home response  https://review.openstack.org/11157506:36
*** alex_xu has quit IRC06:44
*** ncoghlan_afk is now known as ncoghlan06:50
*** RicoLin has joined #openstack-keystone06:57
*** RicoLin has joined #openstack-keystone06:58
*** alex_xu has joined #openstack-keystone06:58
*** IamNewB has joined #openstack-keystone07:01
*** rushiagr_away is now known as rushiagr07:02
IamNewBHello, I wanted to browse keystone server code, but not able to understand from where to start. I wanted to know when we run keystonecommand like user-role-list, where it lands in keystone server code07:04
*** david-lyle has joined #openstack-keystone07:05
*** david-lyle has quit IRC07:09
*** zzzeek has joined #openstack-keystone07:18
*** wanghong has quit IRC07:20
*** zzzeek has quit IRC07:24
*** gokrokve has joined #openstack-keystone07:29
*** gokrokve has quit IRC07:33
*** Daviey has quit IRC07:34
*** IamNewB has quit IRC07:38
*** Daviey has joined #openstack-keystone07:40
*** jamielennox is now known as jamielennox|away08:03
*** david-lyle has joined #openstack-keystone08:05
*** david-lyle has quit IRC08:10
*** KanagarajM2 has joined #openstack-keystone08:11
*** KanagarajM has quit IRC08:12
openstackgerritDave Chen proposed a change to openstack/keystone: Inaccurate description found in keystone's manual o Add sudo prefix in commandline as normal user don't have permission to               make changes on dist-packages or site-packages by default. o The link will be made in the dist-packages instead of sit  https://review.openstack.org/11682008:19
*** zzzeek has joined #openstack-keystone08:20
*** henrynash has joined #openstack-keystone08:21
openstackgerritMarcos Fermín Lobo proposed a change to openstack/keystone: Implement validation on the Catalog V3 resources  https://review.openstack.org/9626608:23
*** zzzeek has quit IRC08:25
*** gokrokve has joined #openstack-keystone08:29
*** gokrokve has quit IRC08:34
*** ajayaa has quit IRC08:37
openstackgerritKanagaraj Manickam proposed a change to openstack/keystone: Endpoint table is missing reference to region table  https://review.openstack.org/11318308:45
openstackgerritKanagaraj Manickam proposed a change to openstack/keystone: Endpoint table is missing reference to region table  https://review.openstack.org/11318308:49
*** ncoghlan has quit IRC08:56
*** bdossant has joined #openstack-keystone08:58
*** david-lyle has joined #openstack-keystone09:06
*** ajayaa has joined #openstack-keystone09:07
*** david-lyle has quit IRC09:10
bdossantHi! Can anyone tell me if in Juno the "Domain-specific Drivers" feature will be ready? I see that theres already documentation on this but cloning the master repo I havent able to make it work with LDAP and SQL domain drivers09:11
*** aix has joined #openstack-keystone09:17
*** alex_xu has quit IRC09:18
*** ajayaa has quit IRC09:19
*** ajayaa has joined #openstack-keystone09:20
*** zzzeek has joined #openstack-keystone09:21
openstackgerritKanagaraj Manickam proposed a change to openstack/keystone: Endpoint table is missing reference to region table  https://review.openstack.org/11318309:25
*** zzzeek has quit IRC09:27
*** gokrokve has joined #openstack-keystone09:29
*** gokrokve has quit IRC09:31
*** gokrokve has joined #openstack-keystone09:31
*** amirosh has quit IRC09:35
*** gokrokve has quit IRC09:35
*** amirosh_ has joined #openstack-keystone09:37
*** praneshp has quit IRC09:43
*** jasondotstar|afk has quit IRC10:01
*** david-lyle has joined #openstack-keystone10:07
*** david-lyle has quit IRC10:12
*** XEye has joined #openstack-keystone10:18
*** gokrokve has joined #openstack-keystone10:29
openstackgerritAjaya Agrawal proposed a change to openstack/keystone: Implemented caching in identity layer.  https://review.openstack.org/11057510:32
openstackgerritKanagaraj Manickam proposed a change to openstack/keystone: Endpoint table is missing reference to region table  https://review.openstack.org/11318310:34
*** gokrokve has quit IRC10:34
*** david-lyle has joined #openstack-keystone11:08
*** david-lyle has quit IRC11:12
*** renlt has joined #openstack-keystone11:13
*** bvandenh has joined #openstack-keystone11:14
openstackgerritIlya Pekelny proposed a change to openstack/keystone: Comparision of database models and migrations.  https://review.openstack.org/8063011:24
*** zzzeek has joined #openstack-keystone11:25
*** gokrokve has joined #openstack-keystone11:29
*** zzzeek has quit IRC11:30
*** aix has quit IRC11:31
*** gokrokve has quit IRC11:33
openstackgerritAlexey Miroshkin proposed a change to openstack/keystone: Prevent domains creation for the default LDAP+SQL  https://review.openstack.org/11685811:35
*** diegows has joined #openstack-keystone11:48
*** rushiagr is now known as rushiagr_away11:58
openstackgerritKanagaraj Manickam proposed a change to openstack/keystone: Endpoint table is missing reference to region table  https://review.openstack.org/11318312:07
*** david-lyle has joined #openstack-keystone12:08
*** gordc has joined #openstack-keystone12:12
*** david-lyle has quit IRC12:13
*** KanagarajM2 has quit IRC12:18
*** stevemar has joined #openstack-keystone12:26
*** zzzeek has joined #openstack-keystone12:26
openstackgerritSamuel de Medeiros Queiroz proposed a change to openstack/keystone: Improve list role assignments filters performance  https://review.openstack.org/11668212:27
*** gokrokve has joined #openstack-keystone12:29
*** alex_xu has joined #openstack-keystone12:31
*** zzzeek has quit IRC12:32
*** jaosorior has joined #openstack-keystone12:33
*** gokrokve has quit IRC12:34
*** aix has joined #openstack-keystone12:41
*** dvorak has joined #openstack-keystone12:45
*** k4n0 has quit IRC12:49
*** miqui has joined #openstack-keystone12:58
*** joesavak has joined #openstack-keystone13:01
*** bknudson has quit IRC13:06
openstackgerritMarek Denis proposed a change to openstack/keystone: IdP SAML Metadata generator  https://review.openstack.org/11485013:08
*** topol has joined #openstack-keystone13:08
*** david-lyle has joined #openstack-keystone13:09
openstackgerritMarek Denis proposed a change to openstack/keystone: Generate IdP Metadata with keystone-manage.  https://review.openstack.org/11556413:10
*** Kui has quit IRC13:12
openstackgerritIlya Pekelny proposed a change to openstack/keystone: Use metadata.create_all() to fill a test database  https://review.openstack.org/9355813:13
openstackgerritMarek Denis proposed a change to openstack/keystone: Routes for Keystone-IdP metadata endpoint.  https://review.openstack.org/11588313:13
*** david-lyle has quit IRC13:13
*** nkinder has quit IRC13:18
*** inteq has joined #openstack-keystone13:23
*** gokrokve has joined #openstack-keystone13:29
*** gokrokve has quit IRC13:33
*** chandankumar has quit IRC13:38
*** yasukun has quit IRC13:40
*** chandankumar has joined #openstack-keystone13:41
*** ajayaa has quit IRC13:41
*** chandankumar has quit IRC13:53
*** chandankumar has joined #openstack-keystone13:54
openstackgerritLance Bragstad proposed a change to openstack/keystone: Implement validation on the Catalog V3 resources  https://review.openstack.org/9626613:56
*** david-lyle has joined #openstack-keystone13:57
*** gokrokve has joined #openstack-keystone14:00
*** chandankumar has quit IRC14:06
*** bknudson has joined #openstack-keystone14:10
*** dims has joined #openstack-keystone14:11
*** jasondotstar has joined #openstack-keystone14:12
*** nkinder has joined #openstack-keystone14:12
*** cjellick has joined #openstack-keystone14:15
ByteSorehi people, got a question.. i've been testing alot today with glance authentication.. i can't get it to work. when i run a glance index i'm getting an error in the api.log: NotAuthenticated: Authentication required i have the OS_USERNAME and all set to the right info. if i check it with swift the credentials do work.14:17
openstackgerritLance Bragstad proposed a change to openstack/keystone: Make BaseValidationTestCase  https://review.openstack.org/10909814:19
*** cjellick has quit IRC14:21
*** cjellick has joined #openstack-keystone14:21
*** henrynash has quit IRC14:22
*** jorge_munoz has joined #openstack-keystone14:23
lbragstadhockeynut: I believe this was the review/bug with ssl certs that's already been purposed14:23
lbragstadhttps://review.openstack.org/#/c/88207/14:23
lbragstadhockeynut: I'll reference them in the bug that you opened14:24
*** ekarlso has quit IRC14:31
openstackgerritThiago Paiva Brito proposed a change to openstack/python-keystoneclient: Implementing hierarchical calls on keystoneclient v3 (python only)  https://review.openstack.org/11577014:32
*** jorge_munoz has quit IRC14:34
*** jorge_munoz has joined #openstack-keystone14:34
openstackgerritDolph Mathews proposed a change to openstack/keystone: Add libxmlsec1 as external package dependency on OS X  https://review.openstack.org/11690714:39
*** zzzeek has joined #openstack-keystone14:43
dstaneklbragstad: what changes are you making to https://review.openstack.org/#/c/86484/ ?14:44
dstaneklbragstad: i have a change to test_validation.py that i've put in front of it locally14:44
hockeynuthi lbragstag - thanks for the info - I'll keep an eye on that one.14:48
hockeynuthi lbragstad - thanks for the info - I'll keep an eye on that one.14:48
*** dims has quit IRC14:51
*** amirosh_ has quit IRC14:53
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Create additional docs for role assignment events  https://review.openstack.org/11481314:54
*** dims has joined #openstack-keystone14:54
openstackgerritDolph Mathews proposed a change to openstack/identity-api: Clean up JSON home API  https://review.openstack.org/11678414:54
lbragstaddstanek: the update_schema_validator14:55
lbragstaddstanek: should be update_project_validator and update_domain_validator14:56
lbragstadhttps://review.openstack.org/#/c/86484/40/keystone/tests/test_validation.py14:56
dstaneklbragstad: i just read the comment about merging the commit - no need to do that anymore - i've been working on testing this morning and i already changed that14:56
openstackgerritDolph Mathews proposed a change to openstack/keystone: Change V3 router classes to provide JSON Home data  https://review.openstack.org/11157614:57
openstackgerritDolph Mathews proposed a change to openstack/keystone: Enhance V3 extensions to provide JSON Home data  https://review.openstack.org/10398314:57
openstackgerritDolph Mathews proposed a change to openstack/keystone: Change the sub-routers to provide JSON Home data  https://review.openstack.org/11157714:57
openstackgerritDolph Mathews proposed a change to openstack/keystone: Change OS-INHERIT extension to provide JSON Home data  https://review.openstack.org/11157814:57
openstackgerritDolph Mathews proposed a change to openstack/keystone: Enhance V3 extension class to integrate JSON Home data  https://review.openstack.org/11157914:57
openstackgerritDolph Mathews proposed a change to openstack/keystone: Enhance GET /v3 to handle Accept header  https://review.openstack.org/11546214:58
lbragstaddstanek: gotcha,14:59
lbragstadI wasn't aware, I thought this was in WIP https://review.openstack.org/#/c/110336/114:59
lbragstadso I was going to roll in to the assignment API validation patch14:59
dstaneklbragstad: i added a bunch of test cases to a commit that i put before yours and i rolled that one into yours15:00
dstaneklbragstad: i also removed the Base* concept since there was no shared setup15:00
lbragstaddstanek: was that on the api-validation branch?15:01
dstaneklbragstad: my new work?15:01
lbragstadyes15:01
dstanekyes, or at least it will be once i push - making sure i have all of the usecases in the tests15:02
lbragstaddstanek: cool15:02
lbragstaddstanek: once you push, I can probably go through and start abandoning duplicate or unnecessary reviews15:02
openstackgerritRodrigo Duarte proposed a change to openstack/keystone: Base methods to handle hierarchical projects  https://review.openstack.org/11184115:04
openstackgerritRodrigo Duarte proposed a change to openstack/keystone: Add parent_project_id field  https://review.openstack.org/11184015:04
openstackgerritRodrigo Duarte proposed a change to openstack/keystone: Create, update and delete hierarchical projects  https://review.openstack.org/11184215:04
*** ChanServ sets mode: +o dolphm15:06
*** amirosh has joined #openstack-keystone15:07
dolphmlbragstad: that would be nice :)15:07
openstackgerritRodrigo Duarte proposed a change to openstack/keystone: Inherited roles to projects  https://review.openstack.org/11692115:12
*** amirosh has quit IRC15:22
*** renlt has quit IRC15:27
*** chandankumar has joined #openstack-keystone15:27
*** ekarlso has joined #openstack-keystone15:29
dolphmstevemar: danke https://review.openstack.org/#/c/114813/15:31
*** topol has quit IRC15:31
stevemardolphm, bitte15:33
*** zzzeek has quit IRC15:34
hockeynutmorning folks - I am trying to run keystone-manage pki_setup and its not doing a darn thing - just comes back to command prompt.  Verbose and Debug give me no output either.  Am I supposed to run it from any particular directory?15:34
*** achudnovets has joined #openstack-keystone15:36
dstanekhockeynut: are you trying to replace existing files?15:36
hockeynutyes15:36
dolphmdstanek: does it avoid stomping on existing files?15:37
dstanekhockeynut: i thought that it would log an error for that, but i don't think you can do that15:37
dstanekdolphm: yes, i think so15:37
hockeynutdstanek it does nothing.  just returns to cmd prompt.  No output.  Files are untouched.15:37
dstanekhockeynut: i'm pretty sure that it won't overwrite anything15:37
*** ukalifon has quit IRC15:39
hockeynutdstanek I could remove/rename if that is whats needed15:39
dstanekhockeynut: yes, that should work fine15:40
*** ekarlso has quit IRC15:40
hockeynutdstanek I shall give that a try.  Fingers crossed...15:40
*** ekarlso has joined #openstack-keystone15:40
dstanekhockeynut: here is the bug https://bugs.launchpad.net/keystone/+bug/1308778 - i'll submit a patch to warn people about it once i'm done with what i'm working on15:41
uvirtbotLaunchpad bug 1308778 in keystone "keystone-manage ssl_setup does not overwrite existing files" [Medium,In progress]15:41
*** zzzeek has joined #openstack-keystone15:41
hockeynutuvirtbot yep, saw that.15:42
uvirtbothockeynut: Error: "yep," is not a valid command.15:42
morganfainberguvirtbot, good bot.15:42
uvirtbotmorganfainberg: Error: "good" is not a valid command.15:42
dstanekuvirtbot: ssshhhh15:42
uvirtbotdstanek: Error: "ssshhhh" is not a valid command.15:42
morganfainbergLOL15:42
hockeynutone of those days...15:43
*** wwriverrat has joined #openstack-keystone15:47
*** stevemar has quit IRC15:48
*** stevemar has joined #openstack-keystone15:48
lbragstadhockeynut: there is a review up to make a --rebuild option for ssl_setup, the same could probably be done for pki_setup15:50
hockeynutlbragstad that would be cool.15:51
*** wwriverrat has left #openstack-keystone15:51
lbragstadhockeynut: https://review.openstack.org/#/c/88207/15:51
lbragstadthat is the review15:51
lbragstadI'll comment on it and see if we can get that same --rebuild option leveraged for pki_setup as well15:52
lbragstadif we're doing it for one, we might as well do it for both15:52
hockeynutlbragstad thanks, that would be epic15:52
dstaneklbragstad: i think those things don't have much movement because they are only dev tools and not production tools15:53
lbragstadcorrect15:53
lbragstadhockeynut: you're only using this for dev, right?15:54
hockeynutlbragstad correct15:54
lbragstadhockeynut: ok, cool15:54
hockeynut:-D15:55
*** wwriverrat1 has joined #openstack-keystone15:55
*** wwriverrat1 has left #openstack-keystone15:55
*** wwriverrat1 has joined #openstack-keystone15:56
*** wwriverrat1 has left #openstack-keystone15:57
*** amerine has joined #openstack-keystone15:57
*** bvandenh has quit IRC15:57
*** wwriverrat has joined #openstack-keystone15:57
*** zzzeek has quit IRC16:00
*** gyee has joined #openstack-keystone16:05
lbragstaddstanek: for the validation test cases, we are going to add a BaseValidationTestCase and keep ValidationTestCase, right?16:06
*** alex_xu has quit IRC16:06
dstaneklbragstad: no i removed Base* and renamed Validation*16:06
lbragstaddstanek: ok, so everything will extend ValidationTestCase16:07
dstaneklbragstad: working on the last 2 update cases now16:07
dstaneklbragstad: no, nothing extends that because there is no shared setup16:07
lbragstaddstanek: ok16:07
dstaneklbragstad: i have everything extending testtools.TestCase16:07
lbragstaddstanek: ok, so are we going to keep all classes in test_validation.py or break them out into something like test_assignment_validation.py?16:08
dstaneklbragstad: right now i was planning on keeping them together so that we can get this stuff landed - i'd love to move this over to the unit tests shortly after16:09
*** wwriverrat has left #openstack-keystone16:09
*** alex_xu has joined #openstack-keystone16:09
*** xianghui has quit IRC16:13
*** rodrigods has joined #openstack-keystone16:14
*** afazekas has quit IRC16:14
*** xianghui has joined #openstack-keystone16:15
lbragstaddstanek: works for me16:15
lbragstaddstanek: so test cases for all validation stuff should live in test_validation.py, just getting ready so that once you push your work I can refactor the other patches as needed16:16
*** marcoemorais has joined #openstack-keystone16:18
*** richm has joined #openstack-keystone16:21
dstaneklbragstad: i just thought of another usecase16:26
dstaneklbragstad: can booleans be nullable during updates?16:27
dstaneki suspect not16:27
lbragstaddstanek: no, I don't think so16:27
lbragstaddstanek: if you're updating a boolean value it should be a true boolean16:27
bknudsonsee this little bird on https://review.openstack.org/#/c/111576/7 ?16:33
*** gokrokve_ has joined #openstack-keystone16:35
*** gokrokve has quit IRC16:38
*** nkinder has quit IRC16:41
dstaneklbragstad: sorry i'm stuck in rebase hell16:43
lbragstaddstanek: conflicts?16:43
morganfainbergdolphm, stevemar, dstanek  i want to suppress the deprecation warning for the persistence manager (token_api) for testing, any thoughts on the best approach, i'm thinking a instance variable we set in test setup on token_api, just because it's silly to spam the logs with "DEPRECATED" (a lot of tests use token_api still and probably will for the foreseeable future)16:43
morganfainbergand test-only config options are silly16:44
dstaneklbragstad: kinda sorta16:44
dstanekmorganfainberg: just for that one case or for all deprecation warnings?16:45
stevemarmorganfainberg, sounds reasonable16:45
dstanekmorganfainberg: theoretically you could filter the log16:45
morganfainbergdstanek, just that one case, since it doesn't use @versionutils16:45
dstanekmorganfainberg: ah16:45
dolphmmorganfainberg: then maybe we shouldn't be deprecating it? pending deprecation?16:46
morganfainbergdstanek, @versionutils doesn't work on non-class (post instantiated) methods.16:46
dolphmmorganfainberg: i feel the same about xml middleware16:46
morganfainbergdolphm, well for non-test cases it *should* be deprecated16:46
openstackgerritOpenStack Proposal Bot proposed a change to openstack/keystone: Updated from global requirements  https://review.openstack.org/11162016:46
morganfainbergi guess i can update everything to use token_provider_api.persistence16:47
morganfainbergthats a better idea16:47
morganfainbergi'll do that16:47
openstackgerritA change was merged to openstack/keystone: Revoke by Audit Id / Audit Id Chain instead of expires  https://review.openstack.org/11486416:47
morganfainbergwoot!16:48
morganfainberg^16:48
stevemarmorganfainberg, noooo the rest of your stuff failed to merge :(16:49
morganfainbergstevemar, it was a failure because the venv didn't build16:49
morganfainbergjust needs rechecks16:49
stevemarphew!16:50
openstackgerritKanagaraj Manickam proposed a change to openstack/keystone: Endpoint table is missing reference to region table  https://review.openstack.org/11318316:51
openstackgerritOpenStack Proposal Bot proposed a change to openstack/keystone: Updated from global requirements  https://review.openstack.org/11162016:54
*** topol has joined #openstack-keystone17:00
*** rushiagr_away is now known as rushiagr17:00
*** amcrn has joined #openstack-keystone17:00
*** amirosh has joined #openstack-keystone17:00
openstackgerritOpenStack Proposal Bot proposed a change to openstack/keystone: Updated from global requirements  https://review.openstack.org/11162017:02
openstackgerritDavid Stanek proposed a change to openstack/keystone: Implement validation on Assignment V3 API  https://review.openstack.org/8648417:08
openstackgerritDavid Stanek proposed a change to openstack/keystone: Adds tests that show how update with validation work  https://review.openstack.org/11695417:08
dstaneklbragstad: this show the update problem that i was talking about a few weeks ago17:09
*** aix has quit IRC17:10
*** aix has joined #openstack-keystone17:10
dstaneklbragstad: ok, i also have two commits that i'm holding back until this stuff gets merged17:11
dstaneklbragstad: one moves the unit tests to a different directory and the other splits up the tests into a few smaller classes17:12
lbragstaddstanek: sweet, reviewing17:13
dstaneklet me know if the update tests don't make sense17:14
dstanekthe existing code/approach wouldn't let us update to null values17:14
*** harlowja_away is now known as harlowja17:15
openstackgerritDavid Stanek proposed a change to openstack/keystone: Updated from global requirements  https://review.openstack.org/11162017:15
richmquestion about the keystone.wsgi script - it is installed in /usr/share/keystone/keystone.wsgi on fedora/rhel17:16
richmwhere is it installed on debian/ubuntu?17:16
*** marcoemorais has quit IRC17:16
*** praneshp has joined #openstack-keystone17:16
dstanekthis should be an easy one - https://review.openstack.org/#/c/111620/17:17
*** marcoemorais has joined #openstack-keystone17:17
*** marcoemorais has quit IRC17:17
*** marcoemorais has joined #openstack-keystone17:18
dstanekrichm: from the actual packagers?17:21
openstackgerritOpenStack Proposal Bot proposed a change to openstack/keystone: Updated from global requirements  https://review.openstack.org/11162017:23
dstanekrichm: on debian it looks like /usr/share/keystone/wsgi.py based on https://packages.debian.org/jessie/all/python-keystone/filelist17:23
*** jimbaker has quit IRC17:24
*** jimbaker has joined #openstack-keystone17:24
*** jimbaker has quit IRC17:24
*** jimbaker has joined #openstack-keystone17:24
*** marcoemorais has quit IRC17:26
richmdstanek: yes, the actual packages17:28
*** amcrn has quit IRC17:28
*** RicoLin has quit IRC17:28
richmdstanek: I'm working on the puppet-keystone modules so that puppet/packstack/foreman/etc. installs can automatically set up keystone to use wsgi17:28
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Make persistence manager in token_provider_api private  https://review.openstack.org/11696117:29
openstackgerritMorgan Fainberg proposed a change to openstack/keystone: Update tests to not use token_api  https://review.openstack.org/11696217:29
dstanekrichm: i think that wsgi.py is what you are looking for, but i have not installed the package myself17:29
*** marcoemorais has joined #openstack-keystone17:29
dstanekrichm: on unbuntu i didn't see it anywhere, but i may not have been Googling hard enough17:30
richmdstanek: ok - thanks17:30
morganfainbergstevemar, ^ those two should be easy to review compared ot the rest of the chain17:33
dstaneklbragstad: my review made a design decision where where to specify the nullablitiy of a parameter17:35
dstaneklbragstad: i removed it from the description property schema and moved it to the object schema where i think it belongs17:36
dstaneklbragstad: this is because description (or any other field) may not be nullable in all objects17:36
lbragstaddstanek: https://review.openstack.org/#/c/116954 makes sense17:39
lbragstadwalking through the nullable method17:39
*** henrynash has joined #openstack-keystone17:39
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Transform a Keystone token to a SAML assertion  https://review.openstack.org/11054217:43
*** gokrokve has joined #openstack-keystone17:47
*** aix has quit IRC17:47
lbragstad{'type': ['string', 'null']} and replace it with {‘type': [['string', 'null'], 'null']}17:48
lbragstaddstanek: so when using the nullable method, we take something that could be:17:48
lbragstad{'type': ['string', 'null']} and replace it with {‘type': [['string', 'null'], 'null']}17:48
dstaneklbragstad: no because ['string', 'null'] is already nullable17:50
*** gokrokve_ has quit IRC17:50
lbragstaddstanek: here at line 54, isn't that what we're doing? https://review.openstack.org/#/c/116954/1/keystone/tests/test_validation.py17:51
dstaneklbragstad: the reason to use the nullable method is to turn a type of 'string' into a type or ['string', 'null']17:51
*** gokrokve has quit IRC17:51
dstaneklbragstad: which param are you refering to?17:52
lbragstadline 53, sorry17:52
lbragstad'description': validation.nullable(parameter_types.description),17:52
dstaneklbragstad: line 39 here https://review.openstack.org/#/c/116954/1/keystone/common/validation/parameter_types.py17:52
lbragstadwhich passes https://github.com/openstack/keystone/blob/master/keystone/common/validation/parameter_types.py#L38-L40 to the nullable method17:52
*** chandankumar has quit IRC17:53
dstaneklbragstad: it's not anymore, see the link above17:54
lbragstadah ha17:54
lbragstadyep, you're right17:54
lbragstaddstanek: so we can create the dictionaries to non-nullable and call validation.nullable iff we need to17:56
dstanekyes, similar to how SQL models work17:56
lbragstaddstanek: awesome, makes sense now17:57
lbragstaddstanek: I had one comment on spelling but I can fix that17:57
lbragstaddstanek: I think this looks good17:57
dstanekotherwise you'll have things like 'description' and 'description_nullable'17:57
dstaneklbragstad: if you push another version can you update my commit message?17:59
lbragstaddstanek: cool, so description can always be {'type': 'string'}17:59
lbragstaddstanek: yep, I can17:59
dstaneklbragstad: thx - yep always required to have a value until it's not18:00
dstaneklbragstad: this means that the nullable function would also be used in create schemas for optional parameters18:00
*** arborism has joined #openstack-keystone18:03
*** nkinder has joined #openstack-keystone18:04
*** arborism is now known as amcrn18:07
openstackgerritLance Bragstad proposed a change to openstack/keystone: Adds tests that show how update with validation works  https://review.openstack.org/11695418:09
lbragstaddstanek: ^ fixed up the spelling and the commit message18:10
dstaneklbragstad: you'll have to rebase your other review on top of that now18:11
*** jamielennox has joined #openstack-keystone18:11
openstackgerritLance Bragstad proposed a change to openstack/keystone: Implement validation on Assignment V3 API  https://review.openstack.org/8648418:11
lbragstaddstanek: done18:11
dstaneklbragstad: nice, thanks18:13
lbragstaddstanek: thank you18:13
*** marcoemorais has quit IRC18:14
*** marcoemorais has joined #openstack-keystone18:14
*** marcoemorais has quit IRC18:15
*** zzzeek has joined #openstack-keystone18:15
*** marcoemorais has joined #openstack-keystone18:15
*** gokrokve has joined #openstack-keystone18:19
*** marcoemorais has quit IRC18:21
*** marcoemorais has joined #openstack-keystone18:21
*** PsionTheory has joined #openstack-keystone18:23
*** marcoemorais has quit IRC18:28
*** marcoemorais has joined #openstack-keystone18:28
openstackgerritA change was merged to openstack/identity-api: Clean up JSON home API  https://review.openstack.org/11678418:33
*** bvandenh has joined #openstack-keystone18:45
*** rushiagr is now known as rushiagr_away18:45
*** jasondotstar has quit IRC18:56
afaranhahenrynash: Hi, as I'm reviewing https://review.openstack.org/#/c/115362/8/keystone/contrib/endpoint_policy/backends/sql.py  in line 260 there's a comment about using "region" column instead of region_id, but as this patch depends on the patch that migrate the table to have the region_id column ( https://review.openstack.org/#/c/113183/11 ), I think this code should be implemented with the changes in the table, using "region_id" instead18:56
henrynashafaranha: yes, the code will be changed to use region_id18:57
henrynashafaranha: just waiting for the patch I’m dependant on to settle down18:57
*** jsavak has joined #openstack-keystone18:59
afaranhaAh, ok, I'll just finish reviewing and wait for the patch to put the review :)19:00
henrynashafaranha: ok, thx19:01
morganfainbergdolphm, +2 on the uuid default19:01
morganfainbergdolphm, btw19:01
dolphmmorganfainberg: with three +2's, i put it on the starred list19:01
dolphmactually, the bug was already targeted to juno19:02
dolphmhttps://bugs.launchpad.net/keystone/+bug/135000019:02
*** joesavak has quit IRC19:02
uvirtbotLaunchpad bug 1350000 in keystone "UUID is a more friendly default token provider than PKI" [Wishlist,In progress]19:02
morganfainbergyeah, it's just suffering from the big-red-x syndrom19:02
dolphmjamielennox: any idea when ayoung will be back to lift that?19:03
jamielennoxdolphm: he's out this week19:03
morganfainbergdolphm, infra *might* be able to remove a score (super admin powers of gerrit)19:04
dolphmwe could also just use a new change-id but :(19:04
dolphmi'd rather not circumvent the vote19:04
morganfainbergdolphm, honestly, based on comments and the IRC chatter it's going to be hard to sell it.19:04
dolphmunless there's like a hundreds upvotes on the patch19:04
dolphmmorganfainberg: hard to sell uuid?19:05
morganfainbergdolphm, as the default19:05
morganfainbergto ayoung that is19:05
*** harlowja has quit IRC19:06
dolphmeveryone needs to vote one way or the other19:06
morganfainbergi meant from the lifting the -219:06
dolphmmorganfainberg: right19:07
gyeeI thought arguing performance without some concrete numbers is a waste of time19:07
dolphmgyee: if you have performance numbers on PKI vs UUID that'd be super interesting19:07
*** harlowja has joined #openstack-keystone19:08
gyeedolphm, unfortunately, I don't19:08
gyeewhat I meant was the only way to win a performance argument is with real numbers19:08
jamielennoxoh, in about 2 weeks i'm dissapearing for 4 weeks - i realize we are busy now but i need to get people to do some client reviewing19:09
lbragstaddstanek: we can abandon this guy, right? https://review.openstack.org/#/c/110338/119:09
jamielennoxpossibly even do some little fixes to those patches to get them in whilst i'm away19:09
lbragstadI think that was built into the assignment api validation patch19:09
dolphmjamielennox: that's a rough time to step away from the client! :( i'm always happy to pitch in making small fixes, but i'll likely be mostly focused on RC1 in that time period19:10
morganfainbergtowards the end of september there will be a week i'll be around but busy up in the bay area so less present19:10
dstaneklbragstad: not sure19:10
dolphmmorganfainberg: alrighty19:10
openstackgerritJamie Lennox proposed a change to openstack/identity-api: API for auth-specific-data routes  https://review.openstack.org/11542319:10
dolphmi'll be out for a week at some point in the next couple months because bandwagon19:10
dstaneklbragstad: i have one more thing to add to my patch. have you started to work on the assignment one again?19:10
dolphmbknudson bots don't need vacation, right?19:11
morganfainbergdolphm, we figured any kind of work stuff that requires face to face is best done late RC when things *should* be a bit more calm19:11
jamielennoxyea, realize that, it's going to make me really busy just prior to summit - but life stuff19:11
dolphmjamielennox: ++19:11
lbragstaddstanek: you need to add something to https://review.openstack.org/#/c/116954/2 ?19:11
lbragstaddstanek: I wasn't working on the assignment patch at the moment, I was going through some stale validation reviews19:11
dstaneklbragstad: that's the one, ok i'll push then19:12
lbragstaddstanek: ok19:12
dolphmhenrynash: stevemar: lbragstad: jamielennox: i'd appreciate any sort of vote on https://review.openstack.org/#/c/110488/19:12
dstaneklbragstad: i've started commenting on how to fix some of the other validation reviews19:12
lbragstaddstanek: ok, on the api/validation branch19:13
jamielennoxgyee: want to have a look at https://review.openstack.org/#/c/113742/7 for me19:17
gyeejamielennox, looking19:18
bknudsonuvirtbot takes plenty of vacations19:18
uvirtbotbknudson: Error: "takes" is not a valid command.19:18
morganfainberguvirtbot, vacation19:19
uvirtbotmorganfainberg: Error: "vacation" is not a valid command.19:19
dolphmlol19:19
morganfainberguvirtbot help19:19
uvirtbotmorganfainberg: (help [<plugin>] [<command>]) -- This command gives a useful description of what <command> does. <plugin> is only necessary if the command is in more than one plugin.19:19
dolphmuvirtbot: take-vacation19:19
uvirtbotdolphm: Error: "take-vacation" is not a valid command.19:19
bknudsonneeds the vacation plugin19:19
lbragstadhave we ever crashed uvirtbot ?19:20
morganfainberglbragstad, don't think so19:20
dstaneklbragstad: what were you basing the schemas off of? many of them don't match the SQL models19:21
morganfainberguvirtbot list19:21
uvirtbotmorganfainberg: Admin, Anonymous, Bugtracker, Channel, Config, Misc, Owner, and User19:21
*** amcrn has quit IRC19:21
dolphmuvirtbot: ping19:21
uvirtbotpong19:21
dolphmwin19:21
lbragstaddstanek: I was basing it off the API spec19:21
dolphmUVIRTBOT #hasapurpose19:21
uvirtbotdolphm: Error: "#hasapurpose" is not a valid command.19:21
*** ChanServ sets mode: +o morganfainberg19:21
* lbragstad thinks keystone accepts the challenge of crashing uvirtbot19:22
morganfainbergLOL19:22
morganfainbergnice dolph19:22
morganfainbergnice19:22
lbragstaddstanek: some of the controllers or resource Manager did things like:19:23
*** ChanServ sets mode: +v uvirtbot19:23
lbragstadhttps://github.com/openstack/keystone/blob/master/keystone/catalog/controllers.py#L21519:23
bknudsonlooks like uvirtbot just got more powerful19:24
*** arborism has joined #openstack-keystone19:24
dolphmmorganfainberg: okay i'm pretty sure i can crash uvirtbot, get -infra ready19:24
morganfainbergdolphm, it isn't run by -infra19:24
morganfainbergdolphm, i think it's run by some one specific19:24
dolphmdammit it already has a catch for that19:25
lbragstaddstanek: for example, the sql table doesn't require `type`19:25
lbragstadhttps://github.com/openstack/keystone/blob/master/keystone/common/sql/migrate_repo/versions/035_havana.py#L12919:25
morganfainbergdolphm, oh you were going to have it tell itself to tell something19:25
stevemarultron, it that you? uvirtbot19:25
jamielennoxgyee: this one would be useful as well: https://review.openstack.org/#/c/113415/19:26
dolphmuvirtbot who am i19:26
jamielennoxgyee: i pick on you because it works19:26
uvirtbotdolphm: Error: "who" is not a valid command.19:26
dolphmuvirtbot: whoami19:26
uvirtbotdolphm: I don't recognize you.19:26
morganfainberguvirtbot whoareyou19:27
uvirtbotmorganfainberg: Error: "whoareyou" is not a valid command.19:27
*** jasondotstar has joined #openstack-keystone19:28
gyeejamielennox, heh, you'd think this is my fulltime job19:29
lbragstaddstanek: I would say the schema are based on a mix of what the identity-api spec says, what's _required_ in the controllers, and what's enforced by the backends.19:29
lbragstads/schema/schemas/19:29
*** amirosh has quit IRC19:29
dstaneklbragstad: this is gonna be fun!19:29
lbragstaddstanek: :)19:29
dolphmmorganfainberg: is it just me, or are there check jobs that aren't being picked up by build nodes?19:37
morganfainbergdolphm, new check jobs or ones queueed?19:37
dolphmmorganfainberg: old jobs19:37
dolphmmorganfainberg: look at the oldest check jobs on http://status.openstack.org/zuul/19:37
morganfainbergdolphm, something is wonky, but there was some AZ shifting for build nodes19:37
morganfainbergwondering if stuff is wedged because it was targeted to something that wont ever build now19:38
*** dims has quit IRC19:38
*** dims has joined #openstack-keystone19:39
*** gyee has quit IRC19:40
lbragstaddstanek: I think https://review.openstack.org/#/c/116954/2/ will fail pep8 because assignment_schema is imported but never used https://review.openstack.org/#/c/116954/2/keystone/tests/test_validation.py19:40
henrynashdolphm: +2’d the UUID default19:46
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Implementation of Endpoint Grouping  https://review.openstack.org/11194919:53
dolphmtopol: have you used partials before?19:54
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Implementation of Endpoint Grouping  https://review.openstack.org/11194919:57
stevemardolphm, add this to your starred list please https://review.openstack.org/#/c/111949/19:58
dolphmstevemar: why is it not on my starred list already?19:58
stevemari believe there was a mix up, it's the endpoint grouping code19:59
* stevemar shrugs19:59
*** marcoemorais has quit IRC19:59
stevemari updated the commit msg to point to the bp correctly19:59
dolphmstevemar: is it stable?19:59
*** marcoemorais has joined #openstack-keystone19:59
dolphmstevemar: oh it was an orphan19:59
stevemaryes, all lonely20:00
*** marcoemorais has quit IRC20:00
dolphmstevemar: have you reviewed it?20:00
stevemardolphm, nope20:00
stevemardolphm, i only know about it because i was going to move it to Kilo https://review.openstack.org/#/c/116633/20:01
*** marcoemorais has joined #openstack-keystone20:01
dolphmstevemar: that introduces a new API as well, right?20:01
stevemardolphm, the spec was approved, the code was up before FPF, it just fell through the cracks20:01
stevemaryes20:01
dolphmstevemar: API review link?20:02
topoldolphm, no20:02
topoldolphm, why20:02
stevemardolphm, i doubt there is one20:02
*** joesavak has joined #openstack-keystone20:03
dolphmtopol: stevemar suggested you use partials in your review, like http://pasteraw.com/dldbc3prwjqolq42wmq23hwp1ubiokn20:03
*** marcoemorais has quit IRC20:03
stevemardolphm, yes apparently it's merged https://review.openstack.org/#/c/106292/12/v3/src/markdown/identity-api-v3-os-ep-filter-ext.md20:03
*** marcoemorais has joined #openstack-keystone20:04
topolHi dolphm, so i tried them and they somehow upset mock20:04
dolphmoh. but not completely reviewed by keystone20:04
topoldolphm got a one less argument error20:04
stevemari had a few goes at it20:04
*** shakamunyi has joined #openstack-keystone20:04
stevemardolphm, topol i don't think partials are necessary for that20:04
stevemarwe can fix it up later20:05
dolphmstevemar: agree, but it is a good suggestion20:05
topoldolphm +++20:05
dolphmstevemar: the review itself would be easier with partials20:05
dolphmif they work20:05
dolphmwith tests20:05
*** jsavak has quit IRC20:05
stevemarmight be some funkiness with tests20:05
stevemaranywho20:05
topolstevemar were you able to make partials work???20:06
stevemarendpoint groups does had identity API too20:06
stevemarnope20:06
dolphmtopol: i think something must be funky with your implementation20:06
dolphmstevemar: does had?20:06
topoldolphm, how so?20:07
dolphmtopol: because tests are passing with my implementation... which test is failing for you?20:07
stevemardoes have*20:07
dolphmtopol: http://pasteraw.com/kbk47is679341h313tc0f5pqlbkvrvo20:08
*** dims_ has joined #openstack-keystone20:09
topoldolphm, so let me retry what you know will work :-)20:09
topoldolphm, so did you already push a new patch up that I can just pulldown20:10
dolphmtopol: i did not, but i'd be happy to20:11
topoldolphm sure. Im not proud20:11
*** shakamunyi has quit IRC20:11
openstackgerritDolph Mathews proposed a change to openstack/keystone: Add audit support to keystone federation  https://review.openstack.org/11433720:11
dolphmtopol: ^^20:12
topoldolphm, that was very kind of you20:12
topoldolphm, I didnt get you anything20:12
*** dims has quit IRC20:12
openstackgerritDavid Stanek proposed a change to openstack/keystone: Adds tests that show how update with validation works  https://review.openstack.org/11695420:12
openstackgerritDavid Stanek proposed a change to openstack/keystone: Implement validation on Assignment V3 API  https://review.openstack.org/8648420:12
dolphmtopol: you can get me the same changes in the top portion of the file :) https://review.openstack.org/#/c/114337/8/keystone/auth/plugins/mapped.py20:13
dolphmtopol: _handle_scoped_token()20:13
dolphmtopol: you can also share with me the logic of the PENDING notifications - doesn't seem useful on fast operations like auth?20:14
*** dims_ has quit IRC20:14
topoldolphm, I can do _handle_scoped_token()20:15
dolphmtopol: and now that i look at them both, it looks like you should be able to share the same partial in both methods?20:17
*** dims has joined #openstack-keystone20:17
dstaneklbragstad: i was going to start fixing some of the reviews. are you working on any of them at the moment?20:18
lbragstaddstanek: yes,20:19
lbragstadI have the policy and credential api validation patches ready to review once 116954 goes in20:19
lbragstaddstanek: working on addressing your comments in the catalog validation review20:19
lbragstaddstanek: the funny thing about services is that the identity-api documentation lists a bunch of optional parameters you can specify, but they just get tossed into the extra column anyway20:20
lbragstaddstanek: so, if you pass 'name' and 'description' on a service update or create request, it goes into the extra column20:21
topoldolphm, yours worked.  You were right and I was wrong.  But I was betting on you :-)20:21
*** dims has quit IRC20:22
dolphmtopol: was your partial buidling missing something i assume?20:22
dolphmtopol: also left you another -1 :)20:23
topoldolphm, I guess. It was late at night and decided to defer that and come back to it20:23
topoldolphm, a -1 on my code. not a shock :-)20:23
dolphmtopol: thankfully it's coffee time now though right?!20:24
*** bvandenh has quit IRC20:24
topoldolphm, I refuse to enjoy coffee until I get a new patch out that makes us all feel better20:24
stevemardstanek, matt R looked at the docs for notifications :) help me close out a BP https://review.openstack.org/#/c/114813/20:25
dstaneklbragstad: that's unfortunate20:25
dolphmstevemar: would you have time to review that API patch before we target the endpoint policy grouping thing to juno-3?20:26
dolphmendpoint obfuscation* grouping thing20:26
dstanekstevemar: +2ed it  - any reason not to +A too?20:27
stevemardolphm, the API has been merged, way back when20:27
stevemardstanek, don't think so20:27
dstanekstevemar: then done20:27
dolphmstevemar: right, but it didn't get two +2's from keystone core20:27
stevemarright20:27
stevemarre-review it even in it's merged state?20:27
dolphmstevemar: yes20:28
stevemardolphm, fine, but you gotta review these, they actually benefit you a bit: https://review.openstack.org/#/c/116639/ and https://review.openstack.org/#/c/116641/20:28
dstaneklbragstad: can you base your work on that review so that we can start reviewing those too or would be rather wait?20:28
dolphmstevemar: lol20:28
dolphmstevemar: happy to20:29
*** arborism has quit IRC20:29
dolphmstevemar: what about an abandoned spec dir?20:29
dolphmof some kind?20:29
lbragstaddstanek: sure, just wrapping up the catalog patch20:29
stevemari was thinking that...20:29
dolphmnova wants to just leave unworked specs in juno/ but that seems messy20:29
stevemaragreed20:29
dolphmmoving them to kilo/ feels like we're championing them20:29
stevemardefinitely not juno20:29
stevemarit does20:29
stevemaruntargeted?20:30
dolphmstevemar: that's not very clear20:30
dolphmstevemar: but *we* would know what that means20:30
ekarlsodoes keystone use multiple workers ?20:30
stevemardolphm, i'm lazy so i vote kilo20:30
stevemarif they still don't merge, then lima20:31
dolphmconsigned/ lol20:31
dolphmstevemar: they'll just be carried forward forever that way20:31
dolphmstevemar: not maintainable20:31
stevemarjust shows how much technical debt we have20:31
dolphmgaveup/20:31
stevemaralright, technical debt20:31
stevemarnew category20:31
dolphmbut some are feature requests20:31
dolphmmost?20:32
dolphmwalkouts/20:32
openstackgerritSteve Martinelli proposed a change to openstack/identity-api: Update region entries to include URLs  https://review.openstack.org/11411820:33
dolphmforfeited/20:34
dolphmthat might be my favorite20:34
dolphmmorganfainberg: thoughts? ^20:34
dstanekdolphm: haha, i like forfeited20:35
lbragstaddstanek: about the region id comment here,20:35
lbragstadhttps://review.openstack.org/#/c/96266/29/keystone/catalog/schema.py20:35
lbragstadyou talking about the string_id type that we were trying here, https://review.openstack.org/#/c/108862/ right?20:35
*** amcrn has joined #openstack-keystone20:38
dolphmstevemar: i'll bring it up in the cross project meeting20:39
dolphmstevemar: i don't think i'm a fan of just pushing them forward though, unless you're going to work on it yourself20:39
stevemarwe moved open id connect forward20:39
stevemarcause well, i plan to work on it20:40
*** gyee has joined #openstack-keystone20:40
topoldolphm, is there a way for me to do the partial stuff without doing copy paste of the following line in both scop and unscoped methods?20:40
topolsend_notification = functools.partial(20:40
topol            notifications.send_saml_audit_notification, 'authenticate',20:40
topol            context, user_id, group_ids, identity_provider, protocol)20:40
dolphmtopol: put it in a wider scope, even module level if that's appropriate20:40
dolphmtopol: err, i take that back! no20:41
topoldolphm, even if the values havent been bound yet its safe?20:41
dolphmtopol: ++ the values don't exist20:41
dolphmtopol: need to define it in each method20:41
dolphmtopol: my mistake20:41
topoldolphm, K, cool. even a broken clock is right twice a day. That was my turn :-020:41
dolphmtopol: lol.20:42
dstaneklbragstad: yes, unless you think we won't have that in20:42
lbragstaddstanek: that has the lazy load stuff that needs to be worked in yet I think?20:42
dstaneklbragstad: or something...20:43
openstackgerritA change was merged to openstack/python-keystoneclient: Allow providing a default value to CLI loading  https://review.openstack.org/11374220:44
dstanekwe could also punt on that until we know how we want it to work and leave the hex_uuid20:44
topoldolphm, I now realized how I butchered functools when I tried it but Im too embarrased to say what I did20:47
topoldolphm, morganfainberg would disown me as a father20:47
dolphmtopol: lol20:48
dolphmtopol: at least you learned something!20:48
*** morganfainberg is now known as morganfainberg_Z20:49
topoldolphm, I certainly did.  Thanks for keeping me honest20:50
dstanektopol++20:50
*** henrynash has quit IRC20:53
openstackgerritOpenStack Proposal Bot proposed a change to openstack/python-keystoneclient: Updated from global requirements  https://review.openstack.org/11625520:54
stevemardolphm, want me to upload a new patch for identity api (endpoint grouping)?20:55
bknudsonwe should all learn to love function pointers and hate OO.20:56
stevemarthere will be lots of changes, minor stuff20:56
openstackgerritLance Bragstad proposed a change to openstack/keystone: Adds tests that show how update with validation works  https://review.openstack.org/11695420:58
openstackgerritLance Bragstad proposed a change to openstack/keystone: Implement validation on Policy V3 API  https://review.openstack.org/10406520:58
openstackgerritLance Bragstad proposed a change to openstack/keystone: Implement validation on Policy V3 API  https://review.openstack.org/10406521:02
*** marcoemorais has quit IRC21:02
lbragstaddstanek: ^ Policy rebased on top of your changes21:02
*** marcoemorais has joined #openstack-keystone21:03
*** marcoemorais has quit IRC21:04
*** marcoemorais has joined #openstack-keystone21:04
topoldolphm ever seen the move apocalypse now21:04
topolmovie?21:04
*** dims has joined #openstack-keystone21:10
dolphmtopol: it's been like a decade, but yes21:15
*** cjellick_ has joined #openstack-keystone21:15
*** cjellick has quit IRC21:16
topoldolphm, I just use the following movie quote: "don't get off the boat" with stevemar but he could not appreciate the reference21:16
*** cjellick_ has quit IRC21:19
*** shakamunyi has joined #openstack-keystone21:19
openstackgerritLance Bragstad proposed a change to openstack/keystone: Implement validation on Credential V3  https://review.openstack.org/9852221:28
lbragstaddstanek: ^ credential API rebased on your change21:28
*** morganfainberg_Z is now known as morganfainberg21:33
morganfainbergdolphm, was at lunch back now, reading up21:33
dolphmlbragstad: on which change?21:34
dolphmlbragstad: oh nvm21:34
morganfainbergdolphm, ok thoughts on which change?21:34
dolphmmorganfainberg: these https://review.openstack.org/#/c/116639/121:35
openstackgerritSteve Martinelli proposed a change to openstack/identity-api: Clean up endpoint grouping API  https://review.openstack.org/11702821:35
dolphmmorganfainberg: i think we should move them into some other dir, like abandoned/ or forfeited/21:35
morganfainbergyeah moving to kilo is wrong unless we're blessing them at this point for inclusion in kilo21:35
morganfainbergi'm not opposed to doing that21:35
stevemardolphm, https://review.openstack.org/#/c/117028/21:35
morganfainbergjust if it is moved to kilo it's a "yes this is being planned for that release"21:36
dolphmmorganfainberg: i'm just opposed to moving them to kilo/ if we don't have someone committing to work it21:36
morganfainbergdolphm, ++21:36
dolphmbut i don't want them in juno/ either (which i think is nova's approach)21:36
stevemardolphm, gimmie a name and i'll make it happen21:36
morganfainbergshardy said he'd try for kilo.21:36
dolphmstevemar: holy crap21:36
morganfainbergbut i'd wait till we're closer21:36
dolphmstevemar: reference the BP21:36
stevemardolphm, you said to go through it21:36
dolphmstevemar: my battery is at 2% - i'll follow up later21:37
morganfainbergdolphm, PLUGIN!21:37
stevemarsome of it is cleaning up endpoint filters use of silly --param-name-- and real values21:37
*** gordc has left #openstack-keystone21:37
stevemaryeah i had like 12 comments21:38
stevemarbut it was merged :(21:38
dstanekdolphm: is the plan for https://review.openstack.org/#/c/113183 to expose region and region_id to the client?21:38
dolphmdstanek: yes, region for backwards compat, and region_id for forward consistency across the API21:39
openstackgerritSteve Martinelli proposed a change to openstack/identity-api: Clean up endpoint grouping API  https://review.openstack.org/11702821:39
morganfainbergLOL look at the gate queue21:39
dolphmdstanek: which matches spec21:39
dolphmmorganfainberg: OUR DAY HAS COME21:40
* dolphm battery dies21:40
dstanekdolphm: one spec mentioned region and the other mentioned region_id ... they have me very confused21:40
morganfainbergdolphm, plugin....21:40
morganfainbergplug in!21:40
openstackgerritLance Bragstad proposed a change to openstack/keystone: Implement validation on the Catalog V3 API  https://review.openstack.org/9626621:41
*** harlowja is now known as harlowja_away21:43
topoldolphm, stevemar, I made all the required updates except adding the new Credential. I have to take my son to soccer practice but will push a complete patch later tonite21:45
stevemarinexcusable!21:46
stevemarhave fun :)21:46
morganfainbergtopol, really family before code? :P21:46
topoldolphm, stevemar called me out in front of my boss :-).  He's brutal21:46
morganfainbergtopol, have a good one man.21:46
topolThanks son21:46
stevemarmorganfainberg, if shardy says he'll pick it up in Kilo, then we should just move it to kilo21:47
morganfainberghe said in the review he'll try21:47
stevemari can't see jamielennox or ayoung not picking up explicit unscoped in kilo either21:47
jamielennoxwhat's up? i haven't been watching21:47
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Create SAML generation route and controller  https://review.openstack.org/11413821:49
*** henrynash has joined #openstack-keystone21:50
openstackgerritA change was merged to openstack/keystone: Create additional docs for role assignment events  https://review.openstack.org/11481321:50
openstackgerritA change was merged to openstack/keystone: Change V3 router classes to provide JSON Home data  https://review.openstack.org/11157621:50
openstackgerritA change was merged to openstack/keystone: Change the sub-routers to provide JSON Home data  https://review.openstack.org/11157721:54
*** dims has quit IRC21:55
*** dims has joined #openstack-keystone21:56
*** praneshp has quit IRC21:56
*** praneshp has joined #openstack-keystone21:57
*** praneshp has joined #openstack-keystone21:57
*** topol has quit IRC21:59
*** harlowja_away is now known as harlowja22:00
*** dims has quit IRC22:00
jamielennoxare we looking at having the default token format changed for Juno or is this a Kilo thing?22:04
*** jorge_munoz has quit IRC22:10
openstackgerritMarek Denis proposed a change to openstack/keystone: Transform a Keystone token to a SAML assertion  https://review.openstack.org/11054222:12
*** bknudson has quit IRC22:13
*** PsionTheory has quit IRC22:16
openstackgerrithenry-nash proposed a change to openstack/keystone: backend for policy endpoint extension  https://review.openstack.org/11536222:21
*** vhoward- has joined #openstack-keystone22:22
*** vhoward has quit IRC22:22
*** rharwood_ has joined #openstack-keystone22:31
*** uvirtbot` has joined #openstack-keystone22:31
*** stevemar has quit IRC22:32
*** gokrokve_ has joined #openstack-keystone22:33
*** afaranha1 has joined #openstack-keystone22:35
*** montanvi has joined #openstack-keystone22:35
*** marcoemorais has quit IRC22:36
*** marcoemorais has joined #openstack-keystone22:36
*** david-ly_ has joined #openstack-keystone22:36
*** praneshp_ has joined #openstack-keystone22:37
*** wwriverrat1 has joined #openstack-keystone22:37
*** rharwood has quit IRC22:37
*** bambam1 has quit IRC22:37
*** uvirtbot has quit IRC22:37
*** hockeynut has quit IRC22:37
*** rharwood_ is now known as rharwood22:37
*** david-lyle has quit IRC22:38
*** praneshp has quit IRC22:39
*** praneshp_ is now known as praneshp22:39
*** _nonameentername has joined #openstack-keystone22:40
*** radez_g0` has joined #openstack-keystone22:40
*** wwriverrat1 has quit IRC22:42
*** wwriverrat1 has joined #openstack-keystone22:42
*** joesavak has quit IRC22:43
*** gokrokve has quit IRC22:43
*** openstackgerrit has quit IRC22:43
*** afaranha has quit IRC22:43
*** nonameentername has quit IRC22:43
*** radez_g0n3 has quit IRC22:43
*** lsmola has quit IRC22:43
*** chmouel_ has quit IRC22:43
*** chmouel has joined #openstack-keystone22:43
*** lsmola has joined #openstack-keystone22:45
*** samuelmz has quit IRC22:45
*** samuelmz has joined #openstack-keystone22:45
*** wwriverrat1 has left #openstack-keystone22:46
*** HenryG has quit IRC22:46
*** jaosorior has quit IRC22:52
*** montanvi has quit IRC22:55
*** montanvi has joined #openstack-keystone22:55
*** praneshp has quit IRC22:55
*** praneshp has joined #openstack-keystone22:55
*** radez_g0` has quit IRC22:55
*** radez_g0` has joined #openstack-keystone22:55
*** lsmola has quit IRC22:56
*** lsmola has joined #openstack-keystone22:56
*** amerine_ has joined #openstack-keystone22:59
*** amerine has quit IRC23:01
*** Kui has joined #openstack-keystone23:03
*** david-ly_ is now known as david-lyle23:04
*** montanvi is now known as bambam123:16
*** Kui has quit IRC23:19
*** henrynash has quit IRC23:34
*** bknudson has joined #openstack-keystone23:37

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