*** tkay has joined #openstack-dev | 00:02 | |
*** melwitt has joined #openstack-dev | 00:03 | |
*** lbragstad has quit IRC | 00:05 | |
*** jobewan has joined #openstack-dev | 00:05 | |
*** Longgeek has joined #openstack-dev | 00:05 | |
*** achampion has joined #openstack-dev | 00:07 | |
*** pcm_ has quit IRC | 00:08 | |
*** zz_ewindisch is now known as ewindisch | 00:08 | |
*** vipul-away is now known as vipul | 00:08 | |
*** jckasper has joined #openstack-dev | 00:09 | |
*** CaptTofu has joined #openstack-dev | 00:09 | |
*** jckasper has quit IRC | 00:09 | |
*** jckasper has joined #openstack-dev | 00:10 | |
*** ewindisch is now known as zz_ewindisch | 00:10 | |
*** sarob has joined #openstack-dev | 00:11 | |
*** kfox1111 has left #openstack-dev | 00:13 | |
*** rnirmal has quit IRC | 00:14 | |
*** colinmcnamara has quit IRC | 00:17 | |
*** mikeoutland has quit IRC | 00:18 | |
*** vipul is now known as vipul-away | 00:24 | |
*** gabrielhurley has quit IRC | 00:25 | |
*** colinmcnamara has joined #openstack-dev | 00:26 | |
*** mrodden1 has quit IRC | 00:31 | |
*** rods has joined #openstack-dev | 00:32 | |
*** dvarga has joined #openstack-dev | 00:33 | |
*** vipul-away is now known as vipul | 00:34 | |
*** nermina has joined #openstack-dev | 00:35 | |
*** Longgeek has quit IRC | 00:36 | |
*** fifieldt has joined #openstack-dev | 00:36 | |
*** odyssey4me has quit IRC | 00:37 | |
*** tjones has quit IRC | 00:38 | |
*** sarob has quit IRC | 00:40 | |
*** nati_uen_ has joined #openstack-dev | 00:40 | |
*** smurugesan has quit IRC | 00:40 | |
*** gokrokve has joined #openstack-dev | 00:41 | |
*** yamahata has quit IRC | 00:42 | |
*** galstrom_zzz is now known as galstrom | 00:42 | |
*** michchap_ has quit IRC | 00:43 | |
*** dvarga has quit IRC | 00:43 | |
*** michchap has joined #openstack-dev | 00:43 | |
*** nati_ueno has quit IRC | 00:43 | |
*** csd has quit IRC | 00:44 | |
*** odyssey4me has joined #openstack-dev | 00:46 | |
*** kbringard has joined #openstack-dev | 00:47 | |
*** radez_g0n3 is now known as radez | 00:48 | |
*** mrodden has joined #openstack-dev | 00:48 | |
*** jobewan has quit IRC | 00:50 | |
*** harlowja is now known as harlowja_away | 00:50 | |
*** browne has quit IRC | 00:51 | |
*** galstrom is now known as galstrom_zzz | 00:51 | |
*** kbringard has quit IRC | 00:52 | |
*** CaptTofu has quit IRC | 00:53 | |
*** zzelle has quit IRC | 00:54 | |
*** mkollaro has quit IRC | 00:55 | |
*** armax has joined #openstack-dev | 00:57 | |
*** melwitt has quit IRC | 00:58 | |
*** melwitt1 has joined #openstack-dev | 00:59 | |
*** HT_Sergio has joined #openstack-dev | 01:00 | |
*** tkay has quit IRC | 01:00 | |
*** tkay has joined #openstack-dev | 01:02 | |
*** ppetit has joined #openstack-dev | 01:03 | |
*** melwitt1 has quit IRC | 01:03 | |
gyee | jamielennox? | 01:03 |
---|---|---|
jamielennox | hey gyee | 01:04 |
gyee | jamielennox, I need help understanding your auth plugin patch | 01:04 |
gyee | first, https://review.openstack.org/#/c/60751/5/keystoneclient/auth/base.py | 01:04 |
jamielennox | gyee: yep, i was thinking from your review that i should write up a little understanding guide | 01:05 |
*** sarob has joined #openstack-dev | 01:05 | |
jamielennox | (i haven't done it yet) | 01:05 |
gyee | why can't we just have one method? | 01:05 |
gyee | do_authenticate should be good enough | 01:05 |
*** sarob has quit IRC | 01:05 | |
*** CaptTofu has joined #openstack-dev | 01:05 | |
gyee | token caching is at the discretion of the plugin | 01:05 |
jamielennox | so get_token() is more about retrieving the token from the plugin | 01:06 |
jamielennox | it could be a property | 01:06 |
*** sarob has joined #openstack-dev | 01:06 | |
jamielennox | it's purely because we don't want to enforce how how save data in the plugin so when you call get_token you should get the token from the plugin | 01:06 |
gyee | but you could do it from do_authenticate() | 01:06 |
gyee | do_authenticate() can simply retrieve it from its internal cache if it wants | 01:07 |
jamielennox | you could but i prefer the idea that when you ask it to fetch a new token it really does it | 01:07 |
jamielennox | we handle that with force_new_token now | 01:07 |
*** dkranz has joined #openstack-dev | 01:07 | |
jamielennox | i think the conceptual split is easier for plugins | 01:07 |
jamielennox | (it is also similar to nova's - but i'm not basing on that) | 01:07 |
*** xmltok has quit IRC | 01:07 | |
_cjones_ | jamielennox: Looks appropriate to me. F'ns should do one thing. In your implementation, that is the caes. | 01:08 |
*** harlowja_away is now known as harlowja | 01:08 | |
*** melwitt has joined #openstack-dev | 01:08 | |
jamielennox | i also think that it makes an easier logical split for a plugin implementation | 01:08 |
_cjones_ | A helper can always be made to "do_authenticate_and_get_token()" | 01:08 |
*** sarob_ has joined #openstack-dev | 01:08 | |
jamielennox | this is the function that you implement to actually fetch a token | 01:09 |
jamielennox | this is the function you use when you are returning a function | 01:09 |
jamielennox | this is the function you use when you are returning a token | 01:09 |
jamielennox | (skip the second one) | 01:09 |
jamielennox | _cjones_: yes, and we do that | 01:09 |
*** willingc has joined #openstack-dev | 01:09 | |
_cjones_ | jamielennox: Seems reasonable to me then. | 01:09 |
jamielennox | it got turned into a rather unattractive decorator in: https://review.openstack.org/#/c/60751/5/keystoneclient/session.py | 01:09 |
*** willingc has quit IRC | 01:10 | |
gyee | seem redundant | 01:10 |
*** sarob has quit IRC | 01:10 | |
gyee | authenticate always gets a token | 01:10 |
*** akscram has joined #openstack-dev | 01:11 | |
jamielennox | gyee: this isn't something that a client will have to deal with - it's all handled by session | 01:11 |
jamielennox | i went that way because it makes the interface to a plugin much simpler | 01:11 |
gyee | jamielennox, I am talking from an angle of custom auth plugin | 01:11 |
jamielennox | it seems better to have session handling a force_new_token parameter rather than making every auth plugin do it | 01:11 |
*** sarob has joined #openstack-dev | 01:12 | |
jamielennox | pushes it up a layer | 01:12 |
*** tkay has quit IRC | 01:12 | |
jamielennox | so i don't think it makes it any harder for a custom auth plugin either - are you thinking SSL? | 01:12 |
gyee | force_new_token should be at the discretion of the plugin too | 01:13 |
*** armax has left #openstack-dev | 01:13 | |
gyee | jamelennox, SSL yes, auth plugin may maintain a persistent connection | 01:13 |
gyee | possible | 01:13 |
jamielennox | gyee: so i'm fine that plugins are going to deviate in behaviour but i don't see why anyone would want to ignore something like that | 01:14 |
jamielennox | so i haven't been thinking too much about client certs auth here because it blurs the line between transport and auth | 01:14 |
*** xarses has quit IRC | 01:14 | |
*** sarob has quit IRC | 01:15 | |
jamielennox | auth at this level means "what do i stick in the X-Auth-Token header?" | 01:15 |
jamielennox | in the case of client certs i'm not sure | 01:15 |
*** sarob_ has quit IRC | 01:15 | |
*** sarob has joined #openstack-dev | 01:15 | |
gyee | for client cert, X-Auth-Token is not used | 01:15 |
jamielennox | yep, so i don't actually think that you would implement a client cert auth plugin, instead setup session with your client cert and write a noop auth plugin | 01:16 |
*** tserong_ is now known as tserong | 01:16 | |
*** colinmcnamara has quit IRC | 01:16 | |
gyee | right, but the client code needs to account for no token | 01:16 |
jamielennox | hmm, true it still needs to get a service catalog and stuff from somewhere - how are we thinking that will work anyway? | 01:17 |
*** sarob has quit IRC | 01:18 | |
gyee | why does it need service catalog? | 01:18 |
jamielennox | you still need to get your endpoints from somewhere | 01:18 |
gyee | auth_url? | 01:18 |
jamielennox | only works for communicating with keystone | 01:19 |
gyee | but keystoneclient only talks to keystone right? | 01:19 |
jamielennox | yes, but session and auth plugins are going to be shared by all the client s | 01:19 |
gyee | or are you think pushing the logic to the common client? | 01:19 |
jamielennox | so session is a one singular transport layer which handles your communication with clients | 01:20 |
jamielennox | it is shared by all the clients (in future) | 01:20 |
jamielennox | so | 01:20 |
jamielennox | auth = Auth(username=..., pass=..., auth_url=...) | 01:20 |
jamielennox | session = Session(auth=auth, client_certs=..., ca=...) | 01:20 |
jamielennox | kc = keystone.Client(session) | 01:21 |
jamielennox | nc = nova.Client(session) | 01:21 |
jamielennox | gc = glance.Client(session) | 01:21 |
jamielennox | (you get the idea) | 01:21 |
*** sarob has joined #openstack-dev | 01:21 | |
jamielennox | all the clients will share the same transport layer settings and the same authentication token | 01:22 |
gyee | jamielennox, sure, Keystone can still support SSL auth via REMOTE_USER right? | 01:22 |
jamielennox | yea, it won't change anything from that aspect | 01:23 |
jamielennox | it just means that unless you get a service catalog from somewhere your auth plugin is going to be limitted to talking to keystone | 01:23 |
jamielennox | gyee: have a look at the dependant patch: | 01:24 |
jamielennox | https://review.openstack.org/#/c/60752/ | 01:24 |
*** sarob has quit IRC | 01:24 | |
*** sarob has joined #openstack-dev | 01:24 | |
*** melwitt has quit IRC | 01:27 | |
gyee | jamielennox, I like that one, decoupling service catalog from authentication | 01:28 |
jamielennox | gyee: it does and it doesn't - the service catalog is delivered with the token so it still has to be handled by the auth_plugin | 01:28 |
*** sarob has quit IRC | 01:29 | |
jamielennox | but in keystone's case we can abstract the difference between v2 and v3 | 01:29 |
gyee | nope, in theory, my customer plugin can fetch the service catalog from LDAP/zookeeper | 01:29 |
gyee | custom plugin | 01:29 |
jamielennox | anyway, so it means that if you wrote an SSL auth plugin you could just raise Invalid if the service_type != identity | 01:29 |
jamielennox | ahh, that's cool | 01:29 |
gyee | or just fetch service catalog from a static file | 01:29 |
jamielennox | yes i've been keeping that situation in mind on purpose | 01:30 |
jamielennox | that's why i pass session to get_endpoint | 01:30 |
gyee | I like that design | 01:30 |
jamielennox | gyee: i've been silently thinking we might want to do something like that for keystone | 01:30 |
*** kushal has quit IRC | 01:31 | |
jamielennox | gyee: so this is also how i think we can do API version migration amongst the clients - if we get everyone using this pattern then anything that we implement in get_endpoint will work for everyone | 01:32 |
gyee | jamielennox, if we are abstracting auth token, should we have a get_access_info() instead of get_token() | 01:32 |
jamielennox | so we can do version discovery of endpoints, or we can look it up from some static table somewhere | 01:32 |
jamielennox | gyee: no, we can't | 01:32 |
*** xchu has joined #openstack-dev | 01:32 | |
jamielennox | there is the endpoint/token scenario and probably others in which we can't load an AccessInfo | 01:33 |
jamielennox | because we don't know anything about the token | 01:33 |
*** sdake has quit IRC | 01:33 | |
*** tongli has joined #openstack-dev | 01:33 | |
jamielennox | and i can imaging other custom plugins that we won't support using AccessInfo but should still work | 01:33 |
gyee | I mean an auth plugin can return a AccessInfo object and it may not have all the info | 01:33 |
*** bdpayne has quit IRC | 01:34 | |
jamielennox | gyee: well this is why i have auth and auth/identity | 01:34 |
jamielennox | identity are keystone plugins that are supported by AccessInfo - if you're using something else it just means you override the auth/base | 01:34 |
gyee | I mean if we are going to abstract the token, why not do it all the way | 01:34 |
*** tanisdl has quit IRC | 01:34 | |
jamielennox | gyee: so i was thinking there that i should put a function on the base plugin that does authenticate_request which defaults to calling get_token and inserting it into the X-Auth-Token header | 01:35 |
*** Longgeek has joined #openstack-dev | 01:35 | |
jamielennox | that way if you have a plugin that doesn't work with the X-Auth-Token header you can override that behaviour | 01:35 |
gyee | ++ | 01:35 |
gyee | X-Auth-Token is optional anyway | 01:36 |
jamielennox | but in general all of openstack will use X-Auth-Token and i don't think we need to optimize for the other case - allow sure, but not optimize it | 01:36 |
gyee | there are unprotected APIs which does not require a token | 01:36 |
jamielennox | sure, this only happens when you call request with authenticate=True (the default) anyway | 01:36 |
*** afazekas has quit IRC | 01:36 | |
jamielennox | that means you want to send an authenticated request so you need to have some plugin that does something | 01:36 |
gyee | but if I use SSL, I would set it to False | 01:37 |
jamielennox | gyee: it would depend what the plugin you are using does | 01:37 |
gyee | right | 01:37 |
jamielennox | if it's a noop plugin you can send authenticate=True | 01:37 |
jamielennox | actually i lied | 01:37 |
jamielennox | it doesn't default to true | 01:38 |
jamielennox | it defaults to authenticate if you have an auth plugin installed | 01:38 |
*** lbragstad_ has quit IRC | 01:38 | |
jamielennox | so authenticate = self.auth is not None | 01:38 |
*** arnaud___ has quit IRC | 01:38 | |
*** arnaud__ has quit IRC | 01:38 | |
gyee | jamielennox, here's a scary thought | 01:38 |
gyee | I could have a custom auth plugin that tokens to my internal identity server and return an abstract token | 01:39 |
*** arnaud__ has joined #openstack-dev | 01:39 | |
*** arnaud___ has joined #openstack-dev | 01:39 | |
gyee | no Keystone involvement :) | 01:39 |
*** gokrokve has quit IRC | 01:39 | |
*** lbragstad has joined #openstack-dev | 01:39 | |
gyee | that talks to my internal identity server | 01:39 |
*** gokrokve has joined #openstack-dev | 01:40 | |
jamielennox | gyee: i have considered this and i could see no reason not to allow it | 01:40 |
gyee | U DA MAN! | 01:40 |
jamielennox | you would just need to implement your own auth_token middleware | 01:40 |
jamielennox | and i've completely cut keystone out of openstack :) | 01:40 |
*** neelashah has joined #openstack-dev | 01:40 | |
gyee | yeah | 01:41 |
*** thuc has quit IRC | 01:41 | |
*** thuc has joined #openstack-dev | 01:42 | |
jamielennox | i'm not sure that is a problem really - if you can support the auth plugin interface, and you can support all the stuff that other services rely on that keystone provides like domains and such then why not let someone else try to make a better auth system | 01:42 |
gyee | no problem, just saying | 01:42 |
jamielennox | it would be interesting to see if anyone would try it | 01:43 |
gyee | try? :) | 01:43 |
*** gokrokve has quit IRC | 01:44 | |
jamielennox | heh, i heard about ibm's nova scheduler - custom keystone is next | 01:44 |
gyee | oh I am very much in favor of flexibility | 01:45 |
gyee | ppl still need to make money from integration | 01:45 |
jamielennox | ok, so another point from the review - what do you think about do_authenticate taking kwargs? | 01:45 |
jamielennox | is there any point to it? | 01:45 |
gyee | kwargs is the way to go | 01:46 |
*** xingchao has joined #openstack-dev | 01:46 | |
*** kbringard has joined #openstack-dev | 01:46 | |
gyee | custom plugins can accept anything | 01:46 |
jamielennox | i meant more that we pass a bunch of parameters to __init__, should we allow them to be overriden by do_authenticate | 01:46 |
*** thuc has quit IRC | 01:46 | |
jamielennox | the standard example here i think is to pass everything but password to __init__ and then only password when you actually do the call | 01:46 |
jamielennox | because auth_plugins will need to be serializable so we can persist tokens | 01:47 |
gyee | I think its redundant to have the same args in __init__ | 01:47 |
jamielennox | so we allow this now in keystoneclient - but i'm not sure if anyone is using it | 01:48 |
*** tqtran1 has quit IRC | 01:48 | |
gyee | not sure, but I can't think of a use case | 01:48 |
jamielennox | i did it initially to match keystoneclient but then i changed the design a bit in backwards compatability so i don't *need* it any more | 01:48 |
jamielennox | ok, i think then that we remove it and if someone gives us a good reason to support then we can always add it then | 01:49 |
gyee | ++ | 01:49 |
jamielennox | it's much easier to add support than remove it | 01:49 |
*** zaitcev has quit IRC | 01:50 | |
*** yamahata has joined #openstack-dev | 01:50 | |
*** kbringard has quit IRC | 01:50 | |
gyee | jamielennox, the token_endpoint auth https://review.openstack.org/#/c/60751/5/keystoneclient/auth/token_endpoint.py | 01:50 |
*** jp_at_hp has quit IRC | 01:51 | |
gyee | I think I know what its for now | 01:51 |
gyee | re-scoping I think | 01:51 |
jamielennox | actually i think the case is more CLI when you pass --os-endpoint and --os-service-token | 01:51 |
jamielennox | i can't load that into identity because i know nothing about the permissions of the token, i just have to blindly trust that if i send that token to that endpoint all will be well | 01:52 |
gyee | I thought it was used to rescope to another token | 01:52 |
jamielennox | this is something we support in much the same way in keystoneclient already | 01:52 |
*** locke105 has joined #openstack-dev | 01:53 | |
*** _cjones_ has quit IRC | 01:53 | |
jamielennox | gyee: you could use it that way - i have some ideas about how to make rescoping work that i want to talk to shardy about, but there is too much in motion at the moment i think | 01:53 |
gyee | jamielennox, last question about the patch, https://review.openstack.org/#/c/60751/5/keystoneclient/v2_0/client.py | 01:54 |
gyee | so httpclient itself is a plugin? | 01:55 |
jamielennox | gyee: this is my most awesome/despised hack | 01:55 |
gyee | heh | 01:55 |
jamielennox | we have to bring all this in whilst still maintaining backwards compatability which is why i've had a few tries before that failed | 01:55 |
gyee | that's where I reach for the bottle of tylenol | 01:56 |
jamielennox | what i did in https://review.openstack.org/#/c/60751/5/keystoneclient/httpclient.py __init__ is that if there is no session passed (which means we are running in traditional mode) then make the client itself the auth plugin | 01:56 |
jamielennox | what that means is that we can say client authenticate which calls of to the session to authenticate with the plugin - which turns around and calls back into the client to do the actual auth | 01:57 |
jamielennox | from the best i can tell what this means is that i don't break any compatability | 01:57 |
jamielennox | all the same variables are still set | 01:58 |
*** angdraug has quit IRC | 01:58 | |
jamielennox | then the actual calling the server bit just hands off to the plugins (to reuse that code) and returns it like it always did | 01:58 |
jamielennox | so you can see in httpclient that it supports the auth_plugin interface so it will work in conjunction with the session object just like any other auth plugin that was passed to it | 01:59 |
*** dave_tucker has left #openstack-dev | 02:00 | |
gyee | k, I see | 02:00 |
jamielennox | (and this is why do_authenticate is named like that because if i called it simply authenticate then it clashed with what happened in httpclient) | 02:00 |
jamielennox | gyee: it's horrible and lovely and i haven't found anywhere where it would cause a problem but it's really hard to follow through | 02:01 |
jamielennox | for example i'm a little unsure about the division of labour between authenticate() and do_authenticate() in httpclient, should it reset variables on the client? or is that something we would only support if you call authenticate? | 02:02 |
*** SumitNaiksatam has quit IRC | 02:02 | |
gyee | jamielennox, k, I'll review it more closely later. Least I understand the change a lot better now. | 02:02 |
jamielennox | or does it not matter because this is only for backwards compatability anyway | 02:02 |
gyee | sound redundant | 02:03 |
gyee | are they doing the same thing? | 02:03 |
jamielennox | authenticate() is called from a lot of external libraries | 02:03 |
gyee | authenticate and do_authenticate sound the same in English :) | 02:03 |
jamielennox | they do like a keystoneclient().authenticate() and then they take the auth_ref and use that in the other libraries | 02:04 |
jamielennox | so i can't change the behaviour of that | 02:04 |
*** nosnos has joined #openstack-dev | 02:04 | |
jamielennox | but if someone calls session.authenticate() that's new and will only call do_authenticate so i'm not sure what that should do to old code | 02:04 |
gyee | monkeypatch I suppose, authenticate = do_authetenticate | 02:05 |
*** Longgeek has quit IRC | 02:06 | |
gyee | I wonder two hacks make it a good design, like two wrongs make it right :D | 02:06 |
*** jhesketh__ has joined #openstack-dev | 02:06 | |
jamielennox | it's funny, i had an attempt a while ago at auth plugins and this concept and i have compatability layers all over the place | 02:07 |
*** erkules_ has joined #openstack-dev | 02:07 | |
*** nermina has quit IRC | 02:07 | |
jamielennox | this hack is amazingly cool (cause i messed around with alternatives for so long) and one of those only in python things | 02:07 |
gyee | yeah, I was pretty confused yesterday. Now its all clear. | 02:08 |
gyee | jamielennox, I have to run, will review the patches later tonight | 02:09 |
*** gyee is now known as gyee_nothere | 02:09 | |
*** erkules has quit IRC | 02:09 | |
*** CaptTofu has quit IRC | 02:10 | |
*** gokrokve has joined #openstack-dev | 02:10 | |
jamielennox | gyee_nothere: that's for taking a look | 02:12 |
*** newell has quit IRC | 02:13 | |
*** sushils has quit IRC | 02:13 | |
*** buzztroll has quit IRC | 02:13 | |
*** pablosan has quit IRC | 02:17 | |
*** novas0x2a|laptop has quit IRC | 02:20 | |
*** bswartz1 has joined #openstack-dev | 02:21 | |
*** bswartz has quit IRC | 02:22 | |
*** yaguang has joined #openstack-dev | 02:23 | |
*** rods has quit IRC | 02:23 | |
*** SumitNaiksatam has joined #openstack-dev | 02:23 | |
*** portante_ is now known as portante | 02:24 | |
*** Edward-Zhang has joined #openstack-dev | 02:24 | |
*** Mandell has quit IRC | 02:25 | |
*** ijw_ has quit IRC | 02:28 | |
*** comay is now known as comay_away | 02:29 | |
*** rods has joined #openstack-dev | 02:30 | |
*** rods has quit IRC | 02:30 | |
*** nelsnelson has joined #openstack-dev | 02:31 | |
*** asalkeld has quit IRC | 02:31 | |
*** nermina has joined #openstack-dev | 02:32 | |
*** giroro_ has quit IRC | 02:36 | |
*** nati_uen_ has quit IRC | 02:37 | |
*** nati_ueno has joined #openstack-dev | 02:37 | |
*** yamahata has quit IRC | 02:39 | |
*** Ruetobas has joined #openstack-dev | 02:42 | |
*** dstanek has joined #openstack-dev | 02:46 | |
*** kbringard has joined #openstack-dev | 02:46 | |
*** Ruetobas has quit IRC | 02:46 | |
*** Ruetobas has joined #openstack-dev | 02:47 | |
*** pablosan has joined #openstack-dev | 02:48 | |
*** pablosan has quit IRC | 02:48 | |
*** sthaha has joined #openstack-dev | 02:49 | |
*** kbringard has quit IRC | 02:50 | |
*** tkay has joined #openstack-dev | 02:51 | |
*** jasdeepH has quit IRC | 02:53 | |
*** odyssey4me has quit IRC | 02:53 | |
*** carl_baldwin has joined #openstack-dev | 02:54 | |
sdague | bknudson: so I think that issue in devstack has been there for a while, patches appreciated | 02:55 |
*** stevemar has joined #openstack-dev | 02:55 | |
*** aveiga has quit IRC | 02:57 | |
*** dave_tucker_zzz has joined #openstack-dev | 02:57 | |
*** dave_tucker_zzz is now known as dave_tucker | 02:57 | |
*** admiyo has joined #openstack-dev | 02:58 | |
*** dave_tucker is now known as dave_tucker_zzz | 02:59 | |
*** jayahn has joined #openstack-dev | 03:00 | |
*** fpatwa has joined #openstack-dev | 03:02 | |
*** odyssey4me has joined #openstack-dev | 03:02 | |
*** jhesketh__ has quit IRC | 03:02 | |
*** Longgeek has joined #openstack-dev | 03:02 | |
*** jhesketh_ has quit IRC | 03:03 | |
*** jhesketh_ has joined #openstack-dev | 03:03 | |
*** buzztroll has joined #openstack-dev | 03:04 | |
*** rossella_s has joined #openstack-dev | 03:05 | |
*** jhesketh__ has joined #openstack-dev | 03:05 | |
*** matiu has quit IRC | 03:05 | |
*** tkay has quit IRC | 03:05 | |
*** jayahn has quit IRC | 03:07 | |
*** yaguang has quit IRC | 03:09 | |
*** yaguang has joined #openstack-dev | 03:10 | |
*** HenryG has joined #openstack-dev | 03:10 | |
*** krotscheck has quit IRC | 03:10 | |
*** ArxCruz has quit IRC | 03:11 | |
*** paragan has joined #openstack-dev | 03:14 | |
*** salv-orlando has joined #openstack-dev | 03:15 | |
*** tjones has joined #openstack-dev | 03:17 | |
*** fpatwa has quit IRC | 03:17 | |
*** praneet has quit IRC | 03:18 | |
*** colinmcnamara has joined #openstack-dev | 03:24 | |
*** doug_shelley66 has quit IRC | 03:28 | |
stevemar | jamielennox, ping | 03:29 |
jamielennox | stevemar: hey | 03:29 |
jamielennox | how is the san antonio? | 03:30 |
*** nati_uen_ has joined #openstack-dev | 03:31 | |
stevemar | jamielennox, whoops, pinged you too early, i had to wrap up a call | 03:32 |
stevemar | jamielennox, it's cool, trying to get stuff done :) | 03:32 |
jamielennox | no worries, i'l be here for a while still | 03:32 |
stevemar | jamielennox, had a q for you about version discovery | 03:33 |
stevemar | so... i modified devstack so that when it exports OS_IDENTITY_API_VERSION, it's v3 | 03:33 |
stevemar | jamielennox, does the OS_AUTH_URL need to have a version added on? and do the service's endpoints need to have v3 added on? | 03:34 |
*** nati_ueno has quit IRC | 03:35 | |
stevemar | jamielennox, or if they are both hostname:port, then version discovery will append /v2.0 or /v3 | 03:35 |
stevemar | the endpoints being public/admin/internal url | 03:35 |
jamielennox | afaik nothing is actually using version discovery | 03:37 |
*** devoid has quit IRC | 03:37 | |
jamielennox | not even auth_token | 03:37 |
*** matiu has joined #openstack-dev | 03:37 | |
*** buzztroll has quit IRC | 03:37 | |
jamielennox | the only thing that currently supports this is keystoneclient/client.py and that is new so you would need to use that specifically | 03:38 |
*** ramishra has joined #openstack-dev | 03:42 | |
*** amotoki has joined #openstack-dev | 03:43 | |
*** tongli has quit IRC | 03:44 | |
*** tjones has quit IRC | 03:46 | |
*** kbringard has joined #openstack-dev | 03:46 | |
*** tjones has joined #openstack-dev | 03:47 | |
*** colinmcnamara has quit IRC | 03:48 | |
*** colinmcnamara has joined #openstack-dev | 03:49 | |
*** colinmcnamara has quit IRC | 03:49 | |
*** kbringard has quit IRC | 03:50 | |
*** evilkry has joined #openstack-dev | 03:50 | |
*** tjones has quit IRC | 03:54 | |
stevemar | jamielennox, i forgot to add the rest of what i'm doing | 03:55 |
stevemar | jamielennox, so i kick off devstack w/ keystone running, and update keystoneclient to ensure that it >0.4.2 | 03:56 |
stevemar | and then try to run openstackclient with v3 commands | 03:56 |
stevemar | hoping that it would use version discovery | 03:56 |
jamielennox | how is OSC using the discovery? | 03:59 |
jamielennox | stevemar: is there a review or something? | 03:59 |
*** coolsvap has joined #openstack-dev | 04:00 | |
stevemar | jamielennox, theres a review for changes i made to devstack... https://review.openstack.org/#/c/67029/2 | 04:00 |
stevemar | jamielennox, i didn't think there was anything extra needed on the OSC side? just insantiate the KS client | 04:00 |
*** fpatwa has joined #openstack-dev | 04:01 | |
stevemar | jamielennox, https://github.com/openstack/python-openstackclient/blob/master/openstackclient/identity/client.py | 04:01 |
*** harlowja is now known as harlowja_away | 04:01 | |
jamielennox | stevemar: so https://review.openstack.org/#/c/67029/2/lib/keystone will kill everything because auth_token doesn't support unversioned endpoints | 04:01 |
jamielennox | so none of the services will boot | 04:02 |
jamielennox | or auth | 04:02 |
stevemar | okay, noted, i can revert that, that goes back to one of my first questions, so auth still needs /v2.0 or /v3 | 04:02 |
jamielennox | yea, all i did was add a new client creation factory | 04:02 |
stevemar | but the endpoints for the identity service, those can be unversioned? | 04:03 |
jamielennox | it will be useful when we don't have a versioned endpoint but nothing supports it yet | 04:03 |
jamielennox | stevemar: no, it's there but it's not integrated in any way | 04:03 |
jamielennox | so at the very least we would need auth_token to support the unversioned endpoint | 04:04 |
jamielennox | then probably the v2.0 CLI | 04:04 |
*** buzztroll has joined #openstack-dev | 04:04 | |
jamielennox | i haven't even tried going through that yet | 04:04 |
*** radez is now known as radez_g0n3 | 04:04 | |
stevemar | hmm okay | 04:04 |
jamielennox | one of the problems with using client.Client rather than client.vX.Client is that it changes behaviour - there are now 2 calls discovery then auth | 04:05 |
jamielennox | we can't necessarily introduce that direct into the versioned clients | 04:05 |
*** HT_Sergio has quit IRC | 04:05 | |
stevemar | jamielennox, maybe jumping right to version discovery was a stretch, i'll just change the patch to replace v2 with v3 | 04:05 |
jamielennox | so the idea was that if you know which version you want to use you say vX.client, but new code should use client.Client | 04:05 |
jamielennox | stevemar: o | 04:06 |
jamielennox | stevemar: i'd be interested if that works as well | 04:06 |
stevemar | when i had done that, OSC worked 'out-of-the-box' so to say | 04:06 |
jamielennox | i'm sure OSC does | 04:06 |
jamielennox | does tempest do a full run? auth_token *should* be able to support the case | 04:07 |
stevemar | jamielennox, hmmm, take a look at the jenkins results for patch set 1. thats when i had just replaced v2 with v3 | 04:07 |
*** sarob has joined #openstack-dev | 04:08 | |
*** buzztroll has quit IRC | 04:09 | |
jamielennox | stevemar: looks fun | 04:10 |
jamielennox | oh, you can't use PKI tokens with v3 :p | 04:10 |
stevemar | jamielennox, i can't tell if the errors are related or not =\ | 04:10 |
*** sarob_ has joined #openstack-dev | 04:10 | |
jamielennox | 2014-01-16 08:44:31.776 23658 WARNING keystoneclient.middleware.auth_token [-] Configuring auth_uri to point to the public identity endpoint is required; clients may not be able to authenticate against an admin endpoint | 04:10 |
*** CaptTofu has joined #openstack-dev | 04:11 | |
jamielennox | auth_token requires a way to download the signing certs from keystone and that's only available on v2 at the moment | 04:11 |
jamielennox | i got an extension approved on identity-api to fix this but i haven't actually implemented it yet | 04:12 |
*** aditirav has joined #openstack-dev | 04:12 | |
*** sarob has quit IRC | 04:13 | |
*** colinmcnamara has joined #openstack-dev | 04:14 | |
stevemar | jamielennox, whered you see that? | 04:14 |
jamielennox | http://logs.openstack.org/29/67029/1/check/check-tempest-dsvm-postgres-full/a702fe3/logs/screen-n-api.txt.gz#_2014-01-16_08_44_31_776 | 04:14 |
jamielennox | i'm not sure its causing the problem though | 04:15 |
jamielennox | it looks like from further down there are calls to the /v2.0 API | 04:15 |
jamielennox | 2014-01-16 08:45:15.803 23952 DEBUG requests.packages.urllib3.connectionpool [-] "GET /v2.0/tokens/revoked HTTP/1.1" 200 686 _make_request /usr/local/lib/python2.7/dist-packages/requests/packages/urllib3/connectionpool.py:344 | 04:15 |
jamielennox | so something hasn't gotten the message it should be using v3 | 04:15 |
*** CaptTofu has quit IRC | 04:15 | |
jamielennox | (unless it's smart enough to remove the /v3 which i don't think it does | 04:16 |
*** sdake has joined #openstack-dev | 04:16 | |
*** _ruhe is now known as ruhe | 04:18 | |
stevemar | jamielennox, ugh, i think this is a topic for a larger audience tomorrow during the hacking | 04:19 |
jamielennox | yea, it's a PITA | 04:19 |
*** coolsvap has quit IRC | 04:21 | |
*** vkozhukalov has joined #openstack-dev | 04:21 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 04:22 | |
*** ijw has joined #openstack-dev | 04:29 | |
*** adriant_ has quit IRC | 04:29 | |
*** Edward-Zhang has quit IRC | 04:29 | |
*** arnaud__ has quit IRC | 04:29 | |
*** rossella_s has quit IRC | 04:29 | |
*** arnaud___ has quit IRC | 04:29 | |
*** chandankumar has joined #openstack-dev | 04:32 | |
*** anniec has joined #openstack-dev | 04:32 | |
*** basha has joined #openstack-dev | 04:33 | |
*** ijw has quit IRC | 04:33 | |
*** colinmcnamara has quit IRC | 04:37 | |
*** carl_baldwin has quit IRC | 04:37 | |
*** fpatwa has quit IRC | 04:41 | |
*** fifieldt has quit IRC | 04:41 | |
*** fifieldt has joined #openstack-dev | 04:42 | |
*** emagana has joined #openstack-dev | 04:42 | |
*** dvarga has joined #openstack-dev | 04:43 | |
*** dvarga has quit IRC | 04:43 | |
*** rohitk has joined #openstack-dev | 04:45 | |
*** kbringard has joined #openstack-dev | 04:46 | |
*** buzztroll has joined #openstack-dev | 04:50 | |
*** buzztrol_ has joined #openstack-dev | 04:51 | |
*** buzztroll has quit IRC | 04:51 | |
*** morazi has quit IRC | 04:51 | |
*** kbringard has quit IRC | 04:51 | |
*** comay has joined #openstack-dev | 04:57 | |
*** Mandell has joined #openstack-dev | 04:58 | |
*** notel has quit IRC | 05:00 | |
*** chandankumar has quit IRC | 05:03 | |
*** mrda has quit IRC | 05:03 | |
*** neelashah has quit IRC | 05:03 | |
*** basha has quit IRC | 05:04 | |
*** Edward-Zhang has joined #openstack-dev | 05:05 | |
*** lbragstad has quit IRC | 05:07 | |
*** ruhe is now known as _ruhe | 05:07 | |
*** alop has quit IRC | 05:08 | |
*** ramishra has quit IRC | 05:08 | |
*** krtaylor has joined #openstack-dev | 05:08 | |
*** basha has joined #openstack-dev | 05:09 | |
*** xarg has quit IRC | 05:11 | |
*** xarg_ is now known as xarg | 05:11 | |
*** yamahata has joined #openstack-dev | 05:12 | |
*** zz_ewindisch is now known as ewindisch | 05:13 | |
*** mrda has joined #openstack-dev | 05:13 | |
*** notel has joined #openstack-dev | 05:14 | |
*** comay has quit IRC | 05:15 | |
*** sarob_ has quit IRC | 05:18 | |
*** teran has quit IRC | 05:18 | |
*** amotoki_ has joined #openstack-dev | 05:18 | |
*** sarob has joined #openstack-dev | 05:18 | |
*** teran has joined #openstack-dev | 05:18 | |
*** evilkry has quit IRC | 05:19 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 05:20 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 05:21 | |
*** sarob_ has joined #openstack-dev | 05:21 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 05:21 | |
*** comay has joined #openstack-dev | 05:21 | |
*** amotoki has quit IRC | 05:22 | |
*** sarob has quit IRC | 05:23 | |
*** sarob_ has quit IRC | 05:25 | |
*** rohitk has quit IRC | 05:28 | |
*** lbragstad has joined #openstack-dev | 05:32 | |
*** llu has quit IRC | 05:36 | |
*** odyssey4me has quit IRC | 05:38 | |
*** admiyo has quit IRC | 05:38 | |
*** llu has joined #openstack-dev | 05:42 | |
*** kbringard has joined #openstack-dev | 05:46 | |
*** jasdeepH has joined #openstack-dev | 05:48 | |
*** sungju has joined #openstack-dev | 05:48 | |
*** jasdeepH has quit IRC | 05:49 | |
*** kbringard has quit IRC | 05:50 | |
*** praneet has joined #openstack-dev | 05:51 | |
*** SumitNaiksatam has quit IRC | 05:51 | |
*** HenryG has quit IRC | 05:52 | |
*** DinaBelova has joined #openstack-dev | 05:53 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 05:53 | |
*** anniec has quit IRC | 05:53 | |
*** rushiagr has joined #openstack-dev | 05:53 | |
*** bauzas has joined #openstack-dev | 05:57 | |
*** sungju has quit IRC | 06:00 | |
*** jasdeepH has joined #openstack-dev | 06:04 | |
*** jasdeepH has quit IRC | 06:04 | |
*** reed has quit IRC | 06:07 | |
*** odyssey4me has joined #openstack-dev | 06:08 | |
*** lbragstad has quit IRC | 06:08 | |
*** xarg_ has joined #openstack-dev | 06:08 | |
*** neeti has joined #openstack-dev | 06:10 | |
*** CaptTofu has joined #openstack-dev | 06:12 | |
*** carlp has quit IRC | 06:12 | |
*** buzztrol_ has quit IRC | 06:14 | |
*** buzztroll has joined #openstack-dev | 06:15 | |
*** chandankumar has joined #openstack-dev | 06:15 | |
*** CaptTofu has quit IRC | 06:16 | |
*** buzztroll has quit IRC | 06:18 | |
*** buzztroll has joined #openstack-dev | 06:18 | |
*** rohitk has joined #openstack-dev | 06:20 | |
*** rdas has joined #openstack-dev | 06:24 | |
*** yeylon_ has joined #openstack-dev | 06:25 | |
*** denis_makogon has joined #openstack-dev | 06:26 | |
*** chrispeters has quit IRC | 06:29 | |
*** ijw has joined #openstack-dev | 06:29 | |
*** blackstar257 has joined #openstack-dev | 06:30 | |
*** kbringard has joined #openstack-dev | 06:30 | |
*** kbringard has quit IRC | 06:34 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 06:34 | |
*** ijw has quit IRC | 06:34 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 06:36 | |
*** ramishra has joined #openstack-dev | 06:36 | |
*** afazekas_ has quit IRC | 06:37 | |
*** gokrokve has quit IRC | 06:38 | |
*** gokrokve has joined #openstack-dev | 06:38 | |
*** e0ne has joined #openstack-dev | 06:38 | |
*** gokrokve has quit IRC | 06:42 | |
*** SergeyLukjanov_ has joined #openstack-dev | 06:44 | |
*** SergeyLukjanov_ has quit IRC | 06:45 | |
*** kbringard has joined #openstack-dev | 06:46 | |
*** DinaBelova_ has joined #openstack-dev | 06:46 | |
*** asalkeld has joined #openstack-dev | 06:49 | |
*** praneet_ has joined #openstack-dev | 06:50 | |
*** kbringard has quit IRC | 06:50 | |
*** nelsnelson has quit IRC | 06:51 | |
*** vkozhukalov has quit IRC | 06:52 | |
*** nelsnelson has joined #openstack-dev | 06:53 | |
*** praneet has quit IRC | 06:54 | |
*** rraja has joined #openstack-dev | 06:55 | |
*** ewindisch is now known as zz_ewindisch | 06:55 | |
*** DinaBelova has quit IRC | 06:56 | |
*** DinaBelova_ is now known as DinaBelova | 06:56 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 06:58 | |
*** DinaBelova is now known as DinaBelova_ | 06:58 | |
*** rm_work is now known as rm_work|away | 07:00 | |
*** mrda has quit IRC | 07:01 | |
*** erkrnt has left #openstack-dev | 07:03 | |
*** jprovazn has joined #openstack-dev | 07:04 | |
*** bauzas has quit IRC | 07:04 | |
*** odyssey4me has quit IRC | 07:04 | |
*** AnilV4 has quit IRC | 07:05 | |
*** mrunge has joined #openstack-dev | 07:06 | |
*** ig has joined #openstack-dev | 07:07 | |
*** yolanda has joined #openstack-dev | 07:07 | |
ig | /CLOSE | 07:07 |
*** ig has left #openstack-dev | 07:07 | |
*** nati_uen_ has quit IRC | 07:11 | |
*** odyssey4me has joined #openstack-dev | 07:12 | |
*** aeperezt has quit IRC | 07:15 | |
*** teran has quit IRC | 07:16 | |
*** yeylon_ has quit IRC | 07:19 | |
*** basha has quit IRC | 07:19 | |
*** mindpixel has joined #openstack-dev | 07:24 | |
*** afazekas_ has joined #openstack-dev | 07:25 | |
*** jcoufal has joined #openstack-dev | 07:27 | |
*** praneet_ has quit IRC | 07:28 | |
*** praneet has joined #openstack-dev | 07:29 | |
*** mindpixel has quit IRC | 07:33 | |
*** praneet has quit IRC | 07:33 | |
*** alex_klimov has joined #openstack-dev | 07:33 | |
*** AnilV4 has joined #openstack-dev | 07:34 | |
*** KeithSharp has quit IRC | 07:36 | |
*** Drankis has joined #openstack-dev | 07:36 | |
*** rushiagr has quit IRC | 07:40 | |
*** sthaha has quit IRC | 07:45 | |
*** kbringard has joined #openstack-dev | 07:46 | |
*** e0ne has quit IRC | 07:48 | |
*** xjiujiu has joined #openstack-dev | 07:49 | |
*** kbringard has quit IRC | 07:50 | |
*** romcheg has joined #openstack-dev | 07:50 | |
*** stevemar has quit IRC | 07:52 | |
*** basha has joined #openstack-dev | 07:52 | |
*** jamielennox is now known as jamielennox|away | 07:54 | |
*** flaper87|afk is now known as flaper87 | 07:55 | |
*** clayb has quit IRC | 07:56 | |
*** DinaBelova_ is now known as DinaBelova | 07:58 | |
*** xjiujiu has quit IRC | 07:58 | |
*** xjiujiu has joined #openstack-dev | 07:58 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 07:58 | |
*** xgsa has joined #openstack-dev | 08:00 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 08:01 | |
*** odyssey4me has quit IRC | 08:01 | |
*** belmoreira has joined #openstack-dev | 08:02 | |
*** fifieldt has quit IRC | 08:05 | |
*** dkuffner has joined #openstack-dev | 08:06 | |
*** romcheg has quit IRC | 08:06 | |
*** xjiujiu has quit IRC | 08:07 | |
*** fifieldt has joined #openstack-dev | 08:07 | |
*** xjiujiu has joined #openstack-dev | 08:08 | |
*** buzztroll has quit IRC | 08:08 | |
*** bauzas has joined #openstack-dev | 08:08 | |
*** odyssey4me has joined #openstack-dev | 08:09 | |
*** ramishra has quit IRC | 08:12 | |
*** CaptTofu has joined #openstack-dev | 08:12 | |
*** CaptTofu has quit IRC | 08:17 | |
*** sahid has joined #openstack-dev | 08:17 | |
*** sushil_ has joined #openstack-dev | 08:18 | |
*** jcoufal has quit IRC | 08:21 | |
*** xqueralt has joined #openstack-dev | 08:22 | |
*** erkules_ is now known as erkules | 08:22 | |
*** teran has joined #openstack-dev | 08:22 | |
*** xjiujiu has quit IRC | 08:23 | |
*** xjiujiu has joined #openstack-dev | 08:23 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 08:24 | |
*** florentflament has joined #openstack-dev | 08:24 | |
*** mancdaz_away is now known as mancdaz | 08:25 | |
*** mancdaz is now known as mancdaz_away | 08:25 | |
*** vkozhukalov has joined #openstack-dev | 08:28 | |
*** sthaha has joined #openstack-dev | 08:28 | |
*** sthaha has quit IRC | 08:28 | |
*** sthaha has joined #openstack-dev | 08:28 | |
*** xga has joined #openstack-dev | 08:29 | |
*** ijw has joined #openstack-dev | 08:30 | |
*** jcoufal has joined #openstack-dev | 08:31 | |
*** xjiujiu has quit IRC | 08:31 | |
*** rushiagr has joined #openstack-dev | 08:31 | |
*** xjiujiu has joined #openstack-dev | 08:31 | |
*** MaxV has joined #openstack-dev | 08:32 | |
*** mancdaz_away is now known as mancdaz | 08:34 | |
*** ijw has quit IRC | 08:35 | |
*** odyssey4me has quit IRC | 08:36 | |
*** basha_ has joined #openstack-dev | 08:37 | |
*** fifieldt has quit IRC | 08:37 | |
*** buzztroll has joined #openstack-dev | 08:38 | |
*** basha has quit IRC | 08:39 | |
*** basha_ is now known as basha | 08:39 | |
*** vuntz has quit IRC | 08:41 | |
*** NikitaKonovalov has joined #openstack-dev | 08:42 | |
*** ygbo has joined #openstack-dev | 08:43 | |
*** odyssey4me has joined #openstack-dev | 08:44 | |
*** vuntz has joined #openstack-dev | 08:44 | |
*** kbrierly has quit IRC | 08:44 | |
*** xjiujiu has quit IRC | 08:45 | |
*** e0ne has joined #openstack-dev | 08:45 | |
*** xjiujiu has joined #openstack-dev | 08:45 | |
*** kbringard has joined #openstack-dev | 08:46 | |
*** RuiChen has joined #openstack-dev | 08:46 | |
*** e0ne_ has joined #openstack-dev | 08:46 | |
*** jtomasek has joined #openstack-dev | 08:47 | |
*** mmagr has joined #openstack-dev | 08:49 | |
*** xga_ has joined #openstack-dev | 08:49 | |
*** odyssey4me has quit IRC | 08:49 | |
*** vartom1111111111 has joined #openstack-dev | 08:49 | |
*** corXi has joined #openstack-dev | 08:49 | |
*** kbringard has quit IRC | 08:50 | |
*** ctlaugh has quit IRC | 08:50 | |
*** JordanP has joined #openstack-dev | 08:50 | |
*** xga has quit IRC | 08:51 | |
*** e0ne has quit IRC | 08:51 | |
*** basha has quit IRC | 08:52 | |
*** Drankis has quit IRC | 08:52 | |
*** ctlaugh has joined #openstack-dev | 08:54 | |
*** xjiujiu has quit IRC | 08:55 | |
*** xjiujiu has joined #openstack-dev | 08:55 | |
*** novel1 has quit IRC | 08:55 | |
*** ogelbukh has quit IRC | 08:55 | |
*** _cjones_ has joined #openstack-dev | 08:56 | |
*** odyssey4me has joined #openstack-dev | 08:56 | |
*** lyle has joined #openstack-dev | 08:58 | |
*** david-lyle has quit IRC | 08:58 | |
*** emagana has quit IRC | 08:59 | |
*** basha has joined #openstack-dev | 08:59 | |
*** keekz has quit IRC | 08:59 | |
*** mdenny has quit IRC | 09:01 | |
*** mdenny has joined #openstack-dev | 09:01 | |
*** keekz has joined #openstack-dev | 09:01 | |
*** vkozhukalov has quit IRC | 09:03 | |
*** alpha_ori has quit IRC | 09:04 | |
*** xjiujiu has quit IRC | 09:04 | |
*** ogelbukh has joined #openstack-dev | 09:05 | |
*** xjiujiu has joined #openstack-dev | 09:05 | |
ekarlso | BobBall: around for some xsquestions | 09:06 |
*** ramishra has joined #openstack-dev | 09:06 | |
*** alpha_ori has joined #openstack-dev | 09:07 | |
*** bauzas has quit IRC | 09:07 | |
*** bauzas has joined #openstack-dev | 09:07 | |
*** giulivo has joined #openstack-dev | 09:07 | |
*** jdurgin1 has quit IRC | 09:09 | |
*** avishay has quit IRC | 09:12 | |
*** buzztroll has quit IRC | 09:12 | |
*** fbo_away is now known as fbo | 09:12 | |
*** Alexei_987 has quit IRC | 09:12 | |
*** xjiujiu has quit IRC | 09:12 | |
*** xjiujiu has joined #openstack-dev | 09:13 | |
*** jistr has joined #openstack-dev | 09:14 | |
*** ijw_ has joined #openstack-dev | 09:14 | |
*** _cjones_ has quit IRC | 09:15 | |
*** jdurgin2 has quit IRC | 09:15 | |
BobBall | I am indeed ekarlso | 09:16 |
*** _ruhe is now known as ruhe | 09:17 | |
*** vkozhukalov has joined #openstack-dev | 09:18 | |
*** ijw_ has quit IRC | 09:18 | |
*** xjiujiu has quit IRC | 09:18 | |
*** ijw has joined #openstack-dev | 09:19 | |
*** xjiujiu has joined #openstack-dev | 09:19 | |
*** rushiagr is now known as rushiagr_away | 09:20 | |
*** yassine has joined #openstack-dev | 09:20 | |
*** ndipanov has joined #openstack-dev | 09:20 | |
*** iartarisi has joined #openstack-dev | 09:21 | |
*** markmc has joined #openstack-dev | 09:22 | |
*** max_lobur_afk is now known as max_lobur | 09:23 | |
*** _neoXsys_ has joined #openstack-dev | 09:25 | |
*** ppetit has quit IRC | 09:25 | |
*** mkollaro has joined #openstack-dev | 09:27 | |
*** aditirav has quit IRC | 09:27 | |
*** aditirav has joined #openstack-dev | 09:28 | |
*** sushil_ has quit IRC | 09:28 | |
*** RuiChen has quit IRC | 09:29 | |
*** xjiujiu has quit IRC | 09:30 | |
*** sushil_ has joined #openstack-dev | 09:30 | |
*** xjiujiu has joined #openstack-dev | 09:30 | |
*** paragan has quit IRC | 09:31 | |
*** Edward-Zhang has quit IRC | 09:35 | |
*** romcheg has joined #openstack-dev | 09:35 | |
*** arozumenko has joined #openstack-dev | 09:36 | |
*** rushiagr_away is now known as rushiagr | 09:39 | |
*** buzztroll has joined #openstack-dev | 09:39 | |
*** sergmelikyan has joined #openstack-dev | 09:40 | |
*** ruhe is now known as ruhe_away | 09:41 | |
*** ruhe_away is now known as ruhe | 09:42 | |
*** Drankis has joined #openstack-dev | 09:43 | |
*** xjiujiu has quit IRC | 09:43 | |
*** xjiujiu has joined #openstack-dev | 09:44 | |
*** buzztroll has quit IRC | 09:44 | |
*** denis_makogon has quit IRC | 09:44 | |
*** kbringard has joined #openstack-dev | 09:46 | |
*** ijw has quit IRC | 09:47 | |
*** ijw has joined #openstack-dev | 09:48 | |
*** tonix_ has quit IRC | 09:49 | |
*** ijw_ has joined #openstack-dev | 09:49 | |
*** ijw_ has quit IRC | 09:50 | |
*** ijw has quit IRC | 09:50 | |
*** ijw has joined #openstack-dev | 09:50 | |
*** kbringard has quit IRC | 09:50 | |
*** xingchao has quit IRC | 09:52 | |
*** xjiujiu has quit IRC | 09:53 | |
*** xjiujiu has joined #openstack-dev | 09:53 | |
*** odyssey4me has quit IRC | 09:54 | |
*** gszasz has joined #openstack-dev | 09:56 | |
*** yamahata has quit IRC | 09:56 | |
*** xchu has quit IRC | 09:59 | |
*** Longgeek has quit IRC | 10:00 | |
*** martyntaylor has joined #openstack-dev | 10:00 | |
*** ijw has quit IRC | 10:00 | |
*** xjiujiu has quit IRC | 10:01 | |
*** Longgeek has joined #openstack-dev | 10:01 | |
*** xjiujiu has joined #openstack-dev | 10:01 | |
*** martyntaylor has quit IRC | 10:01 | |
*** martyntaylor has joined #openstack-dev | 10:03 | |
*** odyssey4me has joined #openstack-dev | 10:03 | |
*** _neoXsys_ has quit IRC | 10:06 | |
*** Longgeek has quit IRC | 10:07 | |
*** rohitk has quit IRC | 10:07 | |
*** exed_ has joined #openstack-dev | 10:08 | |
*** basha has quit IRC | 10:09 | |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 10:10 | |
*** SergeyLukjanov_a is now known as SergeyLukjanov_ | 10:11 | |
*** sushil_ has quit IRC | 10:13 | |
*** neeti has quit IRC | 10:13 | |
*** CaptTofu has joined #openstack-dev | 10:13 | |
*** jp_at_hp has joined #openstack-dev | 10:14 | |
*** neeti has joined #openstack-dev | 10:14 | |
*** xjiujiu has quit IRC | 10:16 | |
*** xjiujiu has joined #openstack-dev | 10:16 | |
*** CaptTofu has quit IRC | 10:18 | |
*** danpb has joined #openstack-dev | 10:19 | |
*** _neoXsys_ has joined #openstack-dev | 10:19 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 10:21 | |
*** rohitk has joined #openstack-dev | 10:21 | |
*** Alexei_987 has joined #openstack-dev | 10:22 | |
*** athomas has joined #openstack-dev | 10:23 | |
*** xjiujiu has quit IRC | 10:25 | |
*** xjiujiu has joined #openstack-dev | 10:25 | |
*** YorikSar has joined #openstack-dev | 10:27 | |
*** _neoXsys_ has quit IRC | 10:28 | |
*** evgenyf has joined #openstack-dev | 10:28 | |
*** mrda has joined #openstack-dev | 10:29 | |
*** nermina has quit IRC | 10:33 | |
*** ramishra has quit IRC | 10:37 | |
*** buzztroll has joined #openstack-dev | 10:39 | |
*** xjiujiu has quit IRC | 10:39 | |
*** xjiujiu has joined #openstack-dev | 10:40 | |
*** bvandenh has joined #openstack-dev | 10:41 | |
*** _neoXsys_ has joined #openstack-dev | 10:41 | |
*** kbringard has joined #openstack-dev | 10:46 | |
*** vkozhukalov has quit IRC | 10:46 | |
*** evgenyf has quit IRC | 10:49 | |
*** pixelb has joined #openstack-dev | 10:49 | |
*** romcheg has quit IRC | 10:49 | |
*** kbringard has quit IRC | 10:50 | |
*** romcheg has joined #openstack-dev | 10:51 | |
*** nosnos has quit IRC | 10:53 | |
*** xjiujiu has quit IRC | 10:57 | |
*** xjiujiu has joined #openstack-dev | 10:57 | |
*** vkozhukalov has joined #openstack-dev | 10:58 | |
*** yaguang has quit IRC | 10:58 | |
*** lucasagomes has joined #openstack-dev | 11:00 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 11:00 | |
*** paragan has joined #openstack-dev | 11:02 | |
*** sushil_ has joined #openstack-dev | 11:02 | |
*** Nikolay_St has quit IRC | 11:03 | |
*** Longgeek has joined #openstack-dev | 11:03 | |
*** eglynn has joined #openstack-dev | 11:04 | |
*** amotoki has joined #openstack-dev | 11:05 | |
*** derekh has joined #openstack-dev | 11:05 | |
*** amotoki_ has quit IRC | 11:07 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 11:07 | |
*** Longgeek has quit IRC | 11:08 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 11:08 | |
*** martyntaylor has quit IRC | 11:09 | |
*** NikitaKonovalov has quit IRC | 11:10 | |
*** nermina has joined #openstack-dev | 11:11 | |
*** buzztroll has quit IRC | 11:13 | |
*** l_a_m has quit IRC | 11:13 | |
*** pcm_ has joined #openstack-dev | 11:13 | |
*** pcm_ has quit IRC | 11:15 | |
*** fpatwa has joined #openstack-dev | 11:15 | |
*** pcm_ has joined #openstack-dev | 11:16 | |
*** kolesovdv has joined #openstack-dev | 11:16 | |
*** athomas has quit IRC | 11:17 | |
*** gmurphy has left #openstack-dev | 11:18 | |
*** xjiujiu has quit IRC | 11:19 | |
*** d0ugal has joined #openstack-dev | 11:19 | |
*** xjiujiu has joined #openstack-dev | 11:19 | |
*** jamespage_ has joined #openstack-dev | 11:22 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 11:22 | |
*** ArxCruz has joined #openstack-dev | 11:22 | |
*** nermina has quit IRC | 11:22 | |
*** xjiujiu has quit IRC | 11:25 | |
*** xjiujiu has joined #openstack-dev | 11:26 | |
*** athomas has joined #openstack-dev | 11:26 | |
*** mrda has quit IRC | 11:26 | |
*** jamespage_ has quit IRC | 11:26 | |
*** vipul is now known as vipul-away | 11:31 | |
*** ruhe is now known as _ruhe | 11:33 | |
*** rfolco has joined #openstack-dev | 11:33 | |
*** rushiagr2 has joined #openstack-dev | 11:34 | |
*** rushiagr has quit IRC | 11:34 | |
*** rushiagr3 has joined #openstack-dev | 11:36 | |
*** sumanthns has joined #openstack-dev | 11:36 | |
*** rushiagr2 has quit IRC | 11:36 | |
*** xjiujiu has quit IRC | 11:37 | |
*** xjiujiu has joined #openstack-dev | 11:37 | |
*** NikitaKonovalov has joined #openstack-dev | 11:39 | |
*** buzztroll has joined #openstack-dev | 11:39 | |
*** rushiagr3 has quit IRC | 11:40 | |
*** rushiagr3 has joined #openstack-dev | 11:40 | |
*** DinaBelova is now known as DinaBelova_ | 11:41 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 11:41 | |
*** buzztroll has quit IRC | 11:44 | |
*** xjiujiu has quit IRC | 11:46 | |
*** kbringard has joined #openstack-dev | 11:46 | |
*** xjiujiu has joined #openstack-dev | 11:46 | |
*** DinaBelova_ is now known as DinaBelova | 11:47 | |
*** kbringard has quit IRC | 11:51 | |
*** _ruhe is now known as ruhe | 11:52 | |
*** sumanthns has quit IRC | 11:54 | |
*** rushiagr3 is now known as rushiagr_away | 11:54 | |
*** xjiujiu has quit IRC | 11:56 | |
*** jingwang has quit IRC | 11:56 | |
*** xjiujiu has joined #openstack-dev | 11:56 | |
*** jcoufal has quit IRC | 11:56 | |
*** jingwang has joined #openstack-dev | 11:57 | |
*** martyntaylor has joined #openstack-dev | 11:57 | |
*** DinaBelova is now known as DinaBelova_ | 12:00 | |
*** vkozhukalov has quit IRC | 12:00 | |
*** asalkeld has quit IRC | 12:01 | |
*** fpatwa has quit IRC | 12:03 | |
*** Longgeek has joined #openstack-dev | 12:04 | |
*** rraja has quit IRC | 12:05 | |
*** ijw has joined #openstack-dev | 12:05 | |
*** dstanek has quit IRC | 12:06 | |
*** jingwang has quit IRC | 12:06 | |
*** jingwang has joined #openstack-dev | 12:07 | |
*** rushiagr_away has quit IRC | 12:08 | |
*** colinmcnamara has joined #openstack-dev | 12:10 | |
*** jingwang has quit IRC | 12:12 | |
*** vkozhukalov has joined #openstack-dev | 12:12 | |
*** jingwang has joined #openstack-dev | 12:12 | |
*** romcheg has quit IRC | 12:14 | |
*** CaptTofu has joined #openstack-dev | 12:14 | |
*** romcheg has joined #openstack-dev | 12:15 | |
*** rushiagr_away has joined #openstack-dev | 12:15 | |
*** vkozhukalov has quit IRC | 12:17 | |
*** sthaha has quit IRC | 12:19 | |
*** FunnyLookinHat has joined #openstack-dev | 12:19 | |
*** CaptTofu has quit IRC | 12:19 | |
*** rkukura has quit IRC | 12:24 | |
*** rushiagr_away has quit IRC | 12:24 | |
ijw | Paging BobBall to the white courtesy phone, BobBall to the white courtesy phone... | 12:26 |
*** sahid` has joined #openstack-dev | 12:26 | |
*** colinmcnamara has quit IRC | 12:27 | |
*** sahid has quit IRC | 12:28 | |
*** rushiagr_away has joined #openstack-dev | 12:28 | |
*** colinmcnamara has joined #openstack-dev | 12:30 | |
*** aditirav_ has joined #openstack-dev | 12:32 | |
*** vkozhukalov has joined #openstack-dev | 12:32 | |
*** kushal has joined #openstack-dev | 12:32 | |
*** jcoufal has joined #openstack-dev | 12:33 | |
*** rods has joined #openstack-dev | 12:34 | |
*** aditirav has quit IRC | 12:34 | |
*** aditirav_ is now known as aditirav | 12:34 | |
*** colinmcnamara has quit IRC | 12:36 | |
*** colinmcnamara has joined #openstack-dev | 12:38 | |
*** buzztroll has joined #openstack-dev | 12:39 | |
*** rushiagr_away has quit IRC | 12:39 | |
*** glenng has quit IRC | 12:40 | |
*** chandankumar has quit IRC | 12:42 | |
*** kbrierly has joined #openstack-dev | 12:44 | |
*** rushiagr_away has joined #openstack-dev | 12:45 | |
*** kbringard has joined #openstack-dev | 12:46 | |
*** derekh has quit IRC | 12:46 | |
*** sahid` has quit IRC | 12:46 | |
*** artom has joined #openstack-dev | 12:49 | |
*** kbringard has quit IRC | 12:50 | |
*** emagana has joined #openstack-dev | 12:52 | |
*** dstanek has joined #openstack-dev | 12:53 | |
*** _neoXsys_ has quit IRC | 12:54 | |
*** CaptTofu has joined #openstack-dev | 12:55 | |
*** emagana has quit IRC | 12:56 | |
*** aditirav has quit IRC | 12:57 | |
*** dstanek has quit IRC | 12:59 | |
*** gimps has quit IRC | 13:01 | |
*** salv-orlando has quit IRC | 13:02 | |
*** zz_ewindisch is now known as ewindisch | 13:02 | |
*** gimps has joined #openstack-dev | 13:03 | |
*** sthaha has joined #openstack-dev | 13:04 | |
*** sthaha has quit IRC | 13:04 | |
*** rushiagr_away is now known as rushiagr3 | 13:04 | |
*** sthaha has joined #openstack-dev | 13:04 | |
*** d0ugal has quit IRC | 13:05 | |
*** dvarga has joined #openstack-dev | 13:06 | |
*** sthaha has quit IRC | 13:06 | |
*** d0ugal has joined #openstack-dev | 13:06 | |
*** sthaha has joined #openstack-dev | 13:06 | |
*** ewindisch is now known as zz_ewindisch | 13:09 | |
*** eglynn is now known as eglynn-afk | 13:10 | |
*** markmc has quit IRC | 13:11 | |
*** buzztroll has quit IRC | 13:13 | |
*** zz_ewindisch is now known as ewindisch | 13:14 | |
*** sgordon has joined #openstack-dev | 13:15 | |
*** nermina has joined #openstack-dev | 13:16 | |
dolphm | jamielennox|away: run flake8! | 13:18 |
*** ewindisch is now known as zz_ewindisch | 13:18 | |
*** amotoki_ has joined #openstack-dev | 13:18 | |
*** amotoki has quit IRC | 13:20 | |
*** jcoufal has quit IRC | 13:21 | |
*** jdob has joined #openstack-dev | 13:22 | |
*** mfink has quit IRC | 13:26 | |
dolphm | morganfainberg: bknudson: gyee_nothere: jamielennox|away: rebase + minor update to https://review.openstack.org/#/c/60244/ (cc- marekd) | 13:27 |
*** lbragstad has joined #openstack-dev | 13:27 | |
*** dave_tucker_zzz is now known as dave_tucker | 13:28 | |
*** rushiagr3 has quit IRC | 13:28 | |
*** ijw has quit IRC | 13:28 | |
*** dstanek has joined #openstack-dev | 13:29 | |
*** rdas has quit IRC | 13:29 | |
*** jingwang has quit IRC | 13:30 | |
*** thomasem has joined #openstack-dev | 13:31 | |
*** mrunge has quit IRC | 13:31 | |
*** rohitk has quit IRC | 13:33 | |
*** DinaBelova_ is now known as DinaBelova | 13:33 | |
*** dstanek has quit IRC | 13:34 | |
viktors | dhellmann: hi! | 13:35 |
*** dims has quit IRC | 13:35 | |
*** YorikSar has quit IRC | 13:37 | |
*** morazi has joined #openstack-dev | 13:37 | |
*** mfink has joined #openstack-dev | 13:38 | |
*** YorikSar has joined #openstack-dev | 13:39 | |
*** danielbruno has joined #openstack-dev | 13:39 | |
*** buzztroll has joined #openstack-dev | 13:39 | |
*** carl_baldwin has joined #openstack-dev | 13:40 | |
*** markmc has joined #openstack-dev | 13:40 | |
*** nati_ueno has joined #openstack-dev | 13:42 | |
*** nati_ueno has quit IRC | 13:42 | |
*** jcoufal-m has joined #openstack-dev | 13:43 | |
*** buzztroll has quit IRC | 13:44 | |
*** nati_ueno has joined #openstack-dev | 13:44 | |
*** DinaBelova is now known as DinaBelova_ | 13:44 | |
*** vladikr has joined #openstack-dev | 13:44 | |
*** jruzicka has joined #openstack-dev | 13:44 | |
*** jcoufal-m_ has joined #openstack-dev | 13:45 | |
*** jcoufal-m_ has quit IRC | 13:45 | |
*** jcoufal-m_ has joined #openstack-dev | 13:45 | |
*** achampion has quit IRC | 13:45 | |
*** emagana has joined #openstack-dev | 13:45 | |
*** kbringard has joined #openstack-dev | 13:46 | |
*** rohitk has joined #openstack-dev | 13:46 | |
*** neelashah has joined #openstack-dev | 13:46 | |
*** dims has joined #openstack-dev | 13:48 | |
*** nati_ueno has quit IRC | 13:48 | |
*** jcoufal-m has quit IRC | 13:49 | |
*** DinaBelova_ is now known as DinaBelova | 13:49 | |
*** emagana has quit IRC | 13:50 | |
*** nermina has quit IRC | 13:50 | |
*** emagana has joined #openstack-dev | 13:50 | |
*** rohitk has quit IRC | 13:50 | |
*** kbringard has quit IRC | 13:50 | |
*** salv-orlando has joined #openstack-dev | 13:52 | |
*** zul has quit IRC | 13:52 | |
*** jcoufal-m_ has quit IRC | 13:53 | |
*** yamahata has joined #openstack-dev | 13:53 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 13:54 | |
*** dprince has joined #openstack-dev | 13:55 | |
*** doug-fish has joined #openstack-dev | 13:55 | |
*** emagana has quit IRC | 13:55 | |
*** zul has joined #openstack-dev | 13:55 | |
*** emagana has joined #openstack-dev | 13:55 | |
*** markmc has quit IRC | 13:56 | |
*** kwss has joined #openstack-dev | 13:56 | |
*** herndon_ has joined #openstack-dev | 13:57 | |
*** markmc has joined #openstack-dev | 13:59 | |
*** CaptTofu has quit IRC | 14:00 | |
*** CaptTofu has joined #openstack-dev | 14:00 | |
*** jcoufal has joined #openstack-dev | 14:01 | |
*** kwss has quit IRC | 14:01 | |
*** lbragstad has quit IRC | 14:01 | |
*** jayg|g0n3 is now known as jayg | 14:02 | |
*** glenng has joined #openstack-dev | 14:02 | |
*** mfer has joined #openstack-dev | 14:03 | |
*** rohitk has joined #openstack-dev | 14:03 | |
*** lbragstad has joined #openstack-dev | 14:03 | |
*** jruzicka has quit IRC | 14:04 | |
*** CaptTofu has quit IRC | 14:05 | |
*** annegent_ has joined #openstack-dev | 14:05 | |
*** sushil_ has quit IRC | 14:05 | |
*** morazi has joined #openstack-dev | 14:06 | |
*** jhesketh__ has quit IRC | 14:06 | |
*** aspiers has quit IRC | 14:07 | |
*** markmcclain has joined #openstack-dev | 14:07 | |
*** sushil_ has joined #openstack-dev | 14:08 | |
*** rushiagr3 has joined #openstack-dev | 14:08 | |
dolphm | marekd: ping | 14:08 |
*** Vuser has joined #openstack-dev | 14:09 | |
*** rushiagr3 is now known as rushiagr | 14:09 | |
*** spzala has joined #openstack-dev | 14:10 | |
*** safchain has joined #openstack-dev | 14:10 | |
*** Vuser has quit IRC | 14:10 | |
*** prad has joined #openstack-dev | 14:11 | |
*** joesavak has joined #openstack-dev | 14:11 | |
*** jaypipes has joined #openstack-dev | 14:11 | |
marekd | dolphm: o/ | 14:11 |
dolphm | marekd: just curious if you saw the last changes we landed to the mappping api https://github.com/openstack/identity-api/blob/master/openstack-identity-api/v3/src/markdown/identity-api-v3-os-federation-ext.md | 14:12 |
*** gordc has joined #openstack-dev | 14:13 | |
*** NikitaKonovalov has quit IRC | 14:13 | |
dolphm | marekd: and i assume you haven't seen this -- we put together some more powerful examples (reflecting a subtly different API that what's merged) https://gist.github.com/dolph/8446375 | 14:13 |
*** NikitaKonovalov has joined #openstack-dev | 14:13 | |
*** yaguang has joined #openstack-dev | 14:14 | |
marekd | dolphm: looking,i saw jsonschema is now used. | 14:14 |
dolphm | (local is a list just like remote, and we're using "templating" to populate the user object arbitrarily based on indexes and some arbitrary syntax we made up | 14:14 |
*** nati_ueno has joined #openstack-dev | 14:14 | |
dolphm | marekd: yeah, the mapping API was complicated enough that stevemar wanted to use jsonschema to validate mappings (i think at gyee_nothere's suggestion) | 14:14 |
dolphm | writing a jsonschema for it has proven difficult lol | 14:15 |
marekd | dolphm: yes, gyee's. | 14:15 |
marekd | dolphm: does it somehow impack IdP CRUD code? I didn't notice anything so far. | 14:15 |
marekd | impact* | 14:15 |
*** jhesketh_ has quit IRC | 14:16 | |
*** lbragstad has quit IRC | 14:17 | |
*** nati_ueno has quit IRC | 14:17 | |
*** artom has quit IRC | 14:18 | |
marekd | dolphm: still curious whether you thought about complex parameters - like ADFS_EGROUPS: "g1;g2;g3;g4;g5" ? | 14:18 |
*** nati_ueno has joined #openstack-dev | 14:18 | |
*** zz_ewindisch is now known as ewindisch | 14:18 | |
*** dave_tucker is now known as dave_tucker_zzz | 14:18 | |
dolphm | marekd: does not impact identity providers, just mapping | 14:19 |
marekd | dolphm: ack. | 14:19 |
dolphm | marekd: i assume that would be parsed apart before being fed to mapping, like attributes['EGROUPS'] = ['g1', 'g2', 'g3', 'g4', 'g5'] | 14:19 |
dolphm | {'EGROUPS': ['g1', 'g2', 'g3', 'g4', 'g5']} | 14:19 |
*** mlavalle has joined #openstack-dev | 14:20 | |
*** sandywalsh has quit IRC | 14:20 | |
marekd | uhm. | 14:20 |
*** artom has joined #openstack-dev | 14:21 | |
*** rossella_s has joined #openstack-dev | 14:21 | |
*** dave_tucker_zzz is now known as dave_tucker | 14:21 | |
*** tongli has joined #openstack-dev | 14:22 | |
*** dbalog has joined #openstack-dev | 14:22 | |
*** amotoki_ has quit IRC | 14:22 | |
marekd | dolphm: are you done with the hackaton? | 14:22 |
*** YorikSar has quit IRC | 14:23 | |
*** nplanel has joined #openstack-dev | 14:23 | |
*** yamahata has quit IRC | 14:23 | |
*** diakunchikov_ has quit IRC | 14:23 | |
*** yamahata has joined #openstack-dev | 14:23 | |
*** YorikSar has joined #openstack-dev | 14:23 | |
dolphm | marekd: today is the last day, which we're just starting | 14:23 |
dolphm | marekd: everyone just walked in | 14:23 |
*** vijendar has joined #openstack-dev | 14:24 | |
*** peristeri has joined #openstack-dev | 14:24 | |
*** dstanek has joined #openstack-dev | 14:25 | |
*** nermina has joined #openstack-dev | 14:26 | |
marekd | dolphm: cool, good luck then! | 14:26 |
*** topol has joined #openstack-dev | 14:27 | |
*** chandankumar has joined #openstack-dev | 14:27 | |
viktors | dhellmann: around? | 14:27 |
*** eharney has joined #openstack-dev | 14:28 | |
*** xjiujiu has quit IRC | 14:30 | |
*** jecarey has joined #openstack-dev | 14:31 | |
*** herndon_ has quit IRC | 14:31 | |
*** zaneb has joined #openstack-dev | 14:31 | |
*** radez_g0n3 is now known as radez | 14:32 | |
*** jtomasek has quit IRC | 14:33 | |
*** jistr has quit IRC | 14:33 | |
*** sandywalsh has joined #openstack-dev | 14:33 | |
bknudson | dolphm: what's on the agenda today? | 14:33 |
*** aspiers has joined #openstack-dev | 14:34 | |
dolphm | bknudson: adam is working on implementing revocation events (with a kvs-only backend for i2) | 14:34 |
*** sahid has joined #openstack-dev | 14:34 | |
dolphm | bknudson: we need to code review key dist 59602, 59603, 59604 | 14:34 |
dolphm | bknudson: identity providers 60244 needs to be re-approved | 14:35 |
dolphm | bknudson: stevemar is working on attribute mapping implementation (he was hoping you could help!) | 14:35 |
dolphm | (i think) | 14:35 |
marekd | dolphm: I could also help! :D | 14:36 |
dolphm | bknudson: filtering collections (43257) needs code review | 14:36 |
dolphm | bknudson: henry is working on deployer defined collection limits | 14:36 |
bknudson | you're going to be there all weekend | 14:36 |
*** eglynn-afk is now known as eglynn | 14:36 | |
dolphm | i'm going to be baby sitting the gate all weekend for sure | 14:37 |
*** diakunchikov has joined #openstack-dev | 14:37 | |
bknudson | need another week for hacakaton | 14:37 |
*** jistr has joined #openstack-dev | 14:37 | |
*** browne has joined #openstack-dev | 14:37 | |
*** achampion has joined #openstack-dev | 14:37 | |
*** mrodden has quit IRC | 14:38 | |
dolphm | that's pretty much it. we landed jaypipes' /v3/regions/ overnight -- and have lots of other stuff in the gate | 14:38 |
dolphm | bknudson: review this first :) https://review.openstack.org/#/c/60244/ | 14:38 |
bknudson | dolphm: should be able to take a look at it this morning or early aft. | 14:39 |
dhellmann | viktors: good morning | 14:39 |
*** FunnyLookinHat has quit IRC | 14:39 | |
*** buzztroll has joined #openstack-dev | 14:39 | |
*** chrispeters has joined #openstack-dev | 14:39 | |
*** aeperezt has joined #openstack-dev | 14:39 | |
*** READ10 has joined #openstack-dev | 14:39 | |
*** jobewan has joined #openstack-dev | 14:40 | |
*** dansmith is now known as damnsmith | 14:40 | |
*** Nikolay_St has joined #openstack-dev | 14:41 | |
*** lbragstad has joined #openstack-dev | 14:42 | |
*** lbragstad has joined #openstack-dev | 14:42 | |
viktors | dhellmann: hello. | 14:42 |
dhellmann | viktors: how is everything this morning? | 14:43 |
*** msmedved has quit IRC | 14:43 | |
jaypipes | dolphm: \o/ :) | 14:43 |
jaypipes | ty! | 14:43 |
*** terriyu has joined #openstack-dev | 14:43 | |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 14:43 | |
viktors | dhellmann: thanks, all is fine. And how is yours? | 14:44 |
dhellmann | viktors: just starting, but so far so good :-) | 14:44 |
*** SergeyLukjanov_a is now known as SergeyLukjanov_ | 14:44 | |
*** msmedved has joined #openstack-dev | 14:45 | |
*** rohitk has quit IRC | 14:45 | |
*** kbringard has joined #openstack-dev | 14:46 | |
viktors | dhellmann: excuse me for trouble you, but can you please look at patches, related to oslo.db blueprint, when you will have a time? (only 2 patches left) | 14:47 |
*** hartsocks has joined #openstack-dev | 14:47 | |
*** hartsocks has left #openstack-dev | 14:48 | |
*** kushal has quit IRC | 14:48 | |
*** jtomasek has joined #openstack-dev | 14:48 | |
dhellmann | viktors: I will, but it might not be until Tuesday. I have a full day today, and Monday is a holiday. Are the other oslo-core members on the review list? | 14:48 |
*** thuc has joined #openstack-dev | 14:49 | |
*** thuc_ has joined #openstack-dev | 14:49 | |
*** beagles is now known as beagles_brb | 14:50 | |
*** kbringard has quit IRC | 14:50 | |
*** mrodden has joined #openstack-dev | 14:51 | |
*** fifieldt has joined #openstack-dev | 14:51 | |
JoeHazzers | There's a bug in oslo.messaging i'm not sure how to address, or where to file it. | 14:52 |
*** stevemar has joined #openstack-dev | 14:53 | |
*** thuc has quit IRC | 14:53 | |
JoeHazzers | We allow configuration options for Kombu SSL, but the version of amqplib may silently fail to set/use them | 14:53 |
*** annegent_ has quit IRC | 14:53 | |
markmc | JoeHazzers, bugs are tracked here - https://bugs.launchpad.net/oslo.messaging | 14:53 |
dhellmann | markmc: you paste faster than I do :-) | 14:54 |
markmc | JoeHazzers, oh, ouch | 14:54 |
JoeHazzers | yes, but i'm not entirely sure whether it's a kombu bug or a messaging bug | 14:54 |
markmc | JoeHazzers, definitely worth filing it, even if we end up closing it WontFix | 14:54 |
markmc | JoeHazzers, maybe start a thread on openstack-dev too | 14:54 |
JoeHazzers | we don't actually have an amqplib in the requirements.txt, and the one found in the havana projects specifies >=0.6.1, which doesn't include the full SSL support | 14:54 |
*** emagana_ has joined #openstack-dev | 14:54 | |
viktors | dhellmann: yes, there are. ok. I'll try to ping somebody else, but I'm not sure about today (it's 5 pm in my country now). | 14:54 |
dhellmann | viktors: are these for the icehouse-2 milestone? | 14:55 |
*** colinmcn_ has joined #openstack-dev | 14:55 | |
viktors | dhellmann: no, I3 | 14:55 |
*** russellb is now known as rustlebee | 14:55 | |
dhellmann | viktors: ok, I did ask them to prioritize i2 reviews since the deadline is next week | 14:55 |
*** jog0 is now known as flashgordon | 14:56 | |
* BobBall picks up the white courtesy phone | 14:56 | |
BobBall | Hi? Is that ianw? | 14:56 |
*** emagana has quit IRC | 14:56 | |
*** marun has joined #openstack-dev | 14:57 | |
BobBall | no - it looks like ianw was not ijw but a different ianw :/ | 14:57 |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 14:57 | |
*** AlanClark has joined #openstack-dev | 14:57 | |
*** colinmcnamara has quit IRC | 14:58 | |
viktors | dhellmann: if this will speed up review, I can change bp milestone :) | 14:59 |
*** dims is now known as dimsum | 15:00 | |
dhellmann | viktors: no, that will not help you :-) | 15:00 |
*** burt1 has joined #openstack-dev | 15:01 | |
*** fatguylittlecoat has quit IRC | 15:01 | |
*** fatguylittlecoat has joined #openstack-dev | 15:01 | |
*** nkinder has quit IRC | 15:02 | |
*** rkukura has joined #openstack-dev | 15:02 | |
*** vahidh has quit IRC | 15:04 | |
*** teran has quit IRC | 15:04 | |
*** teran has joined #openstack-dev | 15:04 | |
*** kwss has joined #openstack-dev | 15:05 | |
*** kolesovdv has quit IRC | 15:08 | |
*** anniec has joined #openstack-dev | 15:08 | |
*** YorikSar has quit IRC | 15:08 | |
*** lucasagomes is now known as lucas-hungry | 15:09 | |
*** thedodd has joined #openstack-dev | 15:09 | |
*** alex_klimov has quit IRC | 15:09 | |
*** YorikSar has joined #openstack-dev | 15:10 | |
*** anniec_ has joined #openstack-dev | 15:11 | |
*** nati_uen_ has joined #openstack-dev | 15:12 | |
*** jergerber has joined #openstack-dev | 15:12 | |
*** shreelola has joined #openstack-dev | 15:12 | |
*** buzztroll has quit IRC | 15:13 | |
*** anniec has quit IRC | 15:13 | |
*** anniec_ is now known as anniec | 15:13 | |
*** amuller has joined #openstack-dev | 15:13 | |
*** jtomasek has quit IRC | 15:13 | |
*** kbringard has joined #openstack-dev | 15:14 | |
*** amuller has quit IRC | 15:14 | |
*** nati_uen_ has quit IRC | 15:14 | |
*** nati_uen_ has joined #openstack-dev | 15:15 | |
*** ayoung has joined #openstack-dev | 15:15 | |
*** tjones has joined #openstack-dev | 15:15 | |
*** nati_ueno has quit IRC | 15:15 | |
*** jistr has quit IRC | 15:16 | |
*** MaxV_ has joined #openstack-dev | 15:17 | |
*** MaxV has quit IRC | 15:17 | |
*** bvandenh has quit IRC | 15:19 | |
*** kevinconway has joined #openstack-dev | 15:19 | |
*** carlp has joined #openstack-dev | 15:20 | |
*** emagana_ has quit IRC | 15:21 | |
*** kbrierly has quit IRC | 15:21 | |
*** kbrierly has joined #openstack-dev | 15:22 | |
*** emagana has joined #openstack-dev | 15:22 | |
*** HenryG has joined #openstack-dev | 15:22 | |
*** MaxV_ has quit IRC | 15:22 | |
*** terriyu has quit IRC | 15:23 | |
*** tjones has quit IRC | 15:23 | |
*** aeperezt has quit IRC | 15:23 | |
*** annegent_ has joined #openstack-dev | 15:24 | |
*** MaxV has joined #openstack-dev | 15:24 | |
*** CaptTofu has joined #openstack-dev | 15:24 | |
*** jistr has joined #openstack-dev | 15:25 | |
*** rnirmal has joined #openstack-dev | 15:26 | |
*** jtomasek has joined #openstack-dev | 15:26 | |
*** tjones has joined #openstack-dev | 15:26 | |
*** mmagr has quit IRC | 15:27 | |
*** nmagnezi has joined #openstack-dev | 15:27 | |
*** nmagnezi has quit IRC | 15:27 | |
*** FunnyLookinHat has joined #openstack-dev | 15:27 | |
shreelola | hello, i we wanna build iaas for our college using openstack as a final year b.e. project | 15:27 |
shreelola | please guide me a)hardware requirements | 15:27 |
shreelola | and how to build it with openstack | 15:27 |
*** sthaha has quit IRC | 15:28 | |
*** nplanel has quit IRC | 15:28 | |
*** bcrochet has quit IRC | 15:28 | |
*** gokrokve has joined #openstack-dev | 15:28 | |
*** nplanel has joined #openstack-dev | 15:28 | |
*** annegent_ has quit IRC | 15:28 | |
shreelola | someone please help me | 15:29 |
*** bcrochet has joined #openstack-dev | 15:30 | |
*** pablosan has joined #openstack-dev | 15:30 | |
ayoung | http://openstack.10931.n7.nabble.com/OK-to-Use-Flufl-enum-tt26405.html#none | 15:30 |
*** kwss has quit IRC | 15:30 | |
*** jnoller has joined #openstack-dev | 15:30 | |
*** carl_baldwin has quit IRC | 15:31 | |
*** Gordonz has joined #openstack-dev | 15:31 | |
*** Gordonz has quit IRC | 15:31 | |
viktors | shreelola: I guess, you should ask this question on #openstack IRC-channel | 15:32 |
*** Gordonz has joined #openstack-dev | 15:32 | |
*** carl_baldwin has joined #openstack-dev | 15:32 | |
*** _NikitaKonovalov has joined #openstack-dev | 15:33 | |
shreelola | ok..thank you | 15:33 |
*** xarses has joined #openstack-dev | 15:33 | |
*** shreelola is now known as skipper | 15:33 | |
*** mancdaz is now known as mancdaz_away | 15:34 | |
*** kmartin has quit IRC | 15:34 | |
*** NikitaKonovalov has quit IRC | 15:34 | |
*** _NikitaKonovalov is now known as NikitaKonovalov | 15:34 | |
*** skipper has left #openstack-dev | 15:34 | |
*** asselin has quit IRC | 15:35 | |
*** mancdaz_away is now known as mancdaz | 15:35 | |
*** asselin has joined #openstack-dev | 15:35 | |
*** kmartin has joined #openstack-dev | 15:35 | |
*** teran_ has joined #openstack-dev | 15:36 | |
*** marun has quit IRC | 15:36 | |
*** marun has joined #openstack-dev | 15:36 | |
*** jgrimm has joined #openstack-dev | 15:37 | |
*** annegent_ has joined #openstack-dev | 15:38 | |
*** ayoung is now known as admiyo | 15:38 | |
*** buzztroll has joined #openstack-dev | 15:39 | |
*** emagana has quit IRC | 15:39 | |
*** tjones has quit IRC | 15:39 | |
*** emagana has joined #openstack-dev | 15:40 | |
*** Longgeek has quit IRC | 15:40 | |
*** teran has quit IRC | 15:40 | |
*** colinmcn_ has quit IRC | 15:40 | |
*** bcrochet has quit IRC | 15:40 | |
*** tjones has joined #openstack-dev | 15:40 | |
*** rcleere has joined #openstack-dev | 15:40 | |
*** davidhadas has joined #openstack-dev | 15:41 | |
*** artom has quit IRC | 15:41 | |
*** paragan has quit IRC | 15:41 | |
*** herndon has joined #openstack-dev | 15:41 | |
jaypipes | HenryG: https://review.openstack.org/#/c/64733/ | 15:41 |
*** safchain has quit IRC | 15:41 | |
*** safchain has joined #openstack-dev | 15:42 | |
*** safchain has quit IRC | 15:42 | |
*** tjones has quit IRC | 15:42 | |
*** safchain has joined #openstack-dev | 15:42 | |
*** bcrochet has joined #openstack-dev | 15:43 | |
*** NikitaKonovalov is now known as NikitaKonovalov_ | 15:44 | |
*** buzztroll has quit IRC | 15:44 | |
*** jprovazn is now known as jprovazn_afk | 15:44 | |
*** bnemec is now known as beekneemech | 15:45 | |
*** tjones has joined #openstack-dev | 15:45 | |
*** jistr has quit IRC | 15:45 | |
*** mjfork has joined #openstack-dev | 15:46 | |
*** neeti has quit IRC | 15:47 | |
*** Longgeek has joined #openstack-dev | 15:48 | |
*** carl_baldwin has quit IRC | 15:48 | |
*** carl_baldwin has joined #openstack-dev | 15:48 | |
*** matiu has quit IRC | 15:49 | |
*** galstrom_zzz is now known as galstrom | 15:51 | |
*** nkinder has joined #openstack-dev | 15:52 | |
*** colinmcnamara has joined #openstack-dev | 15:55 | |
*** jcoufal has quit IRC | 15:56 | |
*** alop has joined #openstack-dev | 15:56 | |
*** sushil_ has quit IRC | 15:57 | |
*** mikeoutland has joined #openstack-dev | 15:58 | |
*** eglynn has quit IRC | 15:58 | |
*** annegent_ has quit IRC | 15:58 | |
*** Ruetobas has quit IRC | 16:01 | |
*** lucas-hungry is now known as lucasagomes | 16:01 | |
*** tjones has quit IRC | 16:01 | |
*** akrivoka has joined #openstack-dev | 16:01 | |
*** Ruetobas has joined #openstack-dev | 16:03 | |
*** yolanda has quit IRC | 16:03 | |
*** tjones has joined #openstack-dev | 16:03 | |
*** nati_ueno has joined #openstack-dev | 16:03 | |
*** doug_shelley66 has joined #openstack-dev | 16:04 | |
*** sushils has joined #openstack-dev | 16:04 | |
*** ifarkas has quit IRC | 16:04 | |
*** sushils has quit IRC | 16:05 | |
*** gokrokve has quit IRC | 16:05 | |
*** marun has quit IRC | 16:05 | |
*** marun has joined #openstack-dev | 16:05 | |
*** gokrokve has joined #openstack-dev | 16:06 | |
*** nati_uen_ has quit IRC | 16:06 | |
*** Ruetobas has quit IRC | 16:08 | |
*** reed has joined #openstack-dev | 16:08 | |
*** pasquier-s_ has quit IRC | 16:09 | |
*** jnoller has quit IRC | 16:10 | |
*** edmund has joined #openstack-dev | 16:10 | |
*** jnoller has joined #openstack-dev | 16:10 | |
*** sushils has joined #openstack-dev | 16:10 | |
*** colinmcn_ has joined #openstack-dev | 16:10 | |
*** gokrokve has quit IRC | 16:11 | |
*** Longgeek has quit IRC | 16:11 | |
*** vipul-away is now known as vipul | 16:12 | |
*** colinmcnamara has quit IRC | 16:12 | |
*** bswartz1 is now known as bswartz | 16:12 | |
*** Ruetobas has joined #openstack-dev | 16:13 | |
*** afazekas_ has quit IRC | 16:14 | |
*** jmontemayor has joined #openstack-dev | 16:14 | |
*** thuc has joined #openstack-dev | 16:14 | |
*** colinmcn_ has quit IRC | 16:14 | |
*** belmoreira has quit IRC | 16:15 | |
*** colinmcnamara has joined #openstack-dev | 16:15 | |
*** Longgeek has joined #openstack-dev | 16:18 | |
*** thuc_ has quit IRC | 16:18 | |
*** thuc has quit IRC | 16:19 | |
*** lyle is now known as david-lyle | 16:19 | |
*** bgmccollum has joined #openstack-dev | 16:21 | |
*** rkukura has quit IRC | 16:21 | |
*** anteaya is now known as tired | 16:21 | |
*** tired is now known as very_tired | 16:22 | |
*** pmathews has joined #openstack-dev | 16:22 | |
*** Longgeek has quit IRC | 16:22 | |
*** kushal has joined #openstack-dev | 16:23 | |
*** browne has quit IRC | 16:24 | |
*** xgsa has quit IRC | 16:25 | |
*** bvandenh has joined #openstack-dev | 16:25 | |
*** colinmcnamara has quit IRC | 16:26 | |
*** chandankumar has quit IRC | 16:26 | |
*** BobBall is now known as BobBallAway | 16:26 | |
*** vipul is now known as vipul-away | 16:27 | |
*** aeperezt has joined #openstack-dev | 16:27 | |
*** tdruiva has joined #openstack-dev | 16:28 | |
*** eglynn has joined #openstack-dev | 16:29 | |
*** gyee_nothere has quit IRC | 16:29 | |
*** arezmerita has quit IRC | 16:29 | |
*** newell has joined #openstack-dev | 16:30 | |
*** gyee has joined #openstack-dev | 16:30 | |
*** marun has quit IRC | 16:31 | |
*** mrodden has quit IRC | 16:31 | |
*** bgmccollum has left #openstack-dev | 16:31 | |
*** jtomasek has quit IRC | 16:31 | |
*** vipul-away is now known as vipul | 16:31 | |
*** otherwiseguy has quit IRC | 16:32 | |
*** marun has joined #openstack-dev | 16:32 | |
*** krotscheck has joined #openstack-dev | 16:32 | |
*** e0ne_ has quit IRC | 16:32 | |
*** marekd is now known as marekd|away | 16:33 | |
*** Mandell has quit IRC | 16:33 | |
*** romcheg has quit IRC | 16:33 | |
*** MarkAtwood has joined #openstack-dev | 16:34 | |
*** mrodden has joined #openstack-dev | 16:35 | |
*** nati_uen_ has joined #openstack-dev | 16:36 | |
*** dkuffner has quit IRC | 16:37 | |
*** nati_uen_ has quit IRC | 16:37 | |
*** aswini has joined #openstack-dev | 16:37 | |
*** markwash has quit IRC | 16:37 | |
*** nati_uen_ has joined #openstack-dev | 16:38 | |
*** teran_ has quit IRC | 16:38 | |
*** devoid has joined #openstack-dev | 16:38 | |
*** aswini has quit IRC | 16:39 | |
*** aswini has joined #openstack-dev | 16:39 | |
*** teran has joined #openstack-dev | 16:39 | |
*** markwash has joined #openstack-dev | 16:39 | |
*** buzztroll has joined #openstack-dev | 16:39 | |
*** devoid has left #openstack-dev | 16:39 | |
*** nati_ueno has quit IRC | 16:39 | |
*** devoid has joined #openstack-dev | 16:40 | |
*** tmclaugh[work] has joined #openstack-dev | 16:40 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 16:42 | |
*** kgriffs_afk is now known as kgriffs | 16:42 | |
*** markmcclain has quit IRC | 16:44 | |
*** markmcclain has joined #openstack-dev | 16:44 | |
*** dshulyak has quit IRC | 16:45 | |
*** arozumenko has quit IRC | 16:45 | |
*** bauzas has quit IRC | 16:45 | |
*** praneet has joined #openstack-dev | 16:46 | |
*** davidhadas_ has joined #openstack-dev | 16:47 | |
*** davidhadas has quit IRC | 16:47 | |
*** rushiagr is now known as rushiagr_away | 16:48 | |
*** rushiagr_away is now known as rushiagr | 16:48 | |
*** teran has quit IRC | 16:48 | |
*** markwash has quit IRC | 16:49 | |
*** DennyZhang has joined #openstack-dev | 16:49 | |
*** markmcclain has quit IRC | 16:50 | |
*** coolsvap has joined #openstack-dev | 16:50 | |
*** artom has joined #openstack-dev | 16:52 | |
*** bvandenh has quit IRC | 16:54 | |
*** buzztrol_ has joined #openstack-dev | 16:54 | |
*** buzztroll has quit IRC | 16:54 | |
*** sgrasley has joined #openstack-dev | 16:54 | |
*** akrivoka has quit IRC | 16:55 | |
*** taps has joined #openstack-dev | 16:56 | |
*** MaxV has quit IRC | 16:56 | |
*** willingc has joined #openstack-dev | 16:57 | |
*** coolsvap has quit IRC | 16:57 | |
*** TravT has joined #openstack-dev | 16:58 | |
*** coolsvap has joined #openstack-dev | 16:59 | |
*** mancdaz is now known as mancdaz_away | 17:00 | |
*** vkozhukalov has quit IRC | 17:00 | |
*** mattymo has quit IRC | 17:01 | |
*** davidhadas_ has quit IRC | 17:02 | |
*** colinmcnamara has joined #openstack-dev | 17:03 | |
*** JordanP has quit IRC | 17:03 | |
*** yaguang has quit IRC | 17:04 | |
*** markwash has joined #openstack-dev | 17:04 | |
*** viktors has left #openstack-dev | 17:05 | |
*** aswini has quit IRC | 17:09 | |
*** sarob has joined #openstack-dev | 17:10 | |
*** FunnyLookinHat has quit IRC | 17:10 | |
*** FunnyLookinHat has joined #openstack-dev | 17:10 | |
*** fifieldt has quit IRC | 17:12 | |
*** otherwiseguy has joined #openstack-dev | 17:13 | |
*** sarob_ has joined #openstack-dev | 17:13 | |
*** obondarev_ has joined #openstack-dev | 17:13 | |
*** moijes12 has joined #openstack-dev | 17:14 | |
*** jdob has quit IRC | 17:14 | |
*** sarob has quit IRC | 17:14 | |
*** anniec has quit IRC | 17:15 | |
*** teran has joined #openstack-dev | 17:15 | |
*** chandankumar has joined #openstack-dev | 17:15 | |
*** gmoro has quit IRC | 17:15 | |
*** iartarisi has quit IRC | 17:15 | |
*** thuc has joined #openstack-dev | 17:15 | |
*** thuc_ has joined #openstack-dev | 17:16 | |
*** comstud is now known as bearhands | 17:17 | |
*** tkay has joined #openstack-dev | 17:18 | |
*** gmoro has joined #openstack-dev | 17:18 | |
*** HT_Sergio has joined #openstack-dev | 17:18 | |
*** xga_ has quit IRC | 17:19 | |
*** aditirav has joined #openstack-dev | 17:19 | |
*** xga has joined #openstack-dev | 17:19 | |
*** xarses has quit IRC | 17:20 | |
*** thuc has quit IRC | 17:20 | |
*** annashen has quit IRC | 17:20 | |
*** sarob_ has quit IRC | 17:21 | |
*** beagles_brb is now known as beagles | 17:21 | |
*** gilliard has quit IRC | 17:21 | |
*** kiall has quit IRC | 17:21 | |
*** sarob has joined #openstack-dev | 17:21 | |
*** mikeoutland has quit IRC | 17:22 | |
*** gilliard has joined #openstack-dev | 17:22 | |
*** rcj has quit IRC | 17:23 | |
*** kiall has joined #openstack-dev | 17:24 | |
*** jp_at_hp has quit IRC | 17:24 | |
*** yolanda has joined #openstack-dev | 17:25 | |
*** sarob_ has joined #openstack-dev | 17:25 | |
*** gokrokve has joined #openstack-dev | 17:26 | |
*** tjones has quit IRC | 17:26 | |
*** annashen has joined #openstack-dev | 17:26 | |
*** corXi has quit IRC | 17:26 | |
*** ygbo has quit IRC | 17:26 | |
*** tjones has joined #openstack-dev | 17:27 | |
*** sarob__ has joined #openstack-dev | 17:27 | |
*** gszasz has quit IRC | 17:28 | |
*** sarob has quit IRC | 17:28 | |
*** comay_away has quit IRC | 17:29 | |
*** markwash has quit IRC | 17:29 | |
*** comay_away has joined #openstack-dev | 17:30 | |
*** bdpayne has joined #openstack-dev | 17:30 | |
*** sarob_ has quit IRC | 17:30 | |
*** xga has quit IRC | 17:31 | |
*** artom has quit IRC | 17:32 | |
*** nati_ueno has joined #openstack-dev | 17:32 | |
*** angdraug has joined #openstack-dev | 17:33 | |
*** fbo is now known as fbo_away | 17:34 | |
*** artom has joined #openstack-dev | 17:34 | |
*** nati_uen_ has quit IRC | 17:35 | |
*** nati_ueno has quit IRC | 17:36 | |
*** nati_ueno has joined #openstack-dev | 17:36 | |
*** Nikolay_St has quit IRC | 17:37 | |
*** tqtran has joined #openstack-dev | 17:37 | |
*** terriyu has joined #openstack-dev | 17:39 | |
*** yassine has quit IRC | 17:39 | |
*** florentflament has quit IRC | 17:39 | |
*** rcj has joined #openstack-dev | 17:40 | |
*** yassine has joined #openstack-dev | 17:40 | |
*** DennyZha` has joined #openstack-dev | 17:40 | |
*** DennyZhang has quit IRC | 17:41 | |
*** ruhe is now known as _ruhe | 17:42 | |
*** yassine has quit IRC | 17:42 | |
*** yassine has joined #openstack-dev | 17:43 | |
*** yassine has quit IRC | 17:43 | |
*** zaitcev has joined #openstack-dev | 17:44 | |
*** yassine has joined #openstack-dev | 17:45 | |
*** yassine has quit IRC | 17:45 | |
*** sarob has joined #openstack-dev | 17:45 | |
*** DennyZha` has quit IRC | 17:45 | |
*** sarob has quit IRC | 17:45 | |
*** sarob has joined #openstack-dev | 17:45 | |
*** taps has quit IRC | 17:46 | |
*** edmund has quit IRC | 17:46 | |
*** yamahata has quit IRC | 17:48 | |
*** mikeoutland has joined #openstack-dev | 17:48 | |
*** e0ne has joined #openstack-dev | 17:48 | |
*** sarob__ has quit IRC | 17:48 | |
*** rcj has quit IRC | 17:48 | |
*** Longgeek has joined #openstack-dev | 17:49 | |
*** sarob_ has joined #openstack-dev | 17:50 | |
*** martyntaylor has quit IRC | 17:50 | |
*** athomas has quit IRC | 17:51 | |
*** harlowja_away is now known as harlowja | 17:51 | |
*** mrodden1 has joined #openstack-dev | 17:52 | |
*** mrodden has quit IRC | 17:52 | |
*** sarob has quit IRC | 17:52 | |
lbragstad | dhellmann: quick question if you have a minute. Is the config generator sync done to projects using the update.py script? https://github.com/openstack/oslo-incubator/tree/master/tools/config | 17:53 |
*** rnirmal has quit IRC | 17:53 | |
*** lsmola_ has quit IRC | 17:54 | |
*** _cjones_ has joined #openstack-dev | 17:54 | |
*** xmltok has joined #openstack-dev | 17:54 | |
*** sarob_ has quit IRC | 17:55 | |
*** rcj has joined #openstack-dev | 17:55 | |
*** 17WAAUQCD has joined #openstack-dev | 17:55 | |
*** 36DAB6R0I has joined #openstack-dev | 17:55 | |
*** sarob has joined #openstack-dev | 17:55 | |
*** Longgeek has quit IRC | 17:55 | |
*** _cjones_ has quit IRC | 17:56 | |
*** exed_ has quit IRC | 17:57 | |
dhellmann | lbragstad: as far as I know, it should be synced that way -- eventually it will just live in oslo.config, and won't need to be copied over | 17:58 |
*** galstrom is now known as galstrom_zzz | 17:58 | |
lbragstad | dhellmann: cool, thanks! | 17:58 |
*** sarob_ has joined #openstack-dev | 17:59 | |
*** yolanda has quit IRC | 17:59 | |
*** browne has joined #openstack-dev | 17:59 | |
*** taps has joined #openstack-dev | 17:59 | |
*** sarob has quit IRC | 18:00 | |
*** ndipanov has quit IRC | 18:00 | |
*** xarses has joined #openstack-dev | 18:00 | |
*** sarob has joined #openstack-dev | 18:01 | |
*** galstrom_zzz is now known as galstrom | 18:02 | |
*** garyk1 has quit IRC | 18:02 | |
*** otherwiseguy has quit IRC | 18:03 | |
*** jdob has joined #openstack-dev | 18:04 | |
*** garyk has joined #openstack-dev | 18:04 | |
*** sarob__ has joined #openstack-dev | 18:04 | |
*** odyssey4me has quit IRC | 18:04 | |
*** evgenyf has joined #openstack-dev | 18:05 | |
*** sarob_ has quit IRC | 18:05 | |
*** hemnafk is now known as hemna_ | 18:05 | |
*** willingc has quit IRC | 18:06 | |
*** sarob has quit IRC | 18:06 | |
*** exed_ has joined #openstack-dev | 18:06 | |
*** willingc has joined #openstack-dev | 18:06 | |
*** tkay has quit IRC | 18:07 | |
*** dave_tucker is now known as dave_tucker_zzz | 18:08 | |
*** danpb has quit IRC | 18:10 | |
*** jdurgin1 has joined #openstack-dev | 18:10 | |
*** exed_ has quit IRC | 18:11 | |
*** willingc has quit IRC | 18:11 | |
*** sarob__ has quit IRC | 18:11 | |
*** sarob has joined #openstack-dev | 18:11 | |
*** Mandell has joined #openstack-dev | 18:12 | |
*** HT_Sergio has quit IRC | 18:13 | |
*** willingc has joined #openstack-dev | 18:13 | |
*** vahidh has joined #openstack-dev | 18:15 | |
*** YorikSar has quit IRC | 18:15 | |
*** herndon has quit IRC | 18:16 | |
*** d0ugal has quit IRC | 18:16 | |
*** sarob has quit IRC | 18:16 | |
*** yamahata has joined #openstack-dev | 18:16 | |
*** nacim has quit IRC | 18:17 | |
*** julienvey_ has joined #openstack-dev | 18:17 | |
*** danielbruno has quit IRC | 18:21 | |
*** sahid has quit IRC | 18:21 | |
*** neelashah has quit IRC | 18:21 | |
*** salv-orlando has quit IRC | 18:22 | |
*** marun has quit IRC | 18:22 | |
*** tkay has joined #openstack-dev | 18:22 | |
*** diogogmt has joined #openstack-dev | 18:22 | |
*** marun has joined #openstack-dev | 18:22 | |
*** sushils has quit IRC | 18:23 | |
*** herndon has joined #openstack-dev | 18:24 | |
*** hartsocks has joined #openstack-dev | 18:24 | |
garyk | ttx: ping | 18:24 |
*** hartsocks is now known as hartbot | 18:24 | |
*** mikeoutland has quit IRC | 18:25 | |
*** neelashah has joined #openstack-dev | 18:25 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 18:27 | |
*** danwent has joined #openstack-dev | 18:27 | |
*** max_lobur is now known as max_lobur_afk | 18:30 | |
*** HT_Sergio has joined #openstack-dev | 18:31 | |
*** nati_uen_ has joined #openstack-dev | 18:31 | |
*** CaptTofu has quit IRC | 18:31 | |
*** dave_tucker_zzz is now known as dave_tucker | 18:31 | |
*** YorikSar has joined #openstack-dev | 18:33 | |
*** danielbruno has joined #openstack-dev | 18:33 | |
*** nati_ueno has quit IRC | 18:33 | |
*** marun has quit IRC | 18:35 | |
*** dave_tucker is now known as dave_tucker_zzz | 18:35 | |
*** marun has joined #openstack-dev | 18:35 | |
*** jaypipes has quit IRC | 18:36 | |
*** julienvey_ has quit IRC | 18:36 | |
*** Drankis has quit IRC | 18:36 | |
*** dave_tucker_zzz is now known as dave_tucker | 18:36 | |
*** xqueralt has quit IRC | 18:36 | |
*** Drankis has joined #openstack-dev | 18:37 | |
*** kushal has quit IRC | 18:40 | |
*** browne_ has joined #openstack-dev | 18:43 | |
*** _cjones_ has joined #openstack-dev | 18:44 | |
*** browne_ has quit IRC | 18:44 | |
*** browne_ has joined #openstack-dev | 18:44 | |
*** browne_ has quit IRC | 18:44 | |
*** julienvey_ has joined #openstack-dev | 18:45 | |
*** lucasagomes has left #openstack-dev | 18:46 | |
*** _ruhe is now known as ruhe | 18:48 | |
*** rushiagr has quit IRC | 18:49 | |
*** herndon has quit IRC | 18:50 | |
*** garyk has quit IRC | 18:51 | |
*** rushiagr has joined #openstack-dev | 18:51 | |
*** salv-orlando has joined #openstack-dev | 18:53 | |
*** rushiagr has quit IRC | 18:53 | |
*** markwash has joined #openstack-dev | 18:53 | |
*** vkozhukalov has joined #openstack-dev | 18:54 | |
*** markmcclain has joined #openstack-dev | 18:55 | |
*** markmcclain has quit IRC | 18:55 | |
*** willingc has quit IRC | 18:56 | |
*** markmcclain has joined #openstack-dev | 18:56 | |
*** thuc_ has quit IRC | 18:57 | |
*** jobewan has quit IRC | 18:57 | |
*** thuc has joined #openstack-dev | 18:57 | |
*** markwash_ has joined #openstack-dev | 18:58 | |
*** gordc has quit IRC | 18:58 | |
*** safchain has quit IRC | 18:59 | |
*** markwash has quit IRC | 19:00 | |
*** markwash_ is now known as markwash | 19:00 | |
*** thuc has quit IRC | 19:02 | |
*** rfolco has quit IRC | 19:02 | |
*** galstrom is now known as galstrom_zzz | 19:04 | |
*** marun has quit IRC | 19:04 | |
*** marun has joined #openstack-dev | 19:05 | |
*** jaypipes has joined #openstack-dev | 19:05 | |
*** YorikSar has quit IRC | 19:05 | |
*** radez is now known as radez_g0n3 | 19:05 | |
*** tdruiva has quit IRC | 19:06 | |
*** vipul is now known as vipul-away | 19:09 | |
*** vipul-away is now known as vipul | 19:09 | |
*** safchain has joined #openstack-dev | 19:11 | |
*** openstackstatus has joined #openstack-dev | 19:11 | |
openstackstatus | NOTICE: zuul.openstack.org underwent maintenance today from 16:50 to 19:00 UTC, so any changes approved during that timeframe should be reapproved so as to be added to the gate. new patchsets uploaded for those two hours should be rechecked (no bug) if test results are desired | 19:13 |
*** Drankis has quit IRC | 19:16 | |
*** noslzzp has joined #openstack-dev | 19:17 | |
*** nati_ueno has joined #openstack-dev | 19:18 | |
*** nati_ueno has quit IRC | 19:18 | |
*** nati_ueno has joined #openstack-dev | 19:19 | |
*** CaptTofu has joined #openstack-dev | 19:19 | |
*** yolanda has joined #openstack-dev | 19:20 | |
*** sarob has joined #openstack-dev | 19:22 | |
*** nati_uen_ has quit IRC | 19:23 | |
*** tjones has quit IRC | 19:23 | |
*** jistr has joined #openstack-dev | 19:24 | |
*** gordc has joined #openstack-dev | 19:25 | |
*** jobewan has joined #openstack-dev | 19:25 | |
*** jprovazn_afk has quit IRC | 19:25 | |
*** chandankumar has quit IRC | 19:25 | |
*** jobewan has joined #openstack-dev | 19:25 | |
*** sarob has quit IRC | 19:27 | |
*** thuc has joined #openstack-dev | 19:27 | |
*** xga has joined #openstack-dev | 19:28 | |
*** marun has quit IRC | 19:28 | |
*** marun has joined #openstack-dev | 19:29 | |
*** terriyu has quit IRC | 19:29 | |
*** danwent has quit IRC | 19:29 | |
*** Drankis has joined #openstack-dev | 19:30 | |
*** tjones has joined #openstack-dev | 19:30 | |
*** teran has quit IRC | 19:31 | |
*** denis_makogon has joined #openstack-dev | 19:31 | |
*** tjones has quit IRC | 19:31 | |
*** tjones has joined #openstack-dev | 19:32 | |
*** xga has quit IRC | 19:33 | |
*** sushils has joined #openstack-dev | 19:34 | |
*** vipul is now known as vipul-away | 19:35 | |
*** vipul-away is now known as vipul | 19:35 | |
*** vipul is now known as vipul-away | 19:35 | |
*** Drankis has quit IRC | 19:36 | |
*** mgagne has quit IRC | 19:37 | |
*** bauzas has joined #openstack-dev | 19:37 | |
*** tdruiva has joined #openstack-dev | 19:38 | |
*** romcheg has joined #openstack-dev | 19:38 | |
*** lbragstad has quit IRC | 19:39 | |
*** jecarey has quit IRC | 19:39 | |
*** mikeoutland has joined #openstack-dev | 19:40 | |
*** sarob has joined #openstack-dev | 19:40 | |
*** colinmcnamara has quit IRC | 19:41 | |
*** radez_g0n3 is now known as radez | 19:41 | |
*** marun has quit IRC | 19:41 | |
*** marun has joined #openstack-dev | 19:41 | |
*** rkukura has joined #openstack-dev | 19:41 | |
*** sarob has quit IRC | 19:43 | |
*** sarob has joined #openstack-dev | 19:43 | |
marekd|away | bknudson: dolphm: thanks for the https://review.openstack.org/#/c/60244 review, I doubt I will be able to answer by the end of your day, but should be ready by the end of the weekend. | 19:44 |
*** dave_tucker has left #openstack-dev | 19:45 | |
bknudson | marekd|away: looks like the spec is changing, so take a look at that, too. | 19:45 |
dolphm | marekd|away: no worries - i'm poking at making those changes myself, but struggling with tests ... i might be able to post a diff or something later | 19:45 |
dolphm | marekd|away: also hoping to make the changes made here https://review.openstack.org/#/c/67549/ | 19:46 |
*** yassine has joined #openstack-dev | 19:46 | |
*** mkollaro has quit IRC | 19:46 | |
*** vipul-away is now known as vipul | 19:47 | |
*** reed has quit IRC | 19:47 | |
marekd|away | wish i have received those comments earlier, i'd have fixed all by myself :( | 19:48 |
*** sarob has quit IRC | 19:48 | |
marekd|away | dolphm: bknudson: ok, i am out. thanks again! | 19:49 |
dolphm | marekd|away: /salute | 19:49 |
bknudson | marekd|away: you can take look at it after dolph updates... I usually check in on the weekend so might be able to review again | 19:50 |
*** vipul is now known as vipul-away | 19:50 | |
*** denis_makogon_ has joined #openstack-dev | 19:52 | |
*** yassine has quit IRC | 19:55 | |
*** denis_makogon has quit IRC | 19:55 | |
*** Longgeek has joined #openstack-dev | 19:55 | |
dolphm | bknudson: https://review.openstack.org/#/c/67549/3/openstack-identity-api/v3/src/markdown/identity-api-v3-os-federation-ext.md | 19:56 |
bknudson | dolphm: I hope that clients are convinced to always specify an enabled value by that. | 19:57 |
*** novas0x2a|laptop has joined #openstack-dev | 19:57 | |
*** denis_makogon_ is now known as denis_makogon | 19:58 | |
*** markmc has quit IRC | 20:00 | |
*** herndon has joined #openstack-dev | 20:00 | |
*** marun has quit IRC | 20:00 | |
*** marun has joined #openstack-dev | 20:00 | |
*** ruhe is now known as _ruhe | 20:01 | |
*** Longgeek has quit IRC | 20:01 | |
*** evgenyf has quit IRC | 20:02 | |
*** sushils has quit IRC | 20:03 | |
*** csd has joined #openstack-dev | 20:03 | |
*** sushils has joined #openstack-dev | 20:03 | |
*** mrodden1 is now known as mrodden | 20:04 | |
*** galstrom_zzz is now known as galstrom | 20:05 | |
*** aditirav has quit IRC | 20:06 | |
*** nati_uen_ has joined #openstack-dev | 20:07 | |
*** jecarey has joined #openstack-dev | 20:07 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 20:08 | |
*** nati_uen_ has quit IRC | 20:08 | |
*** nati_uen_ has joined #openstack-dev | 20:09 | |
*** mfink has quit IRC | 20:10 | |
*** nati_ueno has quit IRC | 20:10 | |
*** lbragstad has joined #openstack-dev | 20:11 | |
*** marun has quit IRC | 20:15 | |
*** mkollaro has joined #openstack-dev | 20:15 | |
*** marun has joined #openstack-dev | 20:15 | |
*** alop has left #openstack-dev | 20:15 | |
*** tjones has quit IRC | 20:18 | |
*** rods has quit IRC | 20:19 | |
*** mikeoutland has quit IRC | 20:20 | |
*** neelashah has quit IRC | 20:21 | |
*** kgriffs is now known as kgriffs_afk | 20:22 | |
*** neelashah has joined #openstack-dev | 20:22 | |
*** cnesa2 has quit IRC | 20:26 | |
*** prad_ has joined #openstack-dev | 20:26 | |
*** neelashah has quit IRC | 20:27 | |
*** salv-orlando has quit IRC | 20:28 | |
*** pmathews has quit IRC | 20:28 | |
*** herndon has quit IRC | 20:28 | |
*** prad has quit IRC | 20:28 | |
*** prad_ is now known as prad | 20:28 | |
*** cnesa has joined #openstack-dev | 20:31 | |
*** teran has joined #openstack-dev | 20:32 | |
*** teran_ has joined #openstack-dev | 20:32 | |
*** pmathews has joined #openstack-dev | 20:33 | |
*** bauzas has quit IRC | 20:35 | |
*** kushal has joined #openstack-dev | 20:35 | |
*** DinaBelova is now known as DinaBelova_ | 20:36 | |
*** Ryan_Lane has quit IRC | 20:36 | |
*** kushal has quit IRC | 20:36 | |
*** kushal has joined #openstack-dev | 20:36 | |
*** kushal has quit IRC | 20:36 | |
*** kushal has joined #openstack-dev | 20:36 | |
*** Ryan_Lane has joined #openstack-dev | 20:36 | |
*** teran has quit IRC | 20:36 | |
*** salv-orlando has joined #openstack-dev | 20:38 | |
*** bauzas has joined #openstack-dev | 20:38 | |
*** herndon has joined #openstack-dev | 20:38 | |
*** mikeoutland has joined #openstack-dev | 20:38 | |
*** yolanda has quit IRC | 20:38 | |
*** markwash has quit IRC | 20:39 | |
*** jistr has quit IRC | 20:40 | |
*** giulivo has quit IRC | 20:40 | |
*** markwash has joined #openstack-dev | 20:41 | |
*** neelashah has joined #openstack-dev | 20:41 | |
*** pablosan has quit IRC | 20:41 | |
*** marun has quit IRC | 20:41 | |
*** marun has joined #openstack-dev | 20:41 | |
*** anniec has joined #openstack-dev | 20:42 | |
*** YorikSar has joined #openstack-dev | 20:43 | |
*** mikeoutland has quit IRC | 20:44 | |
*** carl_baldwin has quit IRC | 20:46 | |
*** carl_baldwin has joined #openstack-dev | 20:47 | |
*** doug-fish has quit IRC | 20:47 | |
*** markmcclain has quit IRC | 20:47 | |
*** vipul-away is now known as vipul | 20:47 | |
*** jaypipes has quit IRC | 20:48 | |
*** jaypipes_ has joined #openstack-dev | 20:48 | |
*** jaypipes_ has quit IRC | 20:48 | |
*** dprince has quit IRC | 20:49 | |
*** anniec has quit IRC | 20:51 | |
*** rohitk has joined #openstack-dev | 20:51 | |
*** tqtran has quit IRC | 20:53 | |
*** jmontemayor has quit IRC | 20:54 | |
*** zaneb has quit IRC | 20:55 | |
*** tjones has joined #openstack-dev | 20:58 | |
*** herndon has quit IRC | 20:59 | |
*** thomasem has quit IRC | 21:01 | |
*** marun has quit IRC | 21:01 | |
*** marun has joined #openstack-dev | 21:01 | |
*** nati_ueno has joined #openstack-dev | 21:03 | |
*** neelashah has quit IRC | 21:03 | |
*** jmontemayor has joined #openstack-dev | 21:03 | |
*** neelashah has joined #openstack-dev | 21:03 | |
*** herndon has joined #openstack-dev | 21:06 | |
*** herndon has quit IRC | 21:06 | |
*** herndon has joined #openstack-dev | 21:07 | |
*** nati_uen_ has quit IRC | 21:07 | |
*** herndon has quit IRC | 21:07 | |
*** stevemar2 has joined #openstack-dev | 21:08 | |
*** herndon_ has joined #openstack-dev | 21:08 | |
*** dave_tucker_zzz has joined #openstack-dev | 21:08 | |
*** dave_tucker_zzz is now known as dave_tucker | 21:08 | |
*** colinmcnamara has joined #openstack-dev | 21:09 | |
*** dave_tucker is now known as dave_tucker_zzz | 21:10 | |
*** stevemar has quit IRC | 21:11 | |
*** jgrimm has quit IRC | 21:12 | |
*** nati_ueno has quit IRC | 21:14 | |
*** marun has quit IRC | 21:14 | |
*** marun has joined #openstack-dev | 21:14 | |
*** nati_ueno has joined #openstack-dev | 21:15 | |
*** kgriffs_afk is now known as kgriffs | 21:16 | |
*** topol has quit IRC | 21:16 | |
*** nati_ueno has quit IRC | 21:17 | |
*** nati_ueno has joined #openstack-dev | 21:18 | |
*** jmontemayor has quit IRC | 21:19 | |
*** noslzzp has quit IRC | 21:21 | |
*** admiyo has quit IRC | 21:23 | |
*** marun has quit IRC | 21:26 | |
*** marun has joined #openstack-dev | 21:27 | |
*** sgordon has quit IRC | 21:28 | |
*** krotscheck has quit IRC | 21:29 | |
*** anniec has joined #openstack-dev | 21:29 | |
*** NikitaKonovalov_ is now known as NikitaKonovalov | 21:30 | |
*** dvarga has quit IRC | 21:30 | |
*** NikitaKonovalov is now known as NikitaKonovalov_ | 21:30 | |
*** vipul is now known as vipul-away | 21:31 | |
*** safchain has quit IRC | 21:31 | |
*** nplanel has quit IRC | 21:35 | |
*** SumitNaiksatam has joined #openstack-dev | 21:37 | |
*** mikeoutland has joined #openstack-dev | 21:37 | |
*** marun has quit IRC | 21:37 | |
*** marun has joined #openstack-dev | 21:38 | |
*** glenng has quit IRC | 21:38 | |
*** rohitk has quit IRC | 21:39 | |
*** pmathews1 has joined #openstack-dev | 21:39 | |
*** Sukhdev has joined #openstack-dev | 21:42 | |
Sukhdev | Hello | 21:42 |
*** pmathews has quit IRC | 21:43 | |
*** vipul-away is now known as vipul | 21:43 | |
*** amcrn has joined #openstack-dev | 21:44 | |
*** tmclaugh[work] has quit IRC | 21:44 | |
*** d0ugal has joined #openstack-dev | 21:44 | |
*** d0ugal has quit IRC | 21:45 | |
*** xarses has quit IRC | 21:45 | |
*** d0ugal has joined #openstack-dev | 21:45 | |
*** d0ugal has quit IRC | 21:46 | |
*** d0ugal has joined #openstack-dev | 21:46 | |
*** chrispeters has quit IRC | 21:46 | |
*** d0ugal has quit IRC | 21:46 | |
*** vipul is now known as vipul-away | 21:47 | |
*** romcheg has quit IRC | 21:51 | |
*** rustlebee is now known as russellb | 21:52 | |
*** sdake has quit IRC | 21:52 | |
*** beekneemech has quit IRC | 21:52 | |
*** herndon_ has quit IRC | 21:53 | |
*** derekh has joined #openstack-dev | 21:54 | |
*** anniec has quit IRC | 21:54 | |
*** dave_tucker_zzz is now known as dave_tucker | 21:54 | |
*** thedodd has quit IRC | 21:54 | |
*** carl_baldwin has quit IRC | 21:54 | |
*** Sukhdev has quit IRC | 21:54 | |
*** carl_baldwin has joined #openstack-dev | 21:55 | |
*** marun has quit IRC | 21:55 | |
*** sarob has joined #openstack-dev | 21:55 | |
*** sarob has quit IRC | 21:55 | |
*** marun has joined #openstack-dev | 21:55 | |
*** mkollaro has quit IRC | 21:56 | |
*** julienvey_ has quit IRC | 21:56 | |
*** pmathews1 has quit IRC | 21:56 | |
*** sandywalsh has quit IRC | 21:56 | |
*** praneet has quit IRC | 21:56 | |
*** herndon_ has joined #openstack-dev | 21:56 | |
*** artom has quit IRC | 21:56 | |
*** julienvey_ has joined #openstack-dev | 21:58 | |
*** doug_shelley66 has quit IRC | 21:58 | |
*** xarses has joined #openstack-dev | 21:58 | |
*** exed_ has joined #openstack-dev | 21:58 | |
*** willingc has joined #openstack-dev | 21:59 | |
*** d0ugal has joined #openstack-dev | 22:01 | |
*** Longgeek has joined #openstack-dev | 22:02 | |
*** rnirmal has joined #openstack-dev | 22:02 | |
*** vipul-away is now known as vipul | 22:04 | |
*** vipul is now known as vipul-away | 22:04 | |
*** melwitt has joined #openstack-dev | 22:05 | |
*** pcm_ has quit IRC | 22:05 | |
*** hartbot has quit IRC | 22:06 | |
*** carl_baldwin has quit IRC | 22:06 | |
*** erkrnt has joined #openstack-dev | 22:07 | |
*** carl_baldwin has joined #openstack-dev | 22:07 | |
*** neelashah has quit IRC | 22:08 | |
*** sandywalsh has joined #openstack-dev | 22:08 | |
*** Longgeek has quit IRC | 22:09 | |
*** jcooley_ has joined #openstack-dev | 22:10 | |
*** d0ugal has quit IRC | 22:10 | |
*** danielbruno has quit IRC | 22:10 | |
*** CaptTofu has quit IRC | 22:11 | |
*** nati_uen_ has joined #openstack-dev | 22:11 | |
*** jayg is now known as jayg|g0n3 | 22:12 | |
*** bvandenh has joined #openstack-dev | 22:12 | |
*** pmathews has joined #openstack-dev | 22:13 | |
*** MarkAtwood has quit IRC | 22:13 | |
*** med_ has quit IRC | 22:14 | |
*** vladikr has quit IRC | 22:14 | |
*** medberry has joined #openstack-dev | 22:15 | |
*** medberry has quit IRC | 22:15 | |
*** medberry has joined #openstack-dev | 22:15 | |
*** CaptTofu has joined #openstack-dev | 22:16 | |
*** nati_ueno has quit IRC | 22:16 | |
*** achampion has quit IRC | 22:16 | |
*** vartom1111111111 has quit IRC | 22:16 | |
*** mfer has quit IRC | 22:17 | |
*** reed has joined #openstack-dev | 22:18 | |
*** peristeri has quit IRC | 22:18 | |
*** bvandenh has quit IRC | 22:18 | |
*** thedodd has joined #openstack-dev | 22:19 | |
*** anniec has joined #openstack-dev | 22:19 | |
*** chrispeters has joined #openstack-dev | 22:19 | |
*** Gordonz has quit IRC | 22:19 | |
*** jnoller has quit IRC | 22:19 | |
*** ewindisch is now known as zz_ewindisch | 22:19 | |
*** jmontemayor has joined #openstack-dev | 22:21 | |
*** stevemar2 has quit IRC | 22:22 | |
*** medberry is now known as med_ | 22:22 | |
*** salv-orlando has quit IRC | 22:22 | |
*** nati_uen_ has quit IRC | 22:22 | |
*** stevemar2 has joined #openstack-dev | 22:23 | |
*** nati_ueno has joined #openstack-dev | 22:23 | |
*** vkozhukalov has quit IRC | 22:24 | |
*** eharney has quit IRC | 22:24 | |
*** anniec has quit IRC | 22:24 | |
*** bnemec has joined #openstack-dev | 22:24 | |
*** rossella_s has quit IRC | 22:25 | |
*** carl_baldwin has quit IRC | 22:26 | |
*** aeperezt has quit IRC | 22:26 | |
*** yjiang5_1 has quit IRC | 22:26 | |
*** carl_baldwin has joined #openstack-dev | 22:26 | |
*** sarob has joined #openstack-dev | 22:28 | |
*** marun has quit IRC | 22:28 | |
*** very_tired is now known as anteaya | 22:28 | |
*** marun has joined #openstack-dev | 22:29 | |
*** READ10 has quit IRC | 22:29 | |
*** carl_baldwin has quit IRC | 22:30 | |
*** obondarev_ has quit IRC | 22:32 | |
*** reed_ has joined #openstack-dev | 22:32 | |
*** emagana has quit IRC | 22:32 | |
bknudson | have you seen this running neutron in devstack? | 22:33 |
bknudson | sqlalchemy.exc.ProgrammingError: (ProgrammingError) (1146, "Table 'neutron_ml2.agents' doesn't exist") 'ALTER TABLE agents ADD CONSTRAINT uniq_agents0agent_type0host UNIQUE (agent_type, host)' () | 22:33 |
*** nati_ueno has quit IRC | 22:33 | |
bknudson | INFO [alembic.migration] Running upgrade e197124d4b9 -> 1fcfc149aca4 | 22:33 |
bknudson | agents_unique_by_type_and_host.py | 22:34 |
*** reed__ has joined #openstack-dev | 22:34 | |
*** fatguylittlecoat has quit IRC | 22:34 | |
*** doug_shelley66 has joined #openstack-dev | 22:35 | |
*** eglynn has quit IRC | 22:35 | |
*** reed has quit IRC | 22:35 | |
*** reed__ has quit IRC | 22:35 | |
*** tongli has quit IRC | 22:36 | |
*** willingc has quit IRC | 22:36 | |
*** rcj has quit IRC | 22:37 | |
*** rcj has joined #openstack-dev | 22:37 | |
*** reed_ has quit IRC | 22:37 | |
*** HenryG has quit IRC | 22:37 | |
*** joesavak has quit IRC | 22:39 | |
*** jamezpolley has quit IRC | 22:40 | |
*** mlavalle has left #openstack-dev | 22:41 | |
*** xarses has quit IRC | 22:42 | |
*** anniec has joined #openstack-dev | 22:42 | |
*** galstrom is now known as galstrom_zzz | 22:43 | |
*** jdob has quit IRC | 22:43 | |
*** morazi has quit IRC | 22:44 | |
*** kevinconway has quit IRC | 22:48 | |
asadoughi | bknudson: yeah, being addressed by a review https://review.openstack.org/#/c/66750/ | 22:49 |
*** ArxCruz has quit IRC | 22:49 | |
asadoughi | bknudson: although, no bug filed apparently | 22:49 |
bknudson | asadoughi: I skipped that upgrade and devstack started up for me. | 22:49 |
*** AlanClark has quit IRC | 22:50 | |
*** flashgordon is now known as jog0 | 22:50 | |
bknudson | let me try the patch. | 22:50 |
*** marun has quit IRC | 22:50 | |
*** vijendar has quit IRC | 22:52 | |
asadoughi | bknudson: i think the feedback is a new migration revision file should be produced, so it might not run depending what revision your db is at currently | 22:52 |
*** mrda has joined #openstack-dev | 22:53 | |
*** stevemar2 has quit IRC | 22:54 | |
*** nermina has quit IRC | 22:54 | |
*** xarses has joined #openstack-dev | 22:55 | |
*** dstanek has quit IRC | 22:56 | |
*** prad has quit IRC | 22:57 | |
*** mrda has quit IRC | 22:57 | |
bknudson | https://review.openstack.org/#/c/61677 sure got a lot of reviews | 22:58 |
*** thedodd has quit IRC | 22:59 | |
*** anniec has quit IRC | 23:00 | |
*** dbalog has left #openstack-dev | 23:00 | |
asadoughi | ah looks like the real fix is https://review.openstack.org/#/c/61663/ | 23:01 |
*** rcleere has quit IRC | 23:02 | |
ekarlso | bknudson: is there work to support otehr stuff then bearer tokens ? | 23:02 |
*** eglynn has joined #openstack-dev | 23:02 | |
bknudson | asadoughi: y, 66750 didn't do it for me. | 23:03 |
bknudson | ekarlso: I'm sure there's people thinking about it but I haven't seen progress on a blueprint | 23:03 |
*** xarses has quit IRC | 23:03 | |
*** xarses has joined #openstack-dev | 23:04 | |
bknudson | ekarlso: certainly nothing for icehouse. | 23:04 |
ekarlso | bknudson: there's been talk so long for something :) | 23:04 |
*** nkinder has quit IRC | 23:04 | |
*** colinmcnamara has quit IRC | 23:05 | |
*** zz_ewindisch is now known as ewindisch | 23:05 | |
*** lbragstad has quit IRC | 23:06 | |
*** burt1 has quit IRC | 23:07 | |
*** bauzas has quit IRC | 23:08 | |
*** moijes12 has left #openstack-dev | 23:08 | |
*** Longgeek has joined #openstack-dev | 23:09 | |
xmltok | can someone confirm that availability zones are only for nova compute and cinder? | 23:09 |
*** yjiang5 has joined #openstack-dev | 23:09 | |
notmyname | xmltok: what else are you looking for? | 23:10 |
*** sarob has quit IRC | 23:10 | |
*** sarob has joined #openstack-dev | 23:10 | |
xmltok | curious about glance, i wouldnt want to need to store an image in both az, but my glance and cinder are both ceph backed, and i have a ceph cluster in each a | 23:11 |
xmltok | z | 23:11 |
*** jergerber has quit IRC | 23:11 | |
*** anniec has joined #openstack-dev | 23:11 | |
xmltok | ive also configured a different az name in my nova.conf yet all of my nova-compute instances have appeared in the same availlability zone | 23:12 |
*** thuc has quit IRC | 23:12 | |
notmyname | xmltok: ah. I guess that would depend on how the AZs are exposed. eg swift also supports AZs, but it's normally transparent to the client | 23:12 |
*** thuc has joined #openstack-dev | 23:12 | |
notmyname | xmltok: sorry, I don't know enough to give you an answer | 23:12 |
bknudson | asadoughi: thanks for the help -- 61663 works for me. I'd +1 it but seems like it has enough already. | 23:13 |
*** andrewbogott has joined #openstack-dev | 23:13 | |
*** tjones has quit IRC | 23:13 | |
*** Longgeek has quit IRC | 23:14 | |
*** reed__ has joined #openstack-dev | 23:14 | |
bknudson | I guess the submitter has to respond to comments. | 23:14 |
*** colinmcnamara has joined #openstack-dev | 23:14 | |
*** sarob has quit IRC | 23:15 | |
*** thuc_ has joined #openstack-dev | 23:16 | |
xmltok | notmyname: http://www.sebastien-han.fr/blog/2013/03/18/grizzly-availability-zones/ it sounds like node_availability_zone in the config files is deprecated, in order to put compute into an az you need to put it in a host aggregate inside of an az | 23:16 |
*** markmcclain has joined #openstack-dev | 23:16 | |
*** thuc has quit IRC | 23:17 | |
*** soleblaze has quit IRC | 23:18 | |
*** jobewan has quit IRC | 23:18 | |
*** markmcclain1 has joined #openstack-dev | 23:19 | |
*** mrodden has quit IRC | 23:20 | |
*** denis_makogon has quit IRC | 23:20 | |
*** exed_ has quit IRC | 23:21 | |
*** markmcclain has quit IRC | 23:21 | |
*** soleblaze has joined #openstack-dev | 23:21 | |
*** eglynn has quit IRC | 23:21 | |
*** herndon_ has quit IRC | 23:22 | |
*** TravT has quit IRC | 23:23 | |
*** CaptTofu has quit IRC | 23:24 | |
*** sarob has joined #openstack-dev | 23:24 | |
*** CaptTofu has joined #openstack-dev | 23:25 | |
*** kbrierly has quit IRC | 23:25 | |
*** Gordonz has joined #openstack-dev | 23:25 | |
*** reed__ has quit IRC | 23:25 | |
*** Gordonz has quit IRC | 23:25 | |
*** Gordonz has joined #openstack-dev | 23:26 | |
*** carl_baldwin has joined #openstack-dev | 23:27 | |
*** CaptTofu has quit IRC | 23:29 | |
*** jobewan has joined #openstack-dev | 23:30 | |
*** gordc has quit IRC | 23:32 | |
*** jcooley_ has quit IRC | 23:32 | |
*** buzztrol_ has quit IRC | 23:33 | |
*** aeperezt has joined #openstack-dev | 23:34 | |
*** kbringard has quit IRC | 23:37 | |
*** buzztroll has joined #openstack-dev | 23:38 | |
*** emagana has joined #openstack-dev | 23:38 | |
*** mfink has joined #openstack-dev | 23:39 | |
*** jcooley_ has joined #openstack-dev | 23:39 | |
*** tjones has joined #openstack-dev | 23:40 | |
*** vipul-away is now known as vipul | 23:42 | |
*** cdub has quit IRC | 23:42 | |
*** jcooley_ has quit IRC | 23:44 | |
*** achampion has joined #openstack-dev | 23:44 | |
*** boris-42 has quit IRC | 23:45 | |
*** rnirmal has quit IRC | 23:45 | |
*** salv-orlando has joined #openstack-dev | 23:47 | |
*** obondarev_ has joined #openstack-dev | 23:48 | |
*** krotscheck has joined #openstack-dev | 23:50 | |
*** jamezpolley has joined #openstack-dev | 23:51 | |
*** markmcclain1 has quit IRC | 23:52 | |
*** flaper87 is now known as flaper87|afk | 23:53 | |
*** carl_baldwin has quit IRC | 23:53 | |
*** mikeoutl_ has joined #openstack-dev | 23:54 | |
*** mikeoutland has quit IRC | 23:54 | |
*** shadower has quit IRC | 23:55 | |
*** achampion has quit IRC | 23:55 | |
*** DuncanT has quit IRC | 23:55 | |
*** achampion has joined #openstack-dev | 23:56 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!