terrylhowe | it may be that doing anything more would break neutron because I think the versions are hard coded in neutron. It might be that that neturon versions need to be taken out of the resources first | 00:05 |
---|---|---|
terrylhowe | or at the same time rather | 00:05 |
*** briancurtin has joined #openstack-sdks | 00:30 | |
*** briancurtin has joined #openstack-sdks | 00:30 | |
*** briancurtin has joined #openstack-sdks | 00:31 | |
*** rmcall has quit IRC | 00:36 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 01:18 | |
*** briancurtin has quit IRC | 01:24 | |
*** briancurtin has joined #openstack-sdks | 01:28 | |
*** briancurtin has joined #openstack-sdks | 01:28 | |
*** rmcall has joined #openstack-sdks | 01:52 | |
*** rmcall has quit IRC | 01:56 | |
*** Alex_Gaynor_ has joined #openstack-sdks | 01:56 | |
*** Alex_Gaynor has quit IRC | 01:56 | |
*** edleafe has quit IRC | 01:58 | |
*** Alex_Gaynor_ is now known as Alex_Gaynor | 01:58 | |
*** VeggieMeat has quit IRC | 01:58 | |
*** VeggieMeat has joined #openstack-sdks | 01:58 | |
*** edleafe has joined #openstack-sdks | 01:58 | |
*** rmcall has joined #openstack-sdks | 01:58 | |
*** fifieldt has joined #openstack-sdks | 01:59 | |
*** Viswanath has joined #openstack-sdks | 02:23 | |
*** Viswanath has quit IRC | 02:26 | |
*** rmcall has quit IRC | 02:42 | |
*** rmcall has joined #openstack-sdks | 02:43 | |
*** subscope has quit IRC | 02:58 | |
*** subscope has joined #openstack-sdks | 04:24 | |
*** briancurtin has quit IRC | 04:48 | |
*** briancurtin has joined #openstack-sdks | 04:49 | |
*** briancurtin has quit IRC | 04:53 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 05:04 | |
*** stevemar2 has joined #openstack-sdks | 05:09 | |
*** stevemar has quit IRC | 05:13 | |
*** k4n0 has joined #openstack-sdks | 05:39 | |
*** subscope has quit IRC | 05:40 | |
*** rmcall has quit IRC | 06:56 | |
*** terrylhowe has quit IRC | 07:07 | |
openstackgerrit | Steve Martinelli proposed a change to openstack/python-openstackclient: Redo auth plugins https://review.openstack.org/131804 | 07:25 |
*** rmcall has joined #openstack-sdks | 07:30 | |
*** rmcall has quit IRC | 07:52 | |
*** stevemar2 has quit IRC | 07:59 | |
*** stevemar has joined #openstack-sdks | 07:59 | |
openstackgerrit | Steve Martinelli proposed a change to openstack/python-openstackclient: Make some v3 auth data default to the keystone default domain https://review.openstack.org/125865 | 08:13 |
*** terrylhowe has joined #openstack-sdks | 10:31 | |
openstackgerrit | Terry Howe proposed a change to openstack/python-openstackclient: Make some v3 auth data default to the keystone default domain https://review.openstack.org/125865 | 12:06 |
*** ayoung-dadmode has quit IRC | 13:59 | |
*** sigmavirus24_awa is now known as sigmavirus24 | 14:12 | |
*** briancurtin has joined #openstack-sdks | 14:19 | |
*** mattfarina has joined #openstack-sdks | 14:49 | |
*** ayoung has joined #openstack-sdks | 14:49 | |
*** stevemar has quit IRC | 14:51 | |
*** openstackgerrit has quit IRC | 14:55 | |
*** rmcall has joined #openstack-sdks | 15:01 | |
*** rmcall has quit IRC | 15:05 | |
*** tellesnobrega_ has joined #openstack-sdks | 15:18 | |
*** tellesnobrega_ has quit IRC | 15:20 | |
*** k4n0 has quit IRC | 15:27 | |
*** stevemar has joined #openstack-sdks | 15:51 | |
*** stevemar has quit IRC | 16:00 | |
*** stevemar has joined #openstack-sdks | 16:00 | |
*** stevemar2 has joined #openstack-sdks | 16:41 | |
*** stevemar has quit IRC | 16:44 | |
*** tellesnobrega_ has joined #openstack-sdks | 16:48 | |
*** tellesnobrega_ has quit IRC | 16:49 | |
*** tellesnobrega_ has joined #openstack-sdks | 16:52 | |
*** Viswanath has joined #openstack-sdks | 16:53 | |
*** Viswanath has quit IRC | 16:56 | |
*** terrylhowe has left #openstack-sdks | 17:07 | |
*** tellesnobrega_ has quit IRC | 17:08 | |
*** terrylhowe has joined #openstack-sdks | 17:18 | |
Alex_Gaynor | jamielennox: ping | 17:29 |
*** rmcall has joined #openstack-sdks | 17:31 | |
*** tellesnobrega_ has joined #openstack-sdks | 17:45 | |
*** openstackgerrit has joined #openstack-sdks | 17:48 | |
jamielennox | Alex_Gaynor: hi | 17:56 |
Alex_Gaynor | jamielennox: Hey. | 17:56 |
Alex_Gaynor | jamielennox: I've got a question about the new auth stuff in keystoneclient and that's being used by the other clients (e.g. neutronclient) (sadly I can't only care about unified SDK yet); is this an ok place to ask a question? | 17:56 |
jamielennox | Alex_Gaynor: sure, and i understand, i'm having to deal with the existing clients as well | 17:57 |
Alex_Gaynor | jamielennox: k; If I want to write an auth thing that supports Rackspace's custom (:-( ) API key auth; is all I need to do subclass keystoneclient.auth.identity.v2.Auth like Password does, and write the get_auth_data method that returns the right data for the JSON body? | 17:58 |
jamielennox | Alex_Gaynor: assuming that the custom auth still returns the standard AccessInfo then yes | 17:58 |
jamielennox | i make the distinction between the basic auth plugin which can be anything at all you want to auth with | 17:59 |
Alex_Gaynor | jamielennox: fantastic, and then I guess pass an instance of it to the right place, and everything is happy :-) | 17:59 |
jamielennox | and the identity plugins which use te AccessInfo structures provided by keystoneclient | 17:59 |
jamielennox | Alex_Gaynor: that's they plan, if you give it a setuptools entrypoint you should also start being able to use --os-auth-plugin rax and such on command lines | 18:00 |
jamielennox | at least as CLI support is picked up | 18:00 |
jamielennox | OSC is the only one at the moment | 18:00 |
Alex_Gaynor | righto | 18:00 |
*** tellesnobrega_ has quit IRC | 18:03 | |
*** tellesnobrega_ has joined #openstack-sdks | 18:12 | |
*** tellesnobrega_ has quit IRC | 18:39 | |
*** tellesnobrega_ has joined #openstack-sdks | 18:43 | |
sigmavirus24 | No meeting today? | 19:05 |
stevelle | guessing DST end threw the schedule | 19:07 |
sigmavirus24 | Yeah. Did it to me with the rest of the meetings this week so far | 19:12 |
sigmavirus24 | Ended up putting these on my calendar as UTC times so that doesn't happen | 19:12 |
sigmavirus24 | Guess I'll actually actually go get lunch now | 19:13 |
sigmavirus24 | The reminder popped up as I was about to grab it before =P | 19:13 |
*** tellesnobrega_ has quit IRC | 19:20 | |
*** tellesnobrega_ has joined #openstack-sdks | 19:23 | |
briancurtin | oh man, so the meeting was a half hour ago? whoops. time is hard | 19:36 |
stevelle | that | 19:36 |
terrylhowe | I didn’t have that meeting in my calendar as UTC | 19:37 |
stevelle | I didn't either. Had to check when sigmavirus24 asked about it | 19:38 |
terrylhowe | I could meet whenever though | 19:38 |
briancurtin | terrylhowe: i think a meeting follows us in that channel, so may as well just stay here and chat? | 19:39 |
terrylhowe | that is fine with me | 19:41 |
stevelle | so, in 19 minutes? | 19:41 |
briancurtin | stevelle: i dont think we can do anything formal at this point since we lost our spot in the meeting room | 19:42 |
stevelle | just meant for chatting here. | 19:42 |
stevelle | sigmavirus24 will probably wander by in a few to join | 19:42 |
sigmavirus24 | stevelle: perfect timing | 19:42 |
sigmavirus24 | I didn't actually have anything to talk about though | 19:42 |
sigmavirus24 | So I'm okay if we don't want to have a meeting =P | 19:43 |
stevelle | oh, well then | 19:43 |
sigmavirus24 | Sorry if it seemed like I had an agenda or anything | 19:43 |
briancurtin | terrylhowe: what are the biggest blockers right now for your reviews? i got a bunch out of the way, and am starting to look at the proxy implementations. i have a lot to think about there because i think there are a few ways people will want to construct these, but i dont know that we have to have that nailed down immediately | 19:48 |
terrylhowe | I don’t think there are many dependencies | 19:48 |
terrylhowe | anything with userpref changes will mess up what sigmavirus24 was doing with service loading though, i think there is a docs one for user prefs | 19:49 |
sigmavirus24 | terrylhowe: I can abandon that. I'm fairly confident that the TODO that I read was way out of date and that no one really wants that work anyway :) | 19:50 |
terrylhowe | https://review.openstack.org/#/c/132417/ | 19:50 |
sigmavirus24 | I had left it open in case discussion lead to a change of mind, but it can always be re-considered later. It's a fairly trivial amount of code to reproduce it | 19:50 |
terrylhowe | I’m not sure the solution sigmavirus24 but it is an interesting problem. I was kind of curious what you might come up with :) | 19:53 |
sigmavirus24 | Yeah I'm just honestly not familiar enough with the library to fully understand what needs to be done and where. I'm also a bit unsure if you're talking about modifying other classes services directly based on choices made by the user | 19:55 |
briancurtin | while we're in meeting mode, and since sigmavirus24 was asking for details of some conversations, i put this huge post together: http://blog.briancurtin.com/posts/openstack-sdk-post-summit-update.html | 19:57 |
briancurtin | (the top section is what i sent to openstack-dev earlier) | 19:57 |
sigmavirus24 | briancurtin: I read the email. Hadn't gotten around to finishing the bottom part | 19:58 |
terrylhowe | the only thing I can think of is if there was a way to scan the args with argparse for —os-api-service-module before processing the rest of the options | 19:58 |
terrylhowe | cool briancurtin I’m curious to see where things go with swiftclient | 20:00 |
briancurtin | terrylhowe: im writing up the getting started guide right now so i can push that through and get that in their hands | 20:01 |
sigmavirus24 | terrylhowe: that's something that seems plausible to do | 20:04 |
*** stevemar2 is now known as stevemar | 20:11 | |
*** etoews has joined #openstack-sdks | 20:15 | |
*** tellesnobrega_ has quit IRC | 20:26 | |
*** etoews has quit IRC | 20:49 | |
openstackgerrit | A change was merged to stackforge/python-openstacksdk: move examples to code use preference docs https://review.openstack.org/132417 | 20:49 |
openstackgerrit | A change was merged to stackforge/python-openstacksdk: Move examples to code session docs https://review.openstack.org/132419 | 20:49 |
*** stevemar has quit IRC | 20:50 | |
*** stevemar has joined #openstack-sdks | 20:50 | |
*** etoews has joined #openstack-sdks | 20:51 | |
openstackgerrit | A change was merged to stackforge/python-openstacksdk: Move transport examples to code https://review.openstack.org/132418 | 20:51 |
openstackgerrit | A change was merged to stackforge/python-openstacksdk: Move examples service filter to code https://review.openstack.org/132420 | 20:53 |
*** Viswanath has joined #openstack-sdks | 21:09 | |
*** Viswanath has quit IRC | 21:12 | |
*** rmcall has quit IRC | 21:28 | |
*** rmcall has joined #openstack-sdks | 21:29 | |
stevemar | terrylhowe, dude, thanks for https://review.openstack.org/#/c/125865/ - i was so stumped on that one | 21:42 |
*** rmcall has quit IRC | 21:42 | |
terrylhowe | it was hard to find, that table driven approach is kind of hard to debug | 21:43 |
openstackgerrit | Steve Martinelli proposed a change to openstack/python-openstackclient: Make some v3 auth data default to the keystone default domain https://review.openstack.org/125865 | 21:44 |
*** rmcall has joined #openstack-sdks | 21:45 | |
*** fifieldt has quit IRC | 21:47 | |
*** fifieldt has joined #openstack-sdks | 22:01 | |
stevemar | dtroyer, https://review.openstack.org/#/c/131804/ and https://review.openstack.org/#/c/125865/ are ready to go i think... | 22:26 |
openstackgerrit | Steve Martinelli proposed a change to openstack/python-openstackclient: Redo auth plugins https://review.openstack.org/131804 | 22:39 |
openstackgerrit | Steve Martinelli proposed a change to openstack/python-openstackclient: Make some v3 auth data default to the keystone default domain https://review.openstack.org/125865 | 22:40 |
*** mattfarina has quit IRC | 23:00 | |
*** etoews has quit IRC | 23:02 | |
*** sigmavirus24 is now known as sigmavirus24_awa | 23:21 | |
*** briancurtin has quit IRC | 23:30 | |
*** ayoung has quit IRC | 23:41 | |
*** briancurtin has joined #openstack-sdks | 23:47 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!