Tuesday, 2016-10-18

*** lamt has quit IRC00:00
*** markvoelker has joined #openstack-keystone00:01
jamielennoxstevemar, ayoung: easy +A https://review.openstack.org/#/c/387415/00:01
ayoungjamielennox, so...what if we wanted to push for enforcing policy on the URLs instead of on the function names00:02
jamielennoxayoung: right - so agree and it depends00:02
ayoungjamielennox, would love to have it in two parts00:02
*** hogepodge has quit IRC00:02
jamielennoxayoung: doing it properly from middleware is basically impossible when we have target dicts00:02
ayoungone pre and one post00:02
ayoungpre happens in middleware00:02
ayoungpost (target dicts) will be done this way, or in code00:03
ayounglike Nova00:03
ayoung+2a on that00:03
jamielennoxdoing pre the problem is going to be url->name but i'm sure we can figure that out00:03
jamielennoxwhatever we push for is going to need a transition period00:04
ayoungjamielennox, I was thinkg we could probably autogenerate the policy for those from the routers00:04
jamielennoxayoung: nova did a whole bunch of stuff around autogenerating this stuff - i don't think we get to do that again00:04
ayoungwe take what they did, move it to oslo-something and reuse it00:05
jamielennoxwell it'll be oslo.policy but ya00:05
jamielennoxi don't really know how to use their new syntax00:06
ayoungmost of their rules do not care about the actual role.  THe URL based stuff should say the role00:06
ayoungtheirs is all admin_or_owner or admin_api00:06
*** markvoelker has quit IRC00:06
ayoungso at the router level, we just get to default to cloud_admin, project_admin, or Member.  And then the deployers would go more specific00:07
*** hogepodge has joined #openstack-keystone00:08
*** david-lyle has quit IRC00:09
jamielennoxso yea, i guess that's longer term than what i'm thinking but working in that direction, for now it'd be nice to at least be able to change a function name00:15
jamielennoxor prevent that pattern of "if flag: call one protected function else: call another protected function00:15
openstackgerritEric Brown proposed openstack/keystone: Follow-on of memcache token persistence removal  https://review.openstack.org/38773000:20
*** hogepodge has quit IRC00:20
openstackgerritJesse Keating proposed openstack/keystone: Add healthcheck middleware to pipelines  https://review.openstack.org/38773100:21
*** hogepodge has joined #openstack-keystone00:21
*** david-lyle has joined #openstack-keystone00:21
*** gyee has quit IRC00:25
openstackgerritJamie Lennox proposed openstack/keystoneauth: Show deprecation warning and limit features for KSC session  https://review.openstack.org/38773300:28
openstackgerritJamie Lennox proposed openstack/keystoneauth: Allow setting client_name, client_version on adapter  https://review.openstack.org/38773400:28
*** david-lyle has quit IRC00:29
openstackgerritJamie Lennox proposed openstack/keystoneauth: Allow setting client_name, client_version on adapter  https://review.openstack.org/38773400:30
*** david-lyle has joined #openstack-keystone00:31
openstackgerritJesse Keating proposed openstack/keystone: Add healthcheck middleware to pipelines  https://review.openstack.org/38773100:33
jlkjamielennox: as I was comparing upstream paste to what we've got downstream, I realized I had meant to submit this a while ago, and forgot: https://review.openstack.org/38773100:34
*** david-lyle has quit IRC00:34
jamielennoxjlk: yea, i had noticed that one as well00:35
jlkI didn't write a spec, is that okay, or should I do a spec first?00:35
*** david-lyle has joined #openstack-keystone00:35
morganjlk: eh...00:36
morganSpec is nice but might be ok do to after the fact if needed.00:36
jlkThere's a spec that was done for glance, I could copy it pretty easily for keystone00:36
morganYou can always ask for a no spec exemption.00:36
jlkI plan to do the same for Nova, Heat, Neutron, etc...00:36
*** haplo37_ has quit IRC00:36
morganThen do that if it is easy00:37
morganSpec never hurts short of slowing things down a bit.00:37
jamielennoxjlk: meh, if there was a cross project one it'd be useful, but not just for us00:37
jamielennoxprobably more a bug than a spec00:37
jamielennoxjlk: my -1 on that would be for config in the paste.ini which is not something we really do00:38
morganYes don't out config in paste.ini00:38
jlkI could take that config line out, and leave it up to operators, but that's how the middleware is configured :/00:38
morganI would -2 that.00:38
morganFwiw00:38
jamielennoxmost middleware can also be configured via oslo.config and we would just need to make sure that the group is included in the sample config00:38
*** haplo37_ has joined #openstack-keystone00:39
morganConfig in paste is bad.00:39
jlkhttp://docs.openstack.org/developer/oslo.middleware/healthcheck_plugins.html00:39
morganjamielennox: ++00:39
morganjlk: I'd argue Oslo is broken then.00:39
morganLike really broken. If you can't configure it in the main config it is wrong.00:39
jamielennoxjlk: it's one of https://github.com/openstack/oslo.middleware/blob/master/oslo_middleware/base.py#L36 horrible things00:39
morganWedging config unto paste.ini is -2 worthy in my book00:40
jamielennoxso docs advocate one thing, but you can do it the other way00:40
morganjamielennox: we should fix those doc's.00:40
jamielennoxalthough looking at that paste.ini would be the only way to modify per path00:40
morganThey are wrong on so many levels.00:41
jamielennoxi don't know how you'd configure different disable_by_file_path per filter with oslo.config00:41
*** maticue has quit IRC00:42
jamielennoxlol - of course they never added healthcheck to the oslo.config opts that are exposed00:42
*** gagehugo has joined #openstack-keystone00:43
jlkso... I could take out the config line in my change request, and point out in the doc that configuration _could_ be added downstream00:44
jlkwould that still get -2?00:44
jamielennoxjlk: it's fine to include the middleware in the pipeline (assuming that's a standard thing now), we just don't want to ship config in upstream paste.ini00:45
jamielennoxhow downstream actually configures it is up to them00:45
jlkkk00:45
morganjlk: what jamielennox  said. Shipping config in paste ini is the issue.00:45
jlkI'll adjust00:45
jamielennoxjlk: assuming healtcheck in paste is pretty standard now? i would think it'd only be useful in fairly specific deploy scenarios?00:45
jlkWell, it's useful for anybody putting services behind a load balancer00:46
jlkhaproxy in our case00:46
jlkor an f5 or whatever00:46
openstackgerritMerged openstack/keystoneauth: Prevent changing content type in request  https://review.openstack.org/38741500:46
jlkfor keystone, it's also useful for like mod_status or whathaveyou00:46
jamielennoxbeing basically that you'd use it for some internal monitoring and load balancing, but you'd want config to limit that to internal requests some how?00:46
*** david-lyle has quit IRC00:47
jlkI see it as an alternative to just hitting the versions url (/)00:47
jlksomething that could be consistent across the services00:47
jlkWe also use it for our monitoring (sensu) of the service00:48
*** david-lyle has joined #openstack-keystone00:48
jamielennoxyep, just wondering if it's a) a problem to let the world readable, b) appropriate for the default install00:48
jlkI can't see how it would be a problem to be world readable00:48
jamielennoxmorgan: also, joy of joys, you actually can't configure healthcheck via oslo.config, they seem to be explicitly grabbing options from paste00:49
*** guoshan has quit IRC00:49
jamielennoxjlk: ok, cool00:49
morganjamielennox: well then my view is that should never be allowed in keystone.00:49
morganjamielennox: but seeing as I spend less time on OpenStack today... I won't fight too hard.00:50
*** david-lyle has quit IRC00:51
openstackgerritJesse Keating proposed openstack/keystone: Add healthcheck middleware to pipelines  https://review.openstack.org/38773100:52
*** david-lyle has joined #openstack-keystone00:52
*** hoangcx has joined #openstack-keystone00:54
*** david-lyle has quit IRC00:59
*** david-lyle has joined #openstack-keystone01:00
*** jamielennox is now known as jamielennox|away01:01
*** lifeless has quit IRC01:02
*** lifeless has joined #openstack-keystone01:02
*** david-lyle has quit IRC01:05
*** tqtran has quit IRC01:05
*** asettle has joined #openstack-keystone01:06
*** david-lyle has joined #openstack-keystone01:06
*** Zer0Byte__ has quit IRC01:07
*** david-lyle has quit IRC01:07
*** jamielennox|away is now known as jamielennox01:08
*** asettle has quit IRC01:10
*** david-lyle has joined #openstack-keystone01:13
*** david-lyle has quit IRC01:14
*** david-lyle has joined #openstack-keystone01:15
*** hogepodge has quit IRC01:16
openstackgerritEric Brown proposed openstack/keystone: More configuration doc edits  https://review.openstack.org/38774201:16
*** david-lyle has quit IRC01:19
*** LiYuenan has joined #openstack-keystone01:19
*** david-lyle has joined #openstack-keystone01:20
*** browne has quit IRC01:21
*** david-lyle has quit IRC01:21
*** guoshan has joined #openstack-keystone01:21
*** david-lyle has joined #openstack-keystone01:23
*** david-lyle has quit IRC01:24
openstackgerritMerged openstack/keystone: Enable release notes translation  https://review.openstack.org/38322301:25
*** david-lyle has joined #openstack-keystone01:25
*** davechen has joined #openstack-keystone01:26
*** trananhkma has joined #openstack-keystone01:30
*** david-lyle has quit IRC01:32
*** david-lyle has joined #openstack-keystone01:34
*** wangqun has joined #openstack-keystone01:35
*** hogepodge has joined #openstack-keystone01:35
*** david-lyle has quit IRC01:37
*** david-lyle has joined #openstack-keystone01:38
*** david-lyle has quit IRC01:38
*** trananhkma_ has joined #openstack-keystone01:41
*** trananhkma has quit IRC01:41
*** stack_ has quit IRC01:41
*** trananhkma_ is now known as trananhkma01:42
*** david-lyle has joined #openstack-keystone01:44
*** david-lyle has quit IRC01:44
*** david-lyle has joined #openstack-keystone01:45
*** david-lyle has quit IRC01:46
*** david-lyle has joined #openstack-keystone01:46
*** david-lyle has quit IRC01:47
*** trananhkma has quit IRC01:50
*** trananhkma has joined #openstack-keystone01:50
*** trananhkma has quit IRC01:50
*** trananhkma has joined #openstack-keystone01:51
*** david-lyle has joined #openstack-keystone01:56
*** david-lyle has quit IRC01:57
*** david-lyle has joined #openstack-keystone01:58
*** david-lyle has quit IRC02:00
*** david-lyle has joined #openstack-keystone02:01
*** david-lyle has quit IRC02:02
*** david-lyle has joined #openstack-keystone02:02
*** markvoelker has joined #openstack-keystone02:03
*** david-lyle has quit IRC02:03
*** david-lyle has joined #openstack-keystone02:04
*** david-lyle has quit IRC02:04
*** david-lyle has joined #openstack-keystone02:05
*** david-lyle has quit IRC02:05
*** david-lyle has joined #openstack-keystone02:07
*** markvoelker has quit IRC02:08
*** david-lyle has quit IRC02:08
*** david-lyle has joined #openstack-keystone02:10
*** david-lyle has quit IRC02:11
*** david-lyle has joined #openstack-keystone02:12
*** namnh has joined #openstack-keystone02:12
*** david-lyle has quit IRC02:14
trananhkmaHi fork, I am going to test rolling upgrade for keystone.02:16
trananhkmaIn last 2 weeks, after upgrade keystone from mitaka to neuton, I just tested Keystone with some commands, but I think that it's not ennough (not cover all cases) to ensure OpenStack worked well after upgraded.02:17
*** david-lyle has joined #openstack-keystone02:17
stevemartrananhkma: cool, let us know if we can help02:17
*** david-lyle has quit IRC02:18
trananhkmaSo, I tried to find a tool to help me cover all cases, I found Grenade.02:18
trananhkmaBut, When I looking to the source code of Grenade, I saw that it just be scripts to do Rolling-upgrade and create some resources.02:18
*** david-lyle has joined #openstack-keystone02:18
trananhkmaIs it ennough to ensure OpenStack worked well?02:19
*** david-lyle has quit IRC02:19
trananhkmaBTW, do you have any suggestion for me to test Rolling-upgrade? Somethings like functionals test or unit test, which I can cover all the cases.02:19
*** AndyWojo has quit IRC02:19
trananhkmastevemar, hello :) could you give me any suggestion?02:20
*** david-lyle has joined #openstack-keystone02:20
stevemartrananhkma: when testing he upgrade, how did you do it?02:20
stevemartrananhkma: did you follow the steps here: http://docs.openstack.org/developer/keystone/upgrading.html#upgrading-without-downtime ?02:21
stevemarspecifically... keystone-manage db_sync --expand ; keystone-manage db_sync --migrate; keystone-manage db_sync --contract ?02:21
*** david-lyle has quit IRC02:21
trananhkmastevemar, yes, I did02:21
trananhkmastevemar, but I want to makesure OpenStack worked well02:22
stevemartrananhkma: did you have any credentials created? the ones created with /v3/credentials?02:22
trananhkmayes I tried02:22
*** AndyWojo has joined #openstack-keystone02:23
stevemari think a good test would be creating credentials while the ``keystone-manage db_sync --migrate`` step is running02:23
stevemarthe only tricky part about the rolling upgrade for M->N is that we encrypted existing credentials02:24
stevemarso it would be good to see what happens if new credentials are created while we're going through the encryption process02:24
stevemarthe encryption process occurs when you do the --migrate command02:25
*** david-lyle has joined #openstack-keystone02:26
*** dave-mccowan has quit IRC02:26
trananhkmastevemar, yes, I see, but do we have any test tool - like unit test, which we can cover all cases? include other projects02:27
stevemartrananhkma: not that i know of :(02:28
jamielennoxjlk, morgan: because i'm a sucker: https://review.openstack.org/#/c/387752/02:32
trananhkmastevemar, I already tried like your suggestion, but I afraid that we can missed something, so I want to find an official tool which can do that. thank you :)02:32
stevemarjamielennox: hehe02:32
stevemarjamielennox: i think you mean "because I'm awesome"02:32
jamielennoxstevemar: depends on your point of view i gues02:32
jamielennoxstevemar: awesome could be getting some sucker to deal with problems02:33
jamielennoxstevemar: you've already +2ed it, but https://review.openstack.org/#/c/387733/ sunk my user_agent plans02:34
*** hogepodge has quit IRC02:40
openstackgerritDave Chen proposed openstack/keystone: [api-ref]Remove the duplicated sample  https://review.openstack.org/38775802:40
openstackgerritDave Chen proposed openstack/keystone: [api-ref] Remove the duplicated sample  https://review.openstack.org/38775802:41
stevemarjamielennox: we can release another version soon02:55
*** sheel has joined #openstack-keystone02:55
*** jamielennox is now known as jamielennox|away03:01
*** phalmos has joined #openstack-keystone03:03
*** hogepodge has joined #openstack-keystone03:04
*** gagehugo has quit IRC03:22
*** david-lyle has quit IRC03:23
*** david-lyle has joined #openstack-keystone03:24
*** david-lyle has quit IRC03:25
*** david-lyle has joined #openstack-keystone03:26
*** david-lyle has quit IRC03:27
*** david-lyle has joined #openstack-keystone03:28
*** david-lyle has quit IRC03:29
*** david-lyle has joined #openstack-keystone03:30
openstackgerritRon De Rose proposed openstack/keystone: Validate mapping exists when creating/updating a protocol  https://review.openstack.org/36239703:31
*** david-lyle has quit IRC03:33
*** jamielennox|away is now known as jamielennox03:33
openstackgerritRon De Rose proposed openstack/keystone: Validate mapping exists when creating/updating a protocol  https://review.openstack.org/36239703:34
*** david-lyle has joined #openstack-keystone03:34
*** links has joined #openstack-keystone03:35
*** david-lyle has quit IRC03:36
*** phalmos has quit IRC03:44
*** browne has joined #openstack-keystone03:45
openstackgerritPraveen N proposed openstack/keystone: changed domain id to name in JSON request  https://review.openstack.org/38716203:45
*** david-lyle has joined #openstack-keystone03:46
*** david-lyle has quit IRC03:46
*** browne has quit IRC03:48
*** david-lyle has joined #openstack-keystone03:50
*** david-lyle has quit IRC03:51
*** code-R has joined #openstack-keystone03:52
*** david-lyle has joined #openstack-keystone03:53
*** david-lyle has quit IRC03:54
*** code-R_ has joined #openstack-keystone03:54
*** david-lyle has joined #openstack-keystone03:55
*** david-lyle has quit IRC03:55
*** tqtran has joined #openstack-keystone03:57
*** david-lyle has joined #openstack-keystone03:57
*** code-R has quit IRC03:57
*** david-lyle has quit IRC03:57
*** guoshan has quit IRC03:58
*** david-lyle has joined #openstack-keystone03:58
*** david-lyle has quit IRC03:59
*** david-lyle has joined #openstack-keystone04:00
*** david-lyle has quit IRC04:01
*** david-lyle has joined #openstack-keystone04:01
*** phalmos has joined #openstack-keystone04:03
*** david-lyle has quit IRC04:04
*** david-lyle has joined #openstack-keystone04:04
*** markvoelker has joined #openstack-keystone04:04
*** david-lyle has quit IRC04:05
*** david-lyle has joined #openstack-keystone04:06
openstackgerritMerged openstack/keystone: More configuration doc edits  https://review.openstack.org/38774204:08
*** david-lyle has quit IRC04:08
*** markvoelker has quit IRC04:09
*** david-lyle has joined #openstack-keystone04:10
*** david-lyle has quit IRC04:11
*** haplo37_ has quit IRC04:11
*** david-lyle has joined #openstack-keystone04:12
*** david-lyle has quit IRC04:13
*** haplo37_ has joined #openstack-keystone04:13
*** david-lyle has joined #openstack-keystone04:14
*** david-lyle has quit IRC04:15
*** david-lyle has joined #openstack-keystone04:15
*** david-lyle has quit IRC04:16
*** david-lyle has joined #openstack-keystone04:17
*** phalmos has quit IRC04:18
*** david-lyle has quit IRC04:18
*** david-lyle has joined #openstack-keystone04:19
*** david-lyle has quit IRC04:20
*** flwang1 has quit IRC04:20
*** david-lyle has joined #openstack-keystone04:21
*** code-R_ has quit IRC04:30
*** GB21 has joined #openstack-keystone04:34
*** markvoelker has joined #openstack-keystone04:41
*** markvoelker_ has joined #openstack-keystone04:42
*** markvoelker has quit IRC04:45
*** flwang1 has joined #openstack-keystone04:56
*** markvoelker_ has quit IRC04:58
*** dancn has quit IRC05:04
openstackgerritEric Brown proposed openstack/keystone: Follow-on of memcache token persistence removal  https://review.openstack.org/38773005:05
*** sc68cal has quit IRC05:07
*** markvoelker has joined #openstack-keystone05:13
*** adriant has quit IRC05:14
*** markvoelker_ has joined #openstack-keystone05:14
*** code-R has joined #openstack-keystone05:17
*** agireud has quit IRC05:17
*** markvoelker has quit IRC05:18
*** jaosorior has joined #openstack-keystone05:18
*** agireud has joined #openstack-keystone05:26
*** code-R has quit IRC05:27
*** tqtran has quit IRC05:32
*** code-R has joined #openstack-keystone05:33
*** namnh has quit IRC05:35
*** richm has quit IRC05:41
*** markvoelker_ has quit IRC05:45
*** chlong has quit IRC05:47
bretonmorning, keystone05:55
*** rcernin has joined #openstack-keystone06:01
*** links has quit IRC06:01
*** chlong has joined #openstack-keystone06:01
openstackgerritMerged openstack/keystone: changed domain id to name in JSON request  https://review.openstack.org/38716206:04
*** sc68cal has joined #openstack-keystone06:06
*** pcaruana has joined #openstack-keystone06:18
*** code-R has quit IRC06:18
*** kiran-r has joined #openstack-keystone06:20
*** voelzmo has joined #openstack-keystone06:21
*** hogepodge has quit IRC06:30
*** jdennis has quit IRC06:38
*** jdennis has joined #openstack-keystone06:43
*** code-R has joined #openstack-keystone06:45
*** belmoreira has joined #openstack-keystone06:47
*** tesseract has joined #openstack-keystone07:03
*** tesseract is now known as Guest8585507:03
*** odyssey4me has quit IRC07:16
*** kiran-r has quit IRC07:16
*** amoralej|off is now known as amoralej07:16
*** jlwhite has quit IRC07:16
*** clayton has quit IRC07:16
*** pnavarro has joined #openstack-keystone07:16
*** evrardjp has quit IRC07:17
*** antwash has quit IRC07:17
*** nkinder has quit IRC07:18
*** jlwhite has joined #openstack-keystone07:18
*** odyssey4me has joined #openstack-keystone07:18
*** antwash has joined #openstack-keystone07:19
*** clayton has joined #openstack-keystone07:19
*** nkinder has joined #openstack-keystone07:20
*** evrardjp has joined #openstack-keystone07:20
*** belmoreira has quit IRC07:34
*** hogepodge has joined #openstack-keystone07:40
*** code-R has quit IRC07:43
*** belmoreira has joined #openstack-keystone07:52
*** haplo37_ has quit IRC07:56
*** haplo37_ has joined #openstack-keystone07:58
*** zzzeek has quit IRC08:00
*** zzzeek has joined #openstack-keystone08:01
*** openstackgerrit has quit IRC08:04
*** openstackgerrit has joined #openstack-keystone08:04
openstackgerritRoman Bogorodskiy proposed openstack/python-keystoneclient: Allow send null value in extra properties  https://review.openstack.org/37523908:05
openstackgerritRoman Bogorodskiy proposed openstack/python-keystoneclient: Allow send null value in extra properties  https://review.openstack.org/37523908:20
openstackgerritDave Chen proposed openstack/keystone: [api-ref] Remove the duplicated sample  https://review.openstack.org/38775808:40
*** asettle has joined #openstack-keystone08:55
*** markvoelker has joined #openstack-keystone08:57
*** dancn has joined #openstack-keystone09:02
*** GB21 has quit IRC09:03
*** openstackgerrit has quit IRC09:04
*** openstackgerrit has joined #openstack-keystone09:04
*** voelzmo has quit IRC09:10
*** GB21 has joined #openstack-keystone09:14
*** code-R has joined #openstack-keystone09:17
*** asettle has quit IRC09:20
*** asettle has joined #openstack-keystone09:21
*** voelzmo has joined #openstack-keystone09:31
*** code-R has quit IRC09:32
*** markvoelker has quit IRC09:38
*** markvoelker has joined #openstack-keystone09:38
*** markvoelker has quit IRC09:40
*** beddari1 is now known as beddari09:41
*** jaosorior has quit IRC09:42
*** jaosorior has joined #openstack-keystone09:42
*** asettle has quit IRC09:49
*** code-R has joined #openstack-keystone09:53
*** asettle has joined #openstack-keystone09:54
*** code-R_ has joined #openstack-keystone09:55
*** thebloggu has joined #openstack-keystone09:56
*** asettle has quit IRC09:57
*** asettle has joined #openstack-keystone09:57
*** asettle has quit IRC09:58
*** code-R has quit IRC09:58
*** davechen has left #openstack-keystone09:59
*** asettle has joined #openstack-keystone10:00
*** mvk has quit IRC10:01
openstackgerritRoman Bogorodskiy proposed openstack/python-keystoneclient: Allow send null value in extra properties  https://review.openstack.org/37523910:06
openstackgerritRoman Bogorodskiy proposed openstack/python-keystoneclient: Allow send null value in extra properties  https://review.openstack.org/37523910:07
*** richm has joined #openstack-keystone10:09
*** belmoreira has quit IRC10:23
*** trananhkma has quit IRC10:32
*** hoangcx has quit IRC10:33
*** nicolasbock has joined #openstack-keystone10:34
*** phalmos has joined #openstack-keystone10:34
*** code-R_ has quit IRC10:35
openstackgerritChangBo Guo(gcb) proposed openstack/oslo.policy: Add missing parameter description in module _cache_handler  https://review.openstack.org/38791710:35
*** code-R has joined #openstack-keystone10:35
*** wangqun has quit IRC10:36
openstackgerritMerged openstack/keystone: [api-ref] Remove the duplicated sample  https://review.openstack.org/38775810:37
*** phalmos has quit IRC10:42
*** chlong has quit IRC10:46
*** guoshan has joined #openstack-keystone10:46
*** code-R has quit IRC10:50
*** aswadr_ has joined #openstack-keystone11:03
*** mvk has joined #openstack-keystone11:04
*** haplo37_ has quit IRC11:10
*** markvoelker has joined #openstack-keystone11:10
*** haplo37_ has joined #openstack-keystone11:12
*** code-R has joined #openstack-keystone11:15
*** asettle has quit IRC11:21
*** belmoreira has joined #openstack-keystone11:27
*** guoshan has quit IRC11:28
*** code-R has quit IRC11:30
*** ayoung has quit IRC11:34
*** code-R has joined #openstack-keystone11:37
*** guoshan has joined #openstack-keystone11:37
*** code-R_ has joined #openstack-keystone11:39
*** code-R has quit IRC11:42
*** alex_xu_ has quit IRC11:50
*** alex_xu has joined #openstack-keystone11:51
*** markvoelker has quit IRC11:56
*** qwertyco has joined #openstack-keystone12:04
*** dave-mccowan has joined #openstack-keystone12:10
*** markvoelker has joined #openstack-keystone12:12
*** edmondsw has joined #openstack-keystone12:16
*** maticue has joined #openstack-keystone12:20
*** asettle has joined #openstack-keystone12:25
*** code-R_ has quit IRC12:30
*** raildo has joined #openstack-keystone12:30
*** code-R has joined #openstack-keystone12:31
*** GB21 has quit IRC12:41
*** amoralej is now known as amoralej|lunch12:43
*** code-R has quit IRC12:51
*** markvoelker has quit IRC12:53
*** code-R has joined #openstack-keystone12:53
*** guoshan has quit IRC12:56
*** ayoung has joined #openstack-keystone13:01
*** ChanServ sets mode: +v ayoung13:01
*** jaosorior is now known as jaosorior_mtg13:04
*** guoshan has joined #openstack-keystone13:12
*** jperry has joined #openstack-keystone13:17
*** markvoelker has joined #openstack-keystone13:19
*** dikonoor has joined #openstack-keystone13:20
*** jrist has quit IRC13:22
*** dikonoor has quit IRC13:22
*** dikonoor has joined #openstack-keystone13:22
*** jrist has joined #openstack-keystone13:22
*** guoshan has quit IRC13:23
*** code-R has quit IRC13:23
*** code-R has joined #openstack-keystone13:23
*** jrist has quit IRC13:24
lbragstado/13:29
*** jrist has joined #openstack-keystone13:30
dstanekmorning13:32
*** LamT__ has joined #openstack-keystone13:34
*** jaugustine has joined #openstack-keystone13:38
*** amoralej|lunch is now known as amoralej13:44
*** jaosorior_mtg is now known as jaosorior13:46
*** code-R_ has joined #openstack-keystone13:57
*** mvk has quit IRC13:58
*** code-R has quit IRC14:00
*** Guest62846 is now known as med_14:00
*** med_ has quit IRC14:00
*** med_ has joined #openstack-keystone14:00
*** gagehugo has joined #openstack-keystone14:00
*** asettle has quit IRC14:00
*** asettle has joined #openstack-keystone14:02
-openstackstatus- NOTICE: We are away of pycparser failures in the gate and working to address the issue.14:05
*** haplo37_ has quit IRC14:12
*** ravelar has joined #openstack-keystone14:13
openstackgerritGage Hugo proposed openstack/keystone: Doctor check for LDAP domain specific configs  https://review.openstack.org/36143514:14
*** haplo37_ has joined #openstack-keystone14:15
*** jaosorior has quit IRC14:16
*** qwertyco has quit IRC14:17
*** hoonetorg has quit IRC14:28
*** dikonoor has quit IRC14:30
*** markvoelker has quit IRC14:34
*** michauds has joined #openstack-keystone14:40
knikollamorning14:40
knikollaanyone got any resources on how to setup k2k with mod_auth_mellon?14:41
*** gagehugo_ has joined #openstack-keystone14:41
*** asettle has quit IRC14:42
*** gagehugo has quit IRC14:43
*** chris_hultin|AWA is now known as chris_hultin14:43
ayoungstevemar, so, everyone went and added "[resource]/n admin_project_name = admin/n admin_project_domain_name = Default/n" to their tempest setups, but we didn't enforce on it.  Now that I am trying to actually get changes in that use it, it turns out they all did it wrong.  Bass Ackwards14:46
ayoungIs that devstack...14:46
ayoungor tempest?14:46
ayounghttps://review.openstack.org/#/c/257636/14:46
*** gagehugo has joined #openstack-keystone14:50
*** agrebennikov has joined #openstack-keystone14:52
*** gagehugo_ has quit IRC14:52
*** gagehugo has quit IRC14:54
knikollarodrigods, hi14:56
*** bjolo has quit IRC14:57
*** bjolo has joined #openstack-keystone14:59
ayoungknikolla, he's travelling, might not actually be on15:01
ayoungknikolla, no one I know of has tried K2k with mod_auth_mellon15:01
gsilvisayoung: it's awkward, because centos/redhat don't really support shibboleth, and that's all people have done K2K with, it seems15:02
knikollaayoung, thanks. thought so.15:02
ayounggsilvis, the Keystone side should be the same as regular Federation, though, right?15:02
ayounger15:02
ayoungthe keystone-as-service-provider15:02
gsilvisMy understanding is that it's similar, but ECP causes problems15:03
ayounggsilvis, we have ECP working with mellon15:03
ayoungdo you have a test setup?15:03
knikollaayoung, i keep getting gsilvis, this is the error i'm getting: Could not find a supported SingleSignOnService endpoint for the IdP "http://192.168.0.13:5000/v3/OS-FEDERATION/saml2/idp"15:03
knikollai keep getting:15:03
knikolla^^15:03
ayoung"http://192.168.0.13:5000/v3/OS-FEDERATION/saml2/idp  looks ,like a strange url15:04
ayoungshouldn't it be like15:04
ayounghttp://192.168.0.13:5000/v3/OS-FEDERATION/idp/keystone/protocol/saml215:05
*** mvk has joined #openstack-keystone15:06
knikollaayoung, thats the IdP remote_id. as specified here http://docs.openstack.org/developer/keystone/federation/federated_identity.html?highlight=federation#configuration-options15:07
knikollaer, entity_id15:08
ayoungknikolla, is that covered by a config option in the httpd.c/*conf file you are using?  Can you paste that conf file?15:08
*** BrAsS_mOnKeY is now known as g2`15:09
knikollaayoung, http://paste.openstack.org/show/nUlAQh8YRYPoHPExiZTl/ i tried both IdP as dsvm-idp and as the url specified above.15:09
ayoungknikolla, I don't see one that matches15:11
ayoung WSGIScriptAliasMatch ^(/v3/OS-FEDERATION/identity_providers/.*?/protocols/.*?/auth)$ /var/www/keystone/main/$115:11
ayoungknikolla, to debug, add in a stanza like the one under that, but with the AliasMatch like your full URL15:11
ayoungactually...I don't like that15:12
ayoung<VirtualHost *:5000>  is too specific15:12
ayoungmake it a Location one15:12
ayoungalthough <Location /v3>  should match it, I think15:13
gsilviswe have both horizon and keystone running on this apache---don't we need to make sure it only matches on the keystone ports?15:14
ayounggsilvis, meh15:14
knikollaayoung, it does match, as i see mellon loading the correct idp metadata (it complains when it doesn't saying)15:14
knikolla* couldn't find IdP)15:15
*** adrian_otto has joined #openstack-keystone15:16
*** nicolasbock has quit IRC15:16
knikollaayoung, if they're helpful. sp metadata http://paste.openstack.org/show/AHfm1DZ2AVS2dim4CeCu/ and idp metadata http://paste.openstack.org/show/mJM76lc9R06jVVY2ifpG/15:19
*** sheel has quit IRC15:20
*** nicolasbock has joined #openstack-keystone15:21
ayoungknikolla, I don;t see a SingleSignOnService entry in there, but it is hard to read15:22
ayoung<ns0:SingleSignOnService Binding="urn:oasis:names:tc:SAML:2.0:bindings:URI" Location="http://192.168.0.13:5000/v3/OS-FEDERATION/saml2/sso" />15:22
ayoungah, maybe IP address versus FQDN?15:22
ayoungsso15:22
ayoungsaml2/sso15:22
*** edtubill has joined #openstack-keystone15:23
knikollaayoung, i don't think it matters. but i don't have any other ideas. worth a try.15:24
ayoungknikolla, so change the keystone config for the endpoint to be that URL15:25
ayoungor change the metadata to generate the URL that you are using15:25
ayoungits a string match, and it is not matching15:25
knikollaayoung, roger. i'll try that. thanks for the support.15:28
ayoungWho is this roger guy and why does he get all my credit?15:34
gsilvisdo we have clearance, clarence?15:35
ayoungWhat's your vector, Victor?15:35
* knikolla shrugs15:36
ayoungknikolla, shared cultural references http://www.imdb.com/title/tt0080339/quotes15:36
gsilvisI still can't believe they managed to make that movie in 198015:37
knikollaI still can't believe i haven't seen that movie15:39
*** asettle has joined #openstack-keystone15:39
ayoungI was 9.  You were -915:39
ayounghttps://www.youtube.com/watch?v=NfDUkR3DOFw15:41
*** Zer0Byte__ has joined #openstack-keystone15:42
gsilvisI was -12!15:43
*** belmoreira has quit IRC15:44
ayoungI'm sure I didn't get to see until I was at least 12.15:44
knikollanever too late to watch classic movies.15:47
knikollaayoung, when are you flying to barcelona?15:47
ayoungknikolla, Friday night15:47
*** adrian_otto has quit IRC15:48
knikollaayoung, cool, that's quite early. we're flying sunday afternoon.15:48
*** mugsie has quit IRC15:50
*** scarlisle has joined #openstack-keystone15:52
scarlisleo/15:53
scarlisleAnyone in here familiar with Keystone federation and CORS?15:57
*** adrian_otto has joined #openstack-keystone15:59
*** gagehugo has joined #openstack-keystone16:01
*** voelzmo has quit IRC16:05
*** gagehugo has quit IRC16:06
*** gagehugo has joined #openstack-keystone16:06
-openstackstatus- NOTICE: pycparser 2.16 released to fix assertion error from today.16:11
*** clenimar has joined #openstack-keystone16:13
knikollaayoung, what should be the sp_url and auth_url when registering the service provider?16:17
ayoungknikolla, auth_url is the /v3 Keystone16:17
*** browne has joined #openstack-keystone16:17
ayoungknikolla, er, and for k2k it is the keystone as the sp16:17
ayoungfo sp_url...duh....16:18
ayoungnot sure16:18
ayoungwhat does the K2k doc say?16:18
*** markvoelker has joined #openstack-keystone16:19
knikollaayoung, http://docs.openstack.org/developer/keystone/federation/federated_identity.html?highlight=federation#create-a-service-provider-sp16:21
knikollaquoting: In this example we are creating a new Service Provider with an ID of mysp, a sp_url of http://mysp.example.com/Shibboleth.sso/SAML2/ECP and a auth_url of http://mysp.example.com:5000/v3/OS-FEDERATION/identity_providers/myidp/protocols/mapped/auth .16:21
*** gagehugo has quit IRC16:21
ayoungknikolla, I've never done K2K. gsilvis would know better than I16:22
gsilvisuh-oh16:23
knikollaayoung, logs from the client http://paste.openstack.org/show/NyijxOIliO3kfivrOmoR/16:24
knikollaayoung, mod_auth_mellon does a 303, and then 50016:24
gsilvisI'm pretty sure knikolla has more experience than me by now... which is why I was really hoping rodrigods would be available16:25
ayoungknikolla, I take it you need this for a demo next week, too16:25
*** Guest85855 has quit IRC16:25
*** gagehugo has joined #openstack-keystone16:25
gsilvisayoung: ideally, yeah16:25
gsilvisI'm working on throwing together some shibboleth packages that work on centos, but I'm ont sure how well it'll go16:25
gsilvis/hopefully/ just rebuilding the opensuse packages should work16:26
ayoungSOK, so there are 2 Keystone, one is the IdP, the other is the SP16:26
ayoungthe call you are making is on the IDP Keystone, to create the SP entry in its database16:26
ayoungand the path should be where the /ECP URL will be in the final location.16:27
ayoungJudging by the Doc, that URL should be something in the SP KEystone path like16:27
*** dikonoor has joined #openstack-keystone16:28
ayoungGod that doc is confusing16:28
*** ganesh_ has joined #openstack-keystone16:31
ganesh_join #openstack16:31
ayoungOk, so I don't know how the ECP URL is created. I don;t think that is SHib or Mellon, but rather something done in Python code16:31
ayoungganesh_, need a slash...16:32
*** code-R_ has quit IRC16:32
ayoungknikolla, I have to be honest.  I don't know this.;16:34
ganesh_ayoung I am facing some problem while installing kilo versioned keystone component on Ubuntu 14.04 from this http://docs.openstack.org/kilo/install-guide/install/apt/content/keystone-services.html16:39
ayoungganesh_, I'm not an Ubuntu guy16:40
ayoungsuspect you have library versioning issues, as Kilo is kindof old.16:40
ganesh_ayoung: But, it is not failing while running this `$ openstack service create --name keystone --description "OpenStack Identity" identity`16:40
ganesh_with an error HTTP 50016:41
ayoungganesh_, looking the keystone log to find the stack trace16:42
ayounggotta run16:42
*** ayoung has quit IRC16:42
*** tqtran has joined #openstack-keystone16:42
knikollaayoung, no worries. thanks for the help. docs are terrible, and there is mostly nothing on mod_auth_mellon with ECP.16:43
*** ganesh_ has quit IRC16:43
openstackgerritGage Hugo proposed openstack/keystone-specs: PCI-DSS Expired Password Users  https://review.openstack.org/38383216:47
openstackgerritRon De Rose proposed openstack/keystone: Validate mapping exists when creating/updating a protocol  https://review.openstack.org/36239716:49
*** gagehugo has quit IRC16:50
*** scarlisle has quit IRC16:50
*** rcernin has quit IRC16:51
*** sheel has joined #openstack-keystone16:53
openstackgerritKristi Nikolla proposed openstack/keystone: Devstack plugin for Federation  https://review.openstack.org/32062317:02
openstackgerritKristi Nikolla proposed openstack/keystone: Devstack plugin for Federation  https://review.openstack.org/32062317:05
*** code-R has joined #openstack-keystone17:08
openstackgerritKristi Nikolla proposed openstack/keystone: Devstack plugin for Federation  https://review.openstack.org/32062317:10
*** code-R has quit IRC17:10
*** code-R has joined #openstack-keystone17:10
*** edtubill has quit IRC17:11
openstackgerritRichard Avelar proposed openstack/keystone: Remove unused statements in matches  https://review.openstack.org/38754817:11
*** ravelar has quit IRC17:14
*** code-R_ has joined #openstack-keystone17:14
*** code-R has quit IRC17:17
*** xenogear_ has quit IRC17:33
*** auggy has quit IRC17:33
*** jistr has quit IRC17:33
*** lbragstad has quit IRC17:33
*** beddari has quit IRC17:33
*** topol has quit IRC17:33
*** dolphm has quit IRC17:33
*** nikhil has quit IRC17:33
*** raddaoui has quit IRC17:33
*** cargonza has quit IRC17:33
*** flaper87 has quit IRC17:33
*** Anticimex has quit IRC17:33
*** DuncanT has quit IRC17:33
*** vern has quit IRC17:33
*** basilAB has quit IRC17:33
*** Guest66666 has quit IRC17:33
*** redrobot has quit IRC17:33
*** AlexOughton has quit IRC17:33
*** dobson has quit IRC17:33
*** EmilienM has quit IRC17:33
*** timburke has quit IRC17:33
*** SpamapS has quit IRC17:33
*** jgrassler has quit IRC17:33
*** kevinbenton has quit IRC17:33
*** boris-42 has quit IRC17:33
*** madorn has quit IRC17:33
*** dims has quit IRC17:33
*** sigmavirus has quit IRC17:33
*** mancdaz has quit IRC17:33
*** pkoraca has quit IRC17:33
*** briancline has quit IRC17:33
*** johnthetubaguy has quit IRC17:33
*** cburgess has quit IRC17:33
*** tonyb has quit IRC17:33
*** breton has quit IRC17:33
*** jgrassle1 has joined #openstack-keystone17:33
*** briancli1e has joined #openstack-keystone17:33
*** Alex_Oughton has joined #openstack-keystone17:33
*** dolphm_ has joined #openstack-keystone17:33
*** ChanServ sets mode: +o dolphm_17:33
*** Guest66666 has joined #openstack-keystone17:33
*** Anticimex has joined #openstack-keystone17:33
*** breton has joined #openstack-keystone17:33
*** dims has joined #openstack-keystone17:33
*** tonyb has joined #openstack-keystone17:33
*** cburgess has joined #openstack-keystone17:33
*** mancdaz_ has joined #openstack-keystone17:33
*** redrobot has joined #openstack-keystone17:33
*** mancdaz_ is now known as mancdaz17:33
*** johnthetubaguy_ has joined #openstack-keystone17:33
*** topol_ has joined #openstack-keystone17:33
*** timburke has joined #openstack-keystone17:34
*** dolphm_ is now known as dolphm17:34
*** vern has joined #openstack-keystone17:34
*** redrobot is now known as Guest4136617:34
*** beddari has joined #openstack-keystone17:34
*** johnthetubaguy_ is now known as johnthetubaguy17:34
*** basilAB has joined #openstack-keystone17:34
*** SpamapS has joined #openstack-keystone17:34
*** jistr has joined #openstack-keystone17:34
*** EmilienM has joined #openstack-keystone17:34
*** dobson has joined #openstack-keystone17:34
*** _sigmavirus24 has joined #openstack-keystone17:34
*** madorn has joined #openstack-keystone17:35
*** michauds has quit IRC17:35
*** EmilienM has quit IRC17:35
*** EmilienM has joined #openstack-keystone17:35
*** jperry has quit IRC17:36
*** kevinbenton has joined #openstack-keystone17:36
*** _sigmavirus24 is now known as sigmavirus17:36
*** sigmavirus has quit IRC17:37
*** sigmavirus has joined #openstack-keystone17:37
*** lbragstad has joined #openstack-keystone17:37
*** nikhil has joined #openstack-keystone17:38
*** xenogear has joined #openstack-keystone17:38
*** SpamapS has quit IRC17:39
*** SpamapS has joined #openstack-keystone17:39
*** asettle has quit IRC17:39
*** Zer0Byte__ has quit IRC17:39
*** boris-42 has joined #openstack-keystone17:40
*** gagehugo has joined #openstack-keystone17:40
*** raddaoui has joined #openstack-keystone17:40
*** haplo37_ has quit IRC17:41
*** DuncanT has joined #openstack-keystone17:41
*** auggy has joined #openstack-keystone17:43
*** haplo37_ has joined #openstack-keystone17:43
stevemarshort agenda this week17:43
*** cargonza has joined #openstack-keystone17:44
*** pkoraca has joined #openstack-keystone17:44
*** mvk has quit IRC17:44
*** gagehugo has quit IRC17:48
knikollastevemar, it's been pretty packed for the last weeks.17:48
stevemarknikolla: yep17:48
stevemari'm totally OK with a short agenda this week :)17:49
knikolla:)17:49
*** Zer0Byte__ has joined #openstack-keystone17:50
*** adrian_otto1 has joined #openstack-keystone17:50
*** jperry has joined #openstack-keystone17:51
*** gagehugo has joined #openstack-keystone17:51
*** lbragstad__ has joined #openstack-keystone17:51
*** asettle has joined #openstack-keystone17:52
*** adrian_otto has quit IRC17:52
*** pnavarro has quit IRC17:56
*** gyee has joined #openstack-keystone17:57
*** lbragstad__ has quit IRC17:57
*** lbragstad__ has joined #openstack-keystone17:59
stevemarping for meeting: ajayaa, amakarov, ayoung, breton, browne, crinkle, claudiub, davechen, david8hu, dolphm, dstanek, edmondsw, gagehugo, gyee, henrynash, hogepodge, htruta, jamielennox, jaugustine, joesavak, jorge_munoz, knikolla, lbragstad, MaxPC, morgan, nishaYadav, nkinder, notmorgan, raildo, ravelar, rodrigods, rderose, roxanaghe, samleon, samueldmq, shaleh, stevemar, tsymanczyk, topol, vivekd, wanghong, xek17:59
*** nk2527 has joined #openstack-keystone18:03
*** asettle has quit IRC18:07
*** dikonoor has quit IRC18:10
*** ganesh has joined #openstack-keystone18:12
*** ganesh is now known as Guest9623218:12
Guest96232Kilo keystone installation process is failing18:12
Guest96232while running the command "openstack service create \   --name keystone --description "OpenStack Identity" identity" with the following message "ERROR: openstack Internal Server Error (HTTP 500)"18:13
bretonGuest96232: kilo was a very long time ago :(18:14
Guest96232This is with OpenStack kilo version18:14
bretonGuest96232: could you please post the error in your keystone log?18:14
dstanekGuest96232: what's the error?18:14
Guest96232But, for some purpose I was compelled to use this.18:14
Guest96232I have followed the instructions as mentioned in the document18:15
*** mserngawy_ has joined #openstack-keystone18:15
*** kiran-r has joined #openstack-keystone18:15
Guest96232Check this http://paste.openstack.org/show/586251/18:16
dstanekGuest96232: you'll need to provide the relevant error from the server log18:17
Guest96232You mean, keystone.log18:17
dstanekyes18:17
dstanekthat should have a traceback18:17
Guest96232http://paste.openstack.org/show/586253/18:18
Guest96232keystone.log18:18
bretonGuest96232: try finding there word "Traceback" and post everything from it to the end of the traceback18:19
Guest96232Ok18:20
dstanekalthought seeing children killed like that is odd18:20
Guest96232http://paste.openstack.org/show/586254/18:21
openstackgerritJesse Keating proposed openstack/keystone: Add healthcheck middleware to pipelines  https://review.openstack.org/38773118:21
Guest96232Actually, if I start keystone service, apache2 service is getting stopped18:22
jlkstevemar: gagehugo I've updated the healthcheck review based on your feedback. Thanks!18:22
dstanekGuest96232: are you running keystone in apache?18:22
stevemarjlk: you see what jamielennox spun up?18:22
Guest96232Yes18:22
jlkstevemar: I did see that. If/when that lands we can update docs18:23
stevemarjlk: https://review.openstack.org/#/c/387752/218:23
dstanekthose errors look more like you are running keystone-all18:23
Guest96232I was following this link http://docs.openstack.org/kilo/install-guide/install/apt/content/keystone-services.html18:23
stevemarjlk: yep :)18:23
bretonGuest96232: what is the ip you are running keystone on? Is it localhost? Try running `curl localhost:5000` and post the output18:24
dstanekGuest96232: what keystone service are you starting?18:24
Guest96232http://paste.openstack.org/show/586257/18:25
Guest96232About keystone service, clearly I have no idea.18:26
dstanekGuest96232: you said 'if i start keystone service' - what does that mean?18:26
Guest96232I am really very about that18:26
Guest96232If I do "sudo service keystone restart", then If I start "sudo service apache2 restart"18:28
Guest96232it is not working18:28
Guest96232Looks, keystone is taking that 5000 or 3535718:28
dstanekyou can't do both. either you run keystone as a service (i'm assuming that is using keystone-all) or you use apache18:28
*** adrian_otto1 has quit IRC18:28
Guest96232Ok18:28
*** Zer0Byte__ has quit IRC18:28
Guest96232That is fair18:29
Guest96232Now, I am using only apache2 service18:30
dstanekGuest96232: assuming you have one running do you have a traceback?18:30
jlkWell.18:30
jlkto be fair, You can run keystone as a wsgi process that binds to a socket, and then use Apache to listen for connections on a port, that then uses the socket.18:31
jlkso in my setup, I have both apache service running _and_ keystone wsgi service running, but only one binds to network ports.18:31
dstanekjlk: that is completely different from the guide Guest96232 is using18:32
jlkcorrect18:32
jlksorry for confusing things :(18:32
Guest96232Ok. Do you suggest any changes in this http://docs.openstack.org/kilo/install-guide/install/apt/content/keystone-install.html18:32
bretonGuest96232: no. The manual doesn't say anything about running "service keystone start"18:34
Guest96232Yup.18:34
Guest96232Now, I am running apache2 alone18:34
Guest96232But, I am getting this error18:34
Guest96232ERROR: openstack Internal Server Error (HTTP 500)18:35
*** lbragstad__ has quit IRC18:35
*** amoralej is now known as amoralej|off18:36
*** code-R_ has quit IRC18:38
*** aswadr_ has quit IRC18:39
dstanekGuest96232: can you find the error in the log18:42
openstackgerritMerged openstack/keystone: Remove backend dependencies from token provider  https://review.openstack.org/38613618:44
*** edtubill has joined #openstack-keystone18:45
Guest96232Which log18:45
Guest96232apache2.log18:45
Guest96232dstanek: Mean, apache2 logs18:46
*** flaper87 has joined #openstack-keystone18:46
*** flaper87 has quit IRC18:46
*** flaper87 has joined #openstack-keystone18:46
*** thebloggu has quit IRC18:46
*** thiagolib has quit IRC18:48
*** thebloggu has joined #openstack-keystone18:50
*** rvba has joined #openstack-keystone18:50
*** rvba has quit IRC18:50
*** rvba has joined #openstack-keystone18:50
*** thebloggu has quit IRC18:50
Guest96232dstanek: keystone-error.log http://paste.openstack.org/show/586258/18:50
dstanekGuest96232: it looks like your python scripts are actually html18:53
dstanekGuest96232: can you confirm that /var/www/cgi-bin/keystone/admin is python code?18:53
Guest96232dstanek: http://paste.openstack.org/show/586259/18:53
Guest96232html18:54
breton<div class='content'><div class='error'>Invalid branch: stable/kilo</div>18:54
bretonthere is no more stable/kilo i guess18:55
Guest96232breton: But, I want to install kilo version keytone18:58
Guest96232breton: Is there any alternative?18:59
*** thebloggu has joined #openstack-keystone19:01
Guest96232dstanek: http://heavenkong.blogspot.in/2015/08/openstack-kilo-error-openstack-internal.html19:07
dstanekGuest96232: you can get a really old version from git at about that time19:07
Guest96232dstanek: Do you suggest any other way to install keystone?19:08
bknudsonbreton: there should be a tag for kilo-eol19:09
dstanekGuest96232: for kilo? no. it's unsupported now. i don't think you'd have better luck anywhere else19:09
bknudsonGuest96232: http://git.openstack.org/cgit/openstack/keystone/tree/?h=kilo-eol19:10
dstanekGuest96232: i think this is the file you wanthttp://git.openstack.org/cgit/openstack/keystone/tree/httpd/keystone.py?h=kilo-eol19:10
*** thebloggu has quit IRC19:20
Guest96232dstanek: Looks, Issue is different.19:21
Guest96232I have replaced the stable/kilo url with the one you gave19:21
*** gagehugo has quit IRC19:23
dstanekGuest96232: different issue?19:23
Guest96232Even I changed the url, error is common19:24
Guest96232ERROR: openstack Internal Server Error (HTTP 500)19:24
dstanekGuest96232: what is the error?19:25
Guest96232http://paste.openstack.org/show/586266/19:26
*** voelzmo has joined #openstack-keystone19:26
dstanekGuest96232: same issue. did you get the HTML verison of that file or the raw version?19:28
Guest96232html version19:28
dstanekyou have to get the raw Python code19:28
Guest96232Yes. I got python now19:30
dstanekGuest96232: working now?19:31
Guest96232ERROR: openstack The request you have made requires authentication. (HTTP 401) (Request-ID: req-e7d7c91f-0100-40b7-af19-553efd9e7fc9)19:33
Guest96232Error changed http 500 to 40119:33
bretonGuest96232: well, keystone is working now, congratulations.19:34
*** Zer0Byte__ has joined #openstack-keystone19:34
Guest96232Thanks. But, openstack service create \ >   --name keystone --description "OpenStack Identity" identity19:35
Guest96232is not successful19:35
dstanekGuest96232: are you using valid credentials?19:35
Guest96232According to document, initially I have used OS_TOKEN and OS_URL19:36
*** phalmos has joined #openstack-keystone19:36
dstanekGuest96232: is the token an admin token? meaning the one that's in your keystone config?19:37
Guest96232yes19:37
*** scarab_ has joined #openstack-keystone19:38
*** kiran-r has quit IRC19:39
*** scarab_ has quit IRC19:39
bretonGuest96232: could you please post output of `curl localhost:5000`?19:41
Guest96232http://paste.openstack.org/show/586268/19:42
*** kiran-r has joined #openstack-keystone19:46
*** Zer0Byte__ has quit IRC19:53
*** gyee has quit IRC19:56
*** gyee has joined #openstack-keystone19:56
bretonthat's indeed looks like kilo19:58
* breton shrugs19:58
bretonyou should double-check your credentials19:58
*** kiran-r has quit IRC19:59
*** flwang1 has quit IRC19:59
*** Zer0Byte__ has joined #openstack-keystone19:59
*** asettle has joined #openstack-keystone20:00
Guest96232I am very sure that I am using the matchi OS_TOKEN env and admin_token in /etc/keystone/keystone.conf20:01
Guest96232breton20:02
Guest96232dstanek20:02
bretonGuest96232: try sending a request to keystone with curl20:02
bretoncompose it manually20:03
Guest96232breton: I didn't understand20:03
*** asettle has quit IRC20:03
*** ChanServ sets mode: +v topol_20:06
*** topol_ is now known as topol20:06
dstanekGuest96232: is your environment var properly exported?20:07
Guest96232breton: Can you suggest one url post or get with curl20:07
Guest96232Yes20:07
dstanekGuest96232: do you have the admin token middleware enabled?20:07
dstanekGuest96232: http://docs.openstack.org/developer/keystone/api_curl_examples.html#get-v3-projects20:08
Guest96232I dont have any idea about admin token middleware ?20:08
*** dave-mccowan has quit IRC20:09
*** phalmos has quit IRC20:11
Guest96232dstanek: curl command also responds with unauthorized20:12
Guest96232http://paste.openstack.org/show/586272/20:13
dstanekGuest96232: you would have admin_token_auth in you paste.ini pipelines like http://git.openstack.org/cgit/openstack/keystone/tree/etc/keystone-paste.ini?h=stable/mitaka#n5420:14
dstanekGuest96232: my guess is that if you haven't edited that file then it's fine20:14
dstanekGuest96232: does 'echo $OS_TOKEN' come back as you expect?20:15
Guest96232Yes20:16
Guest96232Ok20:16
Guest96232Let me check whether I have edited or not?20:16
dstanekGuest96232: did you restart keystone after you set the admin_token in the keystone.conf?20:16
Guest96232I am not running keystone20:17
bretondid you restart apache2 after you set the admin_token in the keystone.conf?20:19
Guest96232Yes20:19
Guest96232I did changes to keystone-paste.ini20:20
Guest96232I revert back those changes20:20
Guest96232Thanks a lot dstanek20:21
Guest96232It worked20:21
*** phalmos has joined #openstack-keystone20:25
*** browne has quit IRC20:26
dstanekGuest96232: was it changes you made to the pipeline that broke it?20:30
Guest96232Yes.20:30
Guest96232dstanek: vedams@controller:~$ nova service-list ERROR (EndpointNotFound): publicURL endpoint for compute service not found vedams@controller:~$ neutron agent-list publicURL endpoint for network service not found20:31
dstanekGuest96232: that means you don't have entries in the catalog for nova20:34
Guest96232So, I have to do all agian20:34
dstanekyou have to add the correct catalog entries. i don't know where in that install guide it does that20:35
dstanekalso after you bootstrap keystone you would disable the admin token20:35
*** gagehugo has joined #openstack-keystone20:38
*** akrzos has quit IRC20:40
*** sheel has quit IRC20:40
*** akrzos has joined #openstack-keystone20:42
*** voelzmo has quit IRC20:45
*** browne has joined #openstack-keystone20:51
*** ayoung has joined #openstack-keystone20:51
*** ChanServ sets mode: +v ayoung20:51
*** asettle has joined #openstack-keystone20:59
*** raildo has quit IRC20:59
*** flwang1 has joined #openstack-keystone21:01
*** chris_hultin is now known as chris_hultin|AWA21:03
openstackgerritSamuel Pilla proposed openstack/keystone: Document OS-SIMPLE-CERT Routes  https://review.openstack.org/38502821:05
*** Guest96232 has quit IRC21:08
stevemarGuest41366: i'd really recommend using a newer version (mitaka/newton) and following the install guide21:08
*** gyee has quit IRC21:08
stevemarhttp://docs.openstack.org/mitaka/install-guide-ubuntu/21:09
stevemarGuest41366: or even newton: http://docs.openstack.org/newton/install-guide-ubuntu/21:09
dstaneknewton++21:10
openstackgerritSamuel Pilla proposed openstack/keystone: Document OS-SIMPLE-CERT Routes  https://review.openstack.org/38502821:12
*** adriant has joined #openstack-keystone21:12
*** lbragstad has quit IRC21:15
*** AndyWojo has quit IRC21:15
*** LamT__ has quit IRC21:15
*** AndyWojo has joined #openstack-keystone21:16
*** LamT__ has joined #openstack-keystone21:16
*** dolphm has quit IRC21:17
*** knikolla has quit IRC21:17
*** wasmum has quit IRC21:17
*** jmccrory has quit IRC21:17
*** dolphm has joined #openstack-keystone21:19
*** ChanServ sets mode: +o dolphm21:19
*** jmccrory has joined #openstack-keystone21:20
*** lbragstad has joined #openstack-keystone21:20
*** mvk has joined #openstack-keystone21:23
*** wasmum has joined #openstack-keystone21:23
*** maticue has quit IRC21:24
openstackgerritSamuel Pilla proposed openstack/keystone: Document OS-SIMPLE-CERT Routes  https://review.openstack.org/38502821:28
openstackgerritRichard Avelar proposed openstack/keystone: Remove unused statements in matches  https://review.openstack.org/38754821:30
*** haplo37_ has quit IRC21:34
*** haplo37_ has joined #openstack-keystone21:37
*** hoonetorg has joined #openstack-keystone21:40
*** edtubill has quit IRC21:46
*** flwang1 has quit IRC21:52
*** flwang1 has joined #openstack-keystone21:52
*** gagehugo has quit IRC21:56
*** jperry has quit IRC22:01
*** nk2527 has quit IRC22:12
openstackgerritLance Bragstad proposed openstack/keystone: Use issue_v3_token instead of issue_v2_token  https://review.openstack.org/38666522:21
*** dave-mccowan has joined #openstack-keystone22:24
*** dave-mccowan has quit IRC22:34
openstackgerritLance Bragstad proposed openstack/keystone: refactor the token controller  https://review.openstack.org/38672622:37
*** markvoelker has quit IRC22:41
*** edmondsw has quit IRC22:42
*** asettle has quit IRC22:43
*** jaugustine has quit IRC23:03
*** kiran-r has joined #openstack-keystone23:08
*** gagehugo has joined #openstack-keystone23:17
*** dave-mccowan has joined #openstack-keystone23:19
*** markvoelker has joined #openstack-keystone23:41
*** markvoelker has quit IRC23:46
*** iurygregory_ has joined #openstack-keystone23:51
*** guoshan has joined #openstack-keystone23:53

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