lhcheng | morganfainberg: I'll follow-up with you on the driver interface on monday, got stuck on meeting and the horizon session size cleanup | 00:20 |
---|---|---|
*** atiwari has quit IRC | 00:20 | |
*** samueldmq has joined #openstack-keystone | 00:31 | |
morganfainberg | lhcheng: no worries | 00:33 |
*** sigmavirus24_awa is now known as sigmavirus24 | 00:34 | |
lhcheng | morganfainberg: btw, I got the horizon session size down by 75% :) | 00:34 |
morganfainberg | nice | 00:34 |
lhcheng | 34% is due to bad code that slipped in, and 41% is related to storing too much keystone info in the session | 00:35 |
morganfainberg | fun | 00:35 |
samueldmq | lhcheng, great work | 00:39 |
samueldmq | lhcheng, does this make horizon work with v3 with signed cookies ? | 00:40 |
lhcheng | samueldmq: yes, it will :) | 00:40 |
samueldmq | lhcheng, at least for devstack, small deployments | 00:40 |
samueldmq | lhcheng, oh, great ! | 00:40 |
lhcheng | with plenty of space available :) | 00:40 |
samueldmq | lhcheng,do you have a patch up for this ? | 00:41 |
lhcheng | samueldmq: still WIP: https://review.openstack.org/#/c/179419/ but that should reduce the size 31% | 00:42 |
samueldmq | lhcheng, nice thanks; will take a look | 00:43 |
samueldmq | morganfainberg, keystone,nova,cinder,glance,swift,neutron | 00:43 |
lhcheng | samueldmq: there are some cleanup needed in horizon side too | 00:43 |
samueldmq | morganfainberg, any other to have a 'core' functional devstack with v3 ? | 00:43 |
morganfainberg | samueldmq: look at what is run in http://logs.openstack.org/22/173122/2/check/check-tempest-dsvm-neutron-full/bf02243/ | 00:44 |
morganfainberg | that is what i'm targeting | 00:44 |
morganfainberg | basically | 00:44 |
samueldmq | morganfainberg, k looking | 00:47 |
samueldmq | lhcheng, so with that patch you doesnt store the sc in the token ? | 00:48 |
lhcheng | samueldmq: correct | 00:48 |
samueldmq | lhcheng, and then retrieve it when creating user? | 00:49 |
samueldmq | lhcheng, it means sc is not being stored in the session ? | 00:49 |
lhcheng | samueldmq: yes, the sc is not stored in session anymore | 00:49 |
samueldmq | lhcheng, oh .. and how do we cache it ? | 00:49 |
*** ankita_wagh has quit IRC | 00:50 | |
*** zzzeek has quit IRC | 00:50 | |
lhcheng | samueldmq: the sc will then be retrieved when recreating the user object, so the result is one extra keystone call per page reload | 00:50 |
lhcheng | samueldmq: the caching will be step 2, likely leverage the caching feature already available in django and store in there | 00:51 |
samueldmq | lhcheng, so we will use horizon server caching (django) for the sc | 00:51 |
samueldmq | lhcheng, and cookies for the rest | 00:52 |
*** packet has joined #openstack-keystone | 00:52 | |
lhcheng | samueldmq: it will be optional | 00:52 |
*** packet has quit IRC | 00:52 | |
samueldmq | lhcheng, I would like it as default :p | 00:52 |
samueldmq | lhcheng, imo it's better tahn having one more request per page load | 00:53 |
*** sigmavirus24 is now known as sigmavirus24_awa | 00:53 | |
lhcheng | samueldmq: I like to avoid additional dependencies for horizon in devstack, keeping it simple | 00:53 |
samueldmq | lhcheng, but the django caching is already available with django, isnt it ? | 00:54 |
lhcheng | samueldmq: caching configuration, not the caching server | 00:55 |
samueldmq | lhcheng, ++ so we still would need to put a backend there , such as memcached, right ? | 00:56 |
lhcheng | samueldmq: for production, the deployer likely already have one | 00:56 |
lhcheng | samueldmq: but for devstack, I like it to keep it simple. same reason why we want signed cookies as default :) | 00:57 |
samueldmq | lhcheng, k makes sense; but you plan to put your solution as default then | 00:57 |
samueldmq | lhcheng, needing keystone calls for every reload | 00:58 |
lhcheng | samueldmq: yes, and deployer have the option to use caching if they want to. | 00:58 |
samueldmq | lhcheng, nice and then it will be documented: | 00:59 |
samueldmq | lhcheng, v2 works as today | 00:59 |
jamielennox | bknudson: i left a comment on https://review.openstack.org/#/c/166543/ without a +/- 1 as i'm not sure what you are doing is intentional or not | 00:59 |
samueldmq | lhcheng, v3 needs a additional call to keystone if not using cached backend | 00:59 |
samueldmq | lhcheng, the other option is to use cached backend and then v3 works as v2, no need of additional queries | 01:00 |
lhcheng | samueldmq: no, it would be the same behavior for v2 and v3. | 01:00 |
*** trey has quit IRC | 01:00 | |
samueldmq | lhcheng, the additional calls if not using cached backend | 01:01 |
samueldmq | lhcheng, makes sense to me ... you can add me as reviewer of those patches if you want :) | 01:02 |
lhcheng | even for v2, the cookie size can hit the limit if there are many openstack service endpoint registered. | 01:02 |
lhcheng | samueldmq: sure | 01:02 |
samueldmq | lhcheng, ++ so yes, then it makes still more sense | 01:02 |
*** browne has quit IRC | 01:04 | |
*** trey has joined #openstack-keystone | 01:08 | |
samueldmq | jamielennox, hi | 01:10 |
samueldmq | jamielennox, I run a default devstack and most of test pass (only 7 failing) | 01:11 |
samueldmq | jamielennox, some of them because even in v3 mode, tempest tries to use /v2/tenants | 01:11 |
samueldmq | jamielennox, others I got timeout, so nothing related to v3 auth support | 01:12 |
samueldmq | jamielennox, I am going to setup a more complete devstack and try against it | 01:12 |
samueldmq | with neutron and swift | 01:13 |
samueldmq | morganfainberg, so looks that also adds sahara,ceilometer and heat | 01:15 |
openstackgerrit | Merged openstack/keystoneauth: Don't return default for domain in v2 accessinfo https://review.openstack.org/179522 | 01:16 |
jamielennox | samueldmq: I'm surprised that tempest is the issue there | 01:17 |
jamielennox | samueldmq: the places i'm aware of failure are those on the list | 01:17 |
jamielennox | like for example glance talking to cinder | 01:17 |
jamielennox | and heat still uses v2 credentials for auth_token middleware | 01:18 |
jamielennox | but that's a great start | 01:18 |
samueldmq | jamielennox, :) | 01:18 |
samueldmq | jamielennox, I will share the tempest results with you, give me a minute | 01:18 |
*** lhcheng has quit IRC | 01:19 | |
morganfainberg | samueldmq: yes. basically we need to cover *everything* we can with v3 only | 01:21 |
morganfainberg | samueldmq: so we can mark v2 as deprecated. | 01:22 |
richm | jamielennox: have you converted glance to use keystone_authtoken? | 01:23 |
jamielennox | richm: i think so..? | 01:23 |
*** ayoung has quit IRC | 01:23 | |
jamielennox | does it not work? | 01:23 |
richm | I've got glance api and glance registry working - glance cache looks a bit different though - do you remember converting glance cache? | 01:24 |
samueldmq | morganfainberg, k got it, will dig more on this, thanks | 01:25 |
samueldmq | jamielennox, the paste is big | 01:25 |
samueldmq | jamielennox, Could not submit your paste because your paste contains spam. | 01:25 |
samueldmq | Please fill out the CAPTCHA to proceed: | 01:26 |
samueldmq | hehe | 01:26 |
jamielennox | richm: for auth_token there generally isn't work required for each service - the exceptions there being zaqar, swift and to an extent heat | 01:26 |
jamielennox | not knowing glance very well i dont think glance cache would use auth_token - auth_token does token auth and so it generally only protects the -api services | 01:27 |
jamielennox | samueldmq: i'm probably not going to do anything on it today anyway, i think the goal should be to get it set up as an experimental job then we can just work through that | 01:28 |
samueldmq | jamielennox, yes I will start with the experimental job | 01:28 |
richm | jamielennox: Did you have to do anything in glance cache to make it use the [keystone_authtoken] section as in http://www.jamielennox.net/blog/2015/02/23/v3-authentication-with-auth-token-middleware/ | 01:28 |
samueldmq | jamielennox, I think we have a good start with this first execution | 01:28 |
jamielennox | richm: i just replied to your email on that | 01:29 |
samueldmq | jamielennox, I just wanted to make sure how to set it up correctly, etc | 01:29 |
samueldmq | jamielennox, to not submit a job without having tested anything | 01:29 |
samueldmq | jamielennox, http://paste.openstack.org/show/214682/ | 01:29 |
samueldmq | jamielennox, nvm, it cut the paste | 01:30 |
samueldmq | this one is ok http://www2.lsd.ufcg.edu.br/~samuel/tempest-full-without-identity-v2-tests.out | 01:30 |
samueldmq | jamielennox, morganfainberg to start, you want an experimental job for which project ? | 01:31 |
jamielennox | richm: hmm, i've done everything for devstack - and it looks like devstack still sets up glance cache the old way: https://github.com/openstack-dev/devstack/blob/master/lib/glance#L200 | 01:31 |
jamielennox | i don't know why that is | 01:32 |
richm | jamielennox: yeah, that's what I see on my rdo kilo install | 01:32 |
jamielennox | samueldmq: umm, i've really got no idea which project | 01:32 |
jamielennox | richm: i'll have to have a look at glance cache and see if it's using those options - are you seeing an error if you change it? | 01:33 |
samueldmq | jamielennox, I think the ideal would be all of them :p | 01:33 |
richm | jamielennox: no, just finished puppet-izing glance api and glance registry and saw that glance cache was doing things the old way | 01:33 |
jamielennox | samueldmq: right | 01:33 |
samueldmq | jamielennox, so we could work on wherever needs work, and run the checks | 01:33 |
richm | I will see if I can just slap a keystone_authtoken section in there | 01:33 |
jamielennox | richm: give me a few seconds to grep through the glance code and i'll do a devstack patch to swap that over. The gate should tell us if it's all god | 01:34 |
jamielennox | samueldmq: you can ask on infra if that's possible | 01:34 |
samueldmq | jamielennox, k will do, need to go afk for a bit, will keep you updated | 01:34 |
jamielennox | samueldmq: otherwise maybe devstack? or tempest? | 01:34 |
samueldmq | thanks | 01:34 |
samueldmq | jamielennox, yeah, otherwise devstack and tempest would be good, will discuss with them | 01:35 |
samueldmq | jamielennox, thanks | 01:35 |
*** dimsum__ has quit IRC | 01:35 | |
jamielennox | richm: so there's v2 auth happening in glance there somewhere: https://github.com/openstack/glance/blob/master/glance/registry/client/v2/api.py#L40 | 01:37 |
jamielennox | but it's not taking it from the auth_token section so it shouldn't affect that | 01:38 |
jamielennox | richm: yea - so those options in devstack are not being put into the keystone_authtoken section, so glance is doing it's own internal authentication to keystone there for some reason | 01:39 |
jamielennox | i haven't update that yet - that's the first time i've seen those options | 01:40 |
jamielennox | richm: if you find more options like that please add them to https://trello.com/b/5qivasNp/keystone-v3 | 01:40 |
*** omkarjoshi has quit IRC | 02:04 | |
richm | jamielennox: ok | 02:07 |
*** boris-42 has quit IRC | 02:08 | |
*** _cjones_ has quit IRC | 02:21 | |
*** Ephur has quit IRC | 02:31 | |
*** _cjones_ has joined #openstack-keystone | 02:33 | |
openstackgerrit | Merged openstack/keystoneauth: Copy missed test_fixtures from keystoneclient https://review.openstack.org/179525 | 02:35 |
openstackgerrit | Merged openstack/keystoneauth: Add endpoint and service ids to fixtures https://review.openstack.org/179526 | 02:37 |
*** alex_xu has quit IRC | 02:39 | |
morganfainberg | jamielennox: new ksm on Monday for kilo to cut the spammy log line. | 02:41 |
jamielennox | morganfainberg: sounds good | 02:41 |
morganfainberg | jamielennox: go enjoy your weekend! | 02:41 |
morganfainberg | Lol. | 02:41 |
*** ankita_wagh has joined #openstack-keystone | 02:42 | |
jamielennox | heh - yea, crappy weather out | 02:42 |
*** ankita_wagh has quit IRC | 02:42 | |
*** alex_xu has joined #openstack-keystone | 02:43 | |
morganfainberg | jamielennox: and I need to schedule client work session at the summit. Do we want 1 client and 1 middleware? Or 1 for both? Or ? | 02:43 |
*** ankita_wagh has joined #openstack-keystone | 02:43 | |
jamielennox | morganfainberg: what do you want to do in the session? | 02:43 |
jamielennox | i'm trying to push some features but in terms of future work? | 02:43 |
morganfainberg | Work sessions are the small groups so it'll be mostly core and devs | 02:44 |
morganfainberg | So we could talk about future plans/design things. Push code through / specs. | 02:44 |
morganfainberg | Etc | 02:44 |
morganfainberg | It's very free-form | 02:44 |
morganfainberg | Think about it this weekend. I'll bug you on my Monday. | 02:45 |
morganfainberg | So I can finish the design session planning. | 02:45 |
*** richm has quit IRC | 02:50 | |
jamielennox | morganfainberg: ok, sounds good - there's a few things around how i want this policy and auth plugin stuff to work | 02:50 |
*** _cjones_ has quit IRC | 02:51 | |
jamielennox | otherwise i'll just line up all my old reviews and assign them out | 02:51 |
*** spandhe has quit IRC | 02:53 | |
*** samueldmq has quit IRC | 03:04 | |
*** lhcheng has joined #openstack-keystone | 03:08 | |
*** ChanServ sets mode: +v lhcheng | 03:08 | |
*** alex_xu has quit IRC | 03:15 | |
*** alex_xu has joined #openstack-keystone | 03:18 | |
*** browne has joined #openstack-keystone | 03:20 | |
*** lhcheng has quit IRC | 03:30 | |
*** markvoelker has joined #openstack-keystone | 03:40 | |
*** ankita_wagh has quit IRC | 03:45 | |
*** markvoelker_ has joined #openstack-keystone | 03:50 | |
*** markvoelker has quit IRC | 03:51 | |
*** _cjones_ has joined #openstack-keystone | 03:51 | |
*** ankita_wagh has joined #openstack-keystone | 04:02 | |
*** ankita_w_ has joined #openstack-keystone | 04:03 | |
*** ankita_wagh has quit IRC | 04:06 | |
*** _cjones_ has quit IRC | 04:15 | |
*** gokrokve has joined #openstack-keystone | 04:27 | |
*** _cjones_ has joined #openstack-keystone | 04:46 | |
*** _cjones_ has quit IRC | 04:48 | |
*** _cjones_ has joined #openstack-keystone | 04:51 | |
*** _cjones_ has quit IRC | 04:52 | |
*** ankita_w_ has quit IRC | 04:57 | |
*** ankita_wagh has joined #openstack-keystone | 04:58 | |
*** omkarjoshi has joined #openstack-keystone | 05:02 | |
*** omkarjoshi has quit IRC | 05:04 | |
*** gokrokve_ has joined #openstack-keystone | 05:11 | |
*** gokrokve_ has quit IRC | 05:12 | |
*** gokrokve_ has joined #openstack-keystone | 05:13 | |
*** gokrokve has quit IRC | 05:15 | |
*** gokrokve_ has quit IRC | 05:17 | |
*** ayoung has joined #openstack-keystone | 05:35 | |
*** ChanServ sets mode: +v ayoung | 05:35 | |
*** ayoung has quit IRC | 05:37 | |
*** gokrokve has joined #openstack-keystone | 05:42 | |
*** gokrokve has quit IRC | 05:43 | |
*** gokrokve has joined #openstack-keystone | 05:44 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/keystone: Imported Translations from Transifex https://review.openstack.org/179331 | 06:05 |
*** josecastroleon has joined #openstack-keystone | 06:13 | |
*** josecastroleon has quit IRC | 06:14 | |
*** henrynash has joined #openstack-keystone | 06:15 | |
*** ChanServ sets mode: +v henrynash | 06:15 | |
openstackgerrit | Jamie Lennox proposed openstack/python-keystoneclient: Prompt for password on CLI if not provided https://review.openstack.org/173605 | 06:21 |
openstackgerrit | Jamie Lennox proposed openstack/python-keystoneclient: A Default CLI plugin https://review.openstack.org/179563 | 06:21 |
*** spandhe has joined #openstack-keystone | 06:22 | |
*** e0ne has joined #openstack-keystone | 06:30 | |
*** e0ne has quit IRC | 06:34 | |
*** browne has quit IRC | 06:58 | |
*** henrynash has quit IRC | 07:06 | |
*** openstackgerrit has quit IRC | 07:06 | |
*** openstackgerrit has joined #openstack-keystone | 07:07 | |
*** ankita_w_ has joined #openstack-keystone | 07:26 | |
*** ankita_wagh has quit IRC | 07:29 | |
*** ankita_w_ has quit IRC | 07:30 | |
*** ajayaa has joined #openstack-keystone | 07:34 | |
*** spandhe has quit IRC | 07:54 | |
*** dimsum__ has joined #openstack-keystone | 07:59 | |
*** dimsum__ has quit IRC | 08:04 | |
*** boris-42 has joined #openstack-keystone | 08:46 | |
*** ir2ivps8 has quit IRC | 09:46 | |
*** henrynash has joined #openstack-keystone | 10:08 | |
*** ChanServ sets mode: +v henrynash | 10:08 | |
*** dimsum__ has joined #openstack-keystone | 10:51 | |
*** dimsum__ has quit IRC | 10:56 | |
*** henrynash has quit IRC | 11:16 | |
*** samueldmq has joined #openstack-keystone | 11:32 | |
*** dimsum__ has joined #openstack-keystone | 12:17 | |
*** josecastroleon has joined #openstack-keystone | 12:44 | |
*** samueldmq has quit IRC | 12:46 | |
*** josecastroleon has quit IRC | 12:49 | |
*** zzzeek has joined #openstack-keystone | 12:49 | |
*** emagana has joined #openstack-keystone | 13:25 | |
*** markvoelker_ has quit IRC | 13:34 | |
*** markvoelker has joined #openstack-keystone | 13:35 | |
*** markvoelker_ has joined #openstack-keystone | 13:35 | |
*** markvoelker has quit IRC | 13:40 | |
openstackgerrit | Brant Knudson proposed openstack/keystone: Use short names for drivers https://review.openstack.org/166622 | 13:47 |
openstackgerrit | Brant Knudson proposed openstack/keystone: Update sample config file https://review.openstack.org/171860 | 13:52 |
openstackgerrit | Brant Knudson proposed openstack/keystone: Remove unnecessary oauth_api check https://review.openstack.org/177603 | 13:53 |
openstackgerrit | Brant Knudson proposed openstack/keystone: De-duplicate auth methods https://review.openstack.org/177604 | 13:53 |
openstackgerrit | Brant Knudson proposed openstack/keystone: Use [] where a value is required https://review.openstack.org/171907 | 13:53 |
openstackgerrit | Brant Knudson proposed openstack/keystone: Remove support for loading auth plugin by class https://review.openstack.org/171906 | 13:53 |
*** boris-42 has quit IRC | 14:48 | |
*** emagana has quit IRC | 14:57 | |
*** ajayaa has quit IRC | 15:05 | |
*** dimsum__ has quit IRC | 15:24 | |
*** zzzeek has quit IRC | 15:42 | |
*** markvoelker_ has quit IRC | 15:46 | |
*** dimsum__ has joined #openstack-keystone | 15:47 | |
*** zzzeek has joined #openstack-keystone | 16:10 | |
*** zzzeek has quit IRC | 16:28 | |
*** henrynash has joined #openstack-keystone | 16:44 | |
*** ChanServ sets mode: +v henrynash | 16:44 | |
*** gokrokve_ has joined #openstack-keystone | 16:44 | |
*** gokrokve has quit IRC | 16:47 | |
*** dimsum__ has quit IRC | 16:58 | |
dstanek | jamielennox: i have a falcon POC that i can commit and push for you to take a look at | 17:04 |
dstanek | jamielennox: i just saw your email on the list about it | 17:04 |
dstanek | hmmm...i think that there was one last thing for me to do there, but i can't quite remember | 17:10 |
*** wwwjfy has quit IRC | 17:11 | |
*** iamjarvo has joined #openstack-keystone | 17:19 | |
*** iamjarvo_ has joined #openstack-keystone | 17:20 | |
*** iamjarvo has quit IRC | 17:24 | |
*** ankita_wagh has joined #openstack-keystone | 17:26 | |
*** iamjarvo has joined #openstack-keystone | 17:30 | |
*** iamjarvo has quit IRC | 17:30 | |
*** iamjarvo has joined #openstack-keystone | 17:31 | |
*** iamjarvo has quit IRC | 17:31 | |
*** iamjarvo has joined #openstack-keystone | 17:31 | |
*** iamjarvo has quit IRC | 17:33 | |
*** iamjarvo_ has quit IRC | 17:33 | |
*** henrynash has quit IRC | 17:36 | |
*** iamjarvo has joined #openstack-keystone | 17:38 | |
*** hogepodge has quit IRC | 17:50 | |
*** e0ne has joined #openstack-keystone | 17:54 | |
*** gokrokve has joined #openstack-keystone | 18:01 | |
*** boris-42 has joined #openstack-keystone | 18:01 | |
*** gokrokve has quit IRC | 18:03 | |
*** gokrokve has joined #openstack-keystone | 18:03 | |
*** gokrokve_ has quit IRC | 18:04 | |
*** gokrokve_ has joined #openstack-keystone | 18:06 | |
*** hogepodge has joined #openstack-keystone | 18:09 | |
*** gokrokve has quit IRC | 18:10 | |
*** e0ne has quit IRC | 18:10 | |
*** henrynash has joined #openstack-keystone | 18:25 | |
*** ChanServ sets mode: +v henrynash | 18:25 | |
*** spandhe has joined #openstack-keystone | 18:35 | |
*** spandhe_ has joined #openstack-keystone | 18:38 | |
*** spandhe has quit IRC | 18:40 | |
*** spandhe_ is now known as spandhe | 18:40 | |
*** lhcheng has joined #openstack-keystone | 18:45 | |
*** ChanServ sets mode: +v lhcheng | 18:45 | |
*** gokrokve_ has quit IRC | 18:50 | |
*** gokrokve has joined #openstack-keystone | 18:51 | |
*** samueldmq has joined #openstack-keystone | 18:51 | |
*** gokrokve has quit IRC | 18:55 | |
*** iamjarvo has quit IRC | 19:17 | |
*** josecastroleon has joined #openstack-keystone | 19:18 | |
*** iamjarvo has joined #openstack-keystone | 19:19 | |
*** henrynash has quit IRC | 19:19 | |
*** henrynash has joined #openstack-keystone | 19:20 | |
*** ChanServ sets mode: +v henrynash | 19:20 | |
*** gokrokve has joined #openstack-keystone | 19:23 | |
*** josecastroleon has quit IRC | 19:23 | |
*** lhcheng has quit IRC | 19:25 | |
*** gokrokve_ has joined #openstack-keystone | 19:46 | |
*** gokrokve has quit IRC | 19:48 | |
*** gokrokve_ has quit IRC | 19:50 | |
*** gokrokve has joined #openstack-keystone | 19:50 | |
*** e0ne has joined #openstack-keystone | 19:53 | |
*** iamjarvo has quit IRC | 20:18 | |
*** markvoelker has joined #openstack-keystone | 20:21 | |
*** markvoelker has quit IRC | 20:25 | |
*** spandhe has quit IRC | 20:29 | |
*** spandhe has joined #openstack-keystone | 20:29 | |
*** zzzeek has joined #openstack-keystone | 20:32 | |
*** spandhe has quit IRC | 20:33 | |
*** e0ne has quit IRC | 20:34 | |
*** boris-42 has quit IRC | 20:38 | |
*** zzzeek has quit IRC | 20:49 | |
samueldmq | we have 4 external plugins deprecated since Icehouse at https://github.com/openstack/keystone/blob/master/keystone/auth/plugins/external.py#L111 | 20:50 |
samueldmq | I think it's time to they go away | 20:51 |
*** gokrokve_ has joined #openstack-keystone | 20:57 | |
*** stevemar has joined #openstack-keystone | 20:57 | |
*** ChanServ sets mode: +v stevemar | 20:57 | |
*** gokrokve has quit IRC | 21:00 | |
*** gokrokve_ has quit IRC | 21:02 | |
*** stevemar has quit IRC | 21:11 | |
*** markvoelker has joined #openstack-keystone | 21:21 | |
*** markvoelker has quit IRC | 21:25 | |
*** e0ne has joined #openstack-keystone | 21:29 | |
*** samueldmq has quit IRC | 21:29 | |
*** boris-42 has joined #openstack-keystone | 21:37 | |
*** e0ne has quit IRC | 21:38 | |
*** markvoelker has joined #openstack-keystone | 22:22 | |
*** gokrokve has joined #openstack-keystone | 22:24 | |
*** markvoelker has quit IRC | 22:27 | |
*** trey has quit IRC | 22:52 | |
*** trey has joined #openstack-keystone | 22:54 | |
*** dimsum__ has joined #openstack-keystone | 22:57 | |
*** dimsum__ has quit IRC | 23:02 | |
*** dims_ has joined #openstack-keystone | 23:02 | |
*** emagana has joined #openstack-keystone | 23:08 | |
*** markvoelker has joined #openstack-keystone | 23:23 | |
*** markvoelker has quit IRC | 23:28 | |
*** gokrokve_ has joined #openstack-keystone | 23:32 | |
*** gokrokve has quit IRC | 23:34 | |
*** emagana has quit IRC | 23:36 | |
*** emagana has joined #openstack-keystone | 23:36 | |
*** emagana has quit IRC | 23:40 | |
*** lhcheng has joined #openstack-keystone | 23:53 | |
*** ChanServ sets mode: +v lhcheng | 23:53 | |
*** dguerri is now known as _dguerri | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!