Saturday, 2014-10-04

*** cjellick has quit IRC00:01
openstackgerritA change was merged to openstack/keystonemiddleware: Update oslo-incubator and switch to oslo.{utils,serialization}  https://review.openstack.org/12497900:05
*** gyee has quit IRC00:05
*** gokrokve has quit IRC00:19
*** marcoemorais has quit IRC00:21
openstackgerritNathan Kinder proposed a change to openstack/identity-api: Correct response status for HEAD requests  https://review.openstack.org/12424300:35
*** wwriverrat1 has joined #openstack-keystone00:39
*** jorge_munoz has quit IRC00:52
*** gokrokve has joined #openstack-keystone00:59
*** HenryG_ has joined #openstack-keystone01:00
*** dimsum_ has quit IRC01:02
*** dimsum_ has joined #openstack-keystone01:03
*** HenryG has quit IRC01:03
*** DavidHu__ has joined #openstack-keystone01:05
openstackgerritMorgan Fainberg proposed a change to openstack/keystone-specs: Remove deprecated items from the Kilo release  https://review.openstack.org/12312201:07
*** dimsum_ has quit IRC01:07
*** DavidHu_ has quit IRC01:08
*** wwriverrat1 has left #openstack-keystone01:08
*** r1chardj0n3s is now known as r1chardj0n3s_afk01:10
*** NM has quit IRC01:12
openstackgerritMorgan Fainberg proposed a change to openstack/keystone-specs: Remove deprecated items from the Kilo release  https://review.openstack.org/12312201:17
*** dimsum_ has joined #openstack-keystone01:18
*** NM has joined #openstack-keystone01:30
*** ayoung-dad-mode is now known as ayoung01:30
openstackgerritA change was merged to openstack/keystone: Fixes an error deleting an endpoint group project  https://review.openstack.org/12605001:31
ayoungnkinder, you have the system with the python-kc-kerberos rpm installed still?01:31
*** gokrokve_ has joined #openstack-keystone01:37
*** gokrokve has quit IRC01:38
*** NM has quit IRC01:45
*** jorge_munoz has joined #openstack-keystone01:48
*** jorge_munoz has left #openstack-keystone01:48
nkinderayoung: yeah01:52
ayoungnkinder, ok,  there is an env var you can set.  I'd be interested to see if it affects the PBR issue01:53
nkinderayoung: sure, I'll give it a shot01:53
ayoungnkinder, from the rpm01:53
ayoungPBR_VERSION=%{version}.%{milestone}01:53
ayoungnot sure what I had in there...01:54
ayoungVersion:    0.0.101:54
nkinderayoung: is that the version of py-kc-kerb?01:54
ayoungyeah01:54
ayoungnkinder, that was from the KC rpm spec01:54
ayoungthis source is just %{name}/%{name}-%{version}.01:55
ayoungso milestone is probably blank01:55
nkinderayoung: export PBR_VERSION=0.0.1 gets me further.  It's complaining that I dont have requests_kerberos now01:56
ayoungdid I leave that out? Really...01:56
ayoungyep01:56
nkinderayoung: yep, add python-requests-kerberos to the requires01:57
ayoungwilco01:57
ayoungI'm more concerned about the PBR thing01:57
ayoungI know that debian uses the PBR_VERSION approach in packaging, but it should not be required at run time01:57
nkinderayoung: http://paste.openstack.org/show/118322/01:59
ayoungwhat about it?02:00
nkinderrequest_kwargs is None, but it tries to perform assignment02:00
ayoungis this using the CLI?02:00
nkindershouldn't it default to an empty dict?02:00
nkinderayoung: this is using one of your scripts in fedorapeople02:00
ayoungnkinder, I suspec the None is wrong, and that if that value is not passed in, something else went wrong02:01
nkinderayoung: sure, but that code is still wrong02:01
nkinderayoung: if defaults to None and then tries to assign a value to a key02:01
ayoungbut I think it might be required in order to have the follow on kwargs param02:01
ayoungyeah,  agreed02:02
nkinderI get an authoriztion failure if I make that default to an empty dict02:02
ayoungyou never need to default to None nayway02:02
ayounganyway02:02
nkinderayoung: I added that to the review02:04
ayoungdid the code blow up when you ran it?02:05
*** Tahmina has quit IRC02:05
nkinderyeah, the Session code says I'm attempting to use an unsupported method02:05
nkinderand then returns a 40102:05
nkinderayoung: I'm just trying to run this - https://admiyo.fedorapeople.org/openstack/python-keystoneclient-kerberos/kerberos_auth.py02:06
ayoungunsupported...02:06
ayoungnkinder, that is your server02:07
ayoungyou need to add kerberos to the set of supported methods in keystone.conf02:07
*** alexiz has joined #openstack-keystone02:07
nkinderayoung: I wasn't using my kerberized auth url :P02:07
ayoungits not on by default02:07
ayoungits a global value02:08
nkinderayoung: ok, how do I add that to the supported methods?02:08
*** alexiz is now known as shakamunyi02:08
ayoung[auth]02:08
nkinderayoung: what's the method name to add there?02:08
ayoungmethods=external,password,token02:08
ayoungbecomes02:09
ayoungmethods=kerberos,password,token02:09
ayoungand kerberos is mapped to02:09
ayoungkerberos=keystone.auth.plugins.external.KerberosDefaultDomain02:09
ayoungthat one only works if the kerberos domain is the default domain, of course02:10
ayounghttp://git.openstack.org/cgit/openstack/keystone/tree/keystone/auth/plugins/external.py#n100  is what I think we want to target02:11
nkinderayoung: what do you mean by "default domain"?  The domain returned by the system?02:11
ayoungnkinder, there is one domain defined as default by the keystone.conf file02:11
nkinderah, the keystone domain02:11
ayounghttp://git.openstack.org/cgit/openstack/keystone/tree/keystone/common/config.py#n14502:12
*** dimsum_ has quit IRC02:12
nkinderok, so I get this now - requests.exceptions.InvalidSchema: No connection adapters were found for '=http://192.168.128.102:5000/krb/v3/auth/tokens'02:12
ayoungnever saw that one before02:12
*** dimsum_ has joined #openstack-keystone02:12
ayoung=02:13
ayoungyou have a typo02:13
ayoung'=http02:13
ayounghttp://stackoverflow.com/questions/15115328/python-requests-no-connection-adapters02:13
nkinderignore that one..02:13
nkinderjust found the same thing... :)02:13
ayoungnkinder, btw, its still a WIP, but I have what I think the DOA code is going to look like...once we get your Kerberos test running, I'd like to walk you through it02:14
nkinderok, so back to a 401, but I don't have a user that maps to my principal yet02:14
ayounghttps://review.openstack.org/#/c/121281/02:14
nkinderayoung: am I supposed to have a user in keystone whose name exactly matches the principal?02:14
ayoungare you backing the domain with LDAP?02:14
nkinderno02:15
ayoungfor IPA I alwyas back with LDAP02:15
remote_morgan_ayoung: nkinder there might be some oddities on kerb thing until we get a release.02:15
nkinderI usually do too, but I tacked this onto a federation set up02:15
remote_morgan_not sure how odd PBR gets w/o an initial release02:15
ayoungah...lets do it as a non default domain02:15
nkinderayoung: ok, I'll add a domain02:15
ayoungyou can try out the multi backend code, too.02:15
nkinderayoung: yeah, I've used it before02:16
ayoungcool02:16
ayoungfeels like things are starting to gell...this has been a slog02:16
*** dimsum_ has quit IRC02:17
*** shakamunyi has quit IRC02:21
*** sigmavirus24 is now known as sigmavirus24_awa02:21
*** gokrokve_ has quit IRC02:23
remote_morgan_nkinder: ayoung - Have some additional support/use-cases (potentially) to support SSSD in keystone. will know more next week.02:28
ayoungremote_morgan_, cool.02:28
ayoungah...missed the views code in DOA...02:29
remote_morgan_the more i think about it the more i like it... provided we can make it as good/better than the read-only version of LDAP we have.02:29
ayoungremote_morgan_, I suspect that there will still be some nitnoid details to iron out.02:30
ayoungBut the SSSD folks are pretty responsive02:30
remote_morgan_of course02:30
nkinderremote_morgan_: yeah, I'm curious to hear about them02:30
nkinderayoung: my system is hosed up.  python-openstackclient stopped working with cliff errors all of a sudden02:31
remote_morgan_nkinder: oh, thoughts are drinks one evening next week, a couple of us and also planning on bugging thingee (new cinder PTL)02:31
nkinderremote_morgan_: sounds good02:31
ayoungthingee made PTL?02:31
ayoungAwesome02:32
nkinderayoung: yeah02:32
remote_morgan_ayoung: yep!02:32
ayoungnkinder, he's got more metal than you02:32
nkinderhaha02:32
remote_morgan_ayoung: and SpamapS is PTL of tripleo02:32
nkinderI keep it more hidden... :)02:32
ayounghttps://avatars0.githubusercontent.com/u/47583?v=2&s=46002:32
ayoungTMI02:33
remote_morgan_hah02:34
nkinderok, my environment needs to be rebuilt, which means I'm done for the night on kerberos02:35
*** dvorak_ has joined #openstack-keystone02:44
*** tristanC_ has joined #openstack-keystone02:45
*** portante_ has joined #openstack-keystone02:47
*** mfisch` is now known as mfisch02:50
*** mfisch is now known as Guest8418702:50
*** dhellmann_ has joined #openstack-keystone02:51
*** dhellmann has quit IRC02:56
*** bjornar has quit IRC02:56
*** portante has quit IRC02:56
*** dvorak has quit IRC02:56
*** tristanC has quit IRC02:56
*** ekarlso has quit IRC02:56
*** dhellmann_ is now known as dhellmann02:56
*** dvorak_ is now known as dvorak02:56
*** bjornar has joined #openstack-keystone02:56
*** ekarlso has joined #openstack-keystone02:58
*** diegows has quit IRC03:01
stevemarnkinder, i think that happens cause of some funky requirements stuff03:04
nkinderstevemar: the cliff errors?03:04
stevemarnkinder, yeah03:04
stevemarnkinder, i normally just rebuild, like you mentioned03:05
nkinderstevemar: yeah, some other python module must have gotten installed.  It was working, but I don't know what it was that broke it.03:05
nkindereasier to rebuild since I have all of this scripted :)03:05
stevemarnkinder, but i should probably figure out whats actually going on, it's got something to do with the requirements levels i think03:05
stevemarscipt is handy :)03:05
*** tristanC_ is now known as tristanC03:33
*** praneshp has quit IRC03:47
ayoungnkinder, I'm close on the session for DOA stuff, but no Cigar yet.  The  unit tests are running at  (errors=64) out of 104.  Most are due to the client setup code not being called, which is usually some other error in Django masking it.  Anyway, I was hoping to put it to bed this week, but it will still be waitin monday.03:50
ayounghttps://review.openstack.org/#/c/121281/03:50
*** ayoung is now known as ayoung-ZzzZzzZzz03:54
*** lcheng has quit IRC04:01
*** lcheng has joined #openstack-keystone04:01
*** lcheng_ has joined #openstack-keystone04:03
*** lcheng has quit IRC04:03
*** lcheng_ has quit IRC04:06
*** lcheng has joined #openstack-keystone04:07
*** lcheng has quit IRC04:12
*** lcheng has joined #openstack-keystone04:24
*** lcheng has quit IRC04:27
*** lcheng has joined #openstack-keystone04:27
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Use importutils from oslo.utils  https://review.openstack.org/12611504:55
*** praneshp has joined #openstack-keystone04:59
*** praneshp_ has joined #openstack-keystone05:02
*** dimsum_ has joined #openstack-keystone05:03
*** praneshp has quit IRC05:05
*** praneshp_ is now known as praneshp05:05
*** junhongl has quit IRC05:08
*** dimsum_ has quit IRC05:08
*** harlowja is now known as harlowja_away05:27
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Use jsonutils from oslo.serialization  https://review.openstack.org/12611605:34
*** alex_xu has quit IRC05:34
*** gokrokve has joined #openstack-keystone05:35
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Use importutils from oslo.utils  https://review.openstack.org/12611505:36
*** henrynash has joined #openstack-keystone05:42
openstackgerritOpenStack Proposal Bot proposed a change to openstack/keystone: Imported Translations from Transifex  https://review.openstack.org/12495006:05
*** henrynash has quit IRC06:05
*** gokrokve has quit IRC06:12
stevemarbump06:13
*** 7F1ABGO3C has joined #openstack-keystone06:29
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Replace an instance of keystone/openstack/common/timeutils  https://review.openstack.org/12612506:34
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Use jsonutils from oslo.serialization  https://review.openstack.org/12611606:40
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Use importutils from oslo.utils  https://review.openstack.org/12611506:40
openstackgerritSteve Martinelli proposed a change to openstack/keystone: Replace an instance of keystone/openstack/common/timeutils  https://review.openstack.org/12612506:40
*** X019 has joined #openstack-keystone06:42
*** X019 has left #openstack-keystone06:48
*** dimsum_ has joined #openstack-keystone06:53
*** dimsum_ has quit IRC06:57
*** lcheng_ has joined #openstack-keystone07:03
*** lcheng_ has quit IRC07:07
*** lcheng has quit IRC07:07
*** lcheng has joined #openstack-keystone07:08
*** lcheng has quit IRC07:12
*** Dafna has joined #openstack-keystone07:36
*** stevemar has quit IRC07:40
*** junhongl has joined #openstack-keystone07:50
*** ekarlso has quit IRC07:59
*** ekarlso has joined #openstack-keystone07:59
*** praneshp_ has joined #openstack-keystone08:06
*** praneshp has quit IRC08:08
*** praneshp_ is now known as praneshp08:08
openstackgerritA change was merged to openstack/keystonemiddleware: Clean up the middleware docs  https://review.openstack.org/12570608:21
openstackgerritA change was merged to openstack/keystone: Remove images directory from docs  https://review.openstack.org/12570208:30
*** praneshp has quit IRC08:33
*** andreaf has quit IRC08:37
*** dimsum_ has joined #openstack-keystone08:42
*** dimsum_ has quit IRC08:47
*** andreaf has joined #openstack-keystone08:53
*** andreaf has quit IRC10:51
*** andreaf has joined #openstack-keystone10:52
*** andreaf has quit IRC11:05
*** andreaf has joined #openstack-keystone11:05
*** dimsum_ has joined #openstack-keystone11:48
*** dimsum_ has quit IRC11:53
*** andreaf has quit IRC12:14
*** andreaf has joined #openstack-keystone12:14
*** dimsum_ has joined #openstack-keystone12:21
*** 7F1ABGO3C has quit IRC12:35
*** Kui has quit IRC13:03
*** NM has joined #openstack-keystone13:05
*** NM has left #openstack-keystone13:11
*** andreaf has quit IRC13:43
*** andreaf has joined #openstack-keystone13:44
*** andreaf has quit IRC13:46
*** andreaf has joined #openstack-keystone13:47
*** andreaf has quit IRC14:03
*** andreaf has joined #openstack-keystone14:04
*** dimsum_ has quit IRC14:07
*** dimsum_ has joined #openstack-keystone14:07
*** dimsum_ has quit IRC14:11
*** richm has joined #openstack-keystone14:35
*** andreaf has quit IRC14:57
*** andreaf has joined #openstack-keystone14:58
*** dimsum_ has joined #openstack-keystone15:13
*** thedodd has joined #openstack-keystone16:17
*** HenryG_ is now known as HenryG16:18
*** r-daneel has joined #openstack-keystone16:21
*** dimsum_ has quit IRC16:24
*** gokrokve has joined #openstack-keystone16:34
*** andreaf has quit IRC16:43
*** andreaf has joined #openstack-keystone16:43
*** thedodd has quit IRC17:00
*** r-daneel has quit IRC17:07
*** gokrokve has quit IRC17:12
*** thedodd has joined #openstack-keystone17:12
*** gokrokve has joined #openstack-keystone17:13
*** gokrokve has quit IRC17:21
*** gokrokve has joined #openstack-keystone17:22
*** gokrokve has quit IRC17:26
*** thedodd has quit IRC17:31
*** stevemar has joined #openstack-keystone17:49
openstackgerritRodrigo Duarte proposed a change to openstack/python-keystoneclient: Explicit complaint about old OpenSSL when testing  https://review.openstack.org/12361917:51
*** sigmavirus24_awa is now known as sigmavirus2418:15
*** praneshp has joined #openstack-keystone18:44
*** richm has quit IRC18:45
*** andreaf has quit IRC18:56
*** andreaf has joined #openstack-keystone18:57
*** charz has quit IRC19:02
*** charz has joined #openstack-keystone19:05
*** david-lyle has joined #openstack-keystone19:09
*** david-lyle has quit IRC19:11
*** rm_work has quit IRC19:17
*** praneshp has quit IRC19:17
*** praneshp has joined #openstack-keystone19:20
*** andreaf has quit IRC19:46
*** andreaf has joined #openstack-keystone19:46
*** rm_work|away has joined #openstack-keystone19:50
*** rm_work|away is now known as rm_work19:51
*** rm_work has quit IRC19:51
*** rm_work has joined #openstack-keystone19:51
*** Kui has joined #openstack-keystone20:08
*** stevemar has quit IRC20:12
*** praneshp has quit IRC20:31
*** praneshp has joined #openstack-keystone20:31
*** praneshp has quit IRC20:33
*** diegows has joined #openstack-keystone20:40
*** dimsum_ has joined #openstack-keystone20:45
*** dimsum_ has quit IRC20:51
*** sigmavirus24 is now known as sigmavirus24_awa21:19
*** gokrokve has joined #openstack-keystone21:27
*** gokrokve has quit IRC21:32
*** lcheng has joined #openstack-keystone21:33
*** lcheng has quit IRC21:36
*** gokrokve has joined #openstack-keystone21:48
*** dimsum_ has joined #openstack-keystone22:02
*** rkofman has quit IRC22:07
*** dimsum_ has quit IRC22:07
*** rkofman has joined #openstack-keystone22:07
*** stevemar has joined #openstack-keystone22:15
*** andreaf has quit IRC22:21
*** andreaf has joined #openstack-keystone22:23
*** praneshp has joined #openstack-keystone22:24
*** andreaf has quit IRC22:34
*** gokrokve has quit IRC22:35
*** gokrokve_ has joined #openstack-keystone22:35
*** stevemar has quit IRC22:48
*** alex_xu has joined #openstack-keystone22:56
*** gokrokve has joined #openstack-keystone23:31
*** gokrokve has quit IRC23:32
*** sigmavirus24_awa is now known as sigmavirus2423:33
*** gokrokve_ has quit IRC23:34
*** sigmavirus24 is now known as sigmavirus24_awa23:35
*** gokrokve has joined #openstack-keystone23:36
*** gokrokve has quit IRC23:40
*** PsionTheory has joined #openstack-keystone23:41
*** dimsum_ has joined #openstack-keystone23:51
*** dimsum_ has quit IRC23:55
*** dimsum_ has joined #openstack-keystone23:56
*** PsionTheory has quit IRC23:57

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