Friday, 2014-09-12

*** stevemar has joined #openstack-sdks02:41
*** stevemar has quit IRC03:16
*** stevemar2 has joined #openstack-sdks03:16
*** briancurtin has quit IRC03:26
*** briancurtin has joined #openstack-sdks03:27
*** briancurtin has joined #openstack-sdks03:27
*** rmcall has joined #openstack-sdks03:29
*** briancurtin has quit IRC03:31
*** briancurtin has joined #openstack-sdks03:57
*** briancurtin has joined #openstack-sdks03:57
*** briancurtin2 has joined #openstack-sdks03:59
*** briancurtin has quit IRC03:59
*** rmcall has quit IRC04:03
*** rmcall has joined #openstack-sdks04:04
*** briancurtin2 has quit IRC04:04
*** terrylhowe has quit IRC04:32
*** HenryG is now known as HenryG_afk04:55
*** briancurtin has joined #openstack-sdks05:00
*** HenryG_afk has quit IRC05:04
*** briancurtin has quit IRC05:04
*** HenryG has joined #openstack-sdks05:23
*** HenryG is now known as HenryG_afk05:24
*** stevemar2 is now known as stevemar05:56
*** briancurtin has joined #openstack-sdks06:01
*** briancurtin has quit IRC06:06
*** stevemar has quit IRC06:10
*** rmcall has quit IRC06:35
*** k4n0 has joined #openstack-sdks06:45
*** briancurtin has joined #openstack-sdks07:01
*** briancurtin has quit IRC07:06
*** briancurtin has joined #openstack-sdks08:02
*** mattyw has joined #openstack-sdks08:02
*** briancurtin has quit IRC08:07
*** briancurtin has joined #openstack-sdks09:03
*** briancurtin has quit IRC09:07
*** mattyw has quit IRC10:02
*** briancurtin has joined #openstack-sdks10:04
*** briancurtin has quit IRC10:08
*** mattyw has joined #openstack-sdks10:35
*** briancurtin has joined #openstack-sdks11:04
*** briancurtin has quit IRC11:04
*** briancurtin has joined #openstack-sdks11:04
*** briancurtin has quit IRC11:09
*** samchoi has quit IRC11:21
*** briancurtin has joined #openstack-sdks12:05
*** briancurtin has joined #openstack-sdks12:05
*** briancurtin has quit IRC12:10
*** terrylhowe has joined #openstack-sdks12:47
*** HenryG_afk is now known as HenryG12:51
*** briancurtin has joined #openstack-sdks13:01
*** briancurtin has quit IRC13:06
openstackgerritSamuel de Medeiros Queiroz proposed a change to openstack/python-openstackclient: Add support to inherited domain role grant calls  https://review.openstack.org/12110113:07
*** rmcall has joined #openstack-sdks13:19
*** stevemar has joined #openstack-sdks13:20
*** rmcall has quit IRC13:23
*** mfer has joined #openstack-sdks13:23
*** sigmavirus24_awa is now known as sigmavirus2413:35
*** bknudson has joined #openstack-sdks13:39
*** briancurtin has joined #openstack-sdks13:46
*** briancurtin has joined #openstack-sdks13:46
*** briancurtin has quit IRC13:51
*** rmcall has joined #openstack-sdks13:59
*** rmcall has quit IRC14:16
*** rmcall has joined #openstack-sdks14:20
*** dtroyer has joined #openstack-sdks14:25
*** dtroyer has quit IRC14:32
*** dtroyer has joined #openstack-sdks14:33
*** VeggieMeat has quit IRC14:51
*** VeggieMeat has joined #openstack-sdks14:51
*** mattyw has quit IRC15:15
*** mattyw has joined #openstack-sdks15:43
*** k4n0 has quit IRC16:40
*** mattyw has quit IRC16:53
*** stevemar has quit IRC18:52
*** stevemar has joined #openstack-sdks18:53
*** rmcall has quit IRC20:25
openstackgerritTerry Howe proposed a change to stackforge/python-openstacksdk: Move cacert/insecure awkwardness examples/common  https://review.openstack.org/11957920:47
openstackgerritTerry Howe proposed a change to stackforge/python-openstacksdk: Prepare for auth plugins  https://review.openstack.org/11867920:48
*** fifieldt_ has joined #openstack-sdks20:50
dtroyerstevemar: our comment in https://review.openstack.org/#/c/106178/ re one small change, does that refer to Jamie's comment?20:52
stevemardtroyer, yes sir20:53
*** fifieldt has quit IRC20:54
stevemardtroyer, just wanted to know what is up with it? do you want it to bake longer? get more feedback, etc?20:54
dtroyerok…I now have a reason not to change to session.get_token()…20:54
dtroyerI wanted to wait a day or two after the release, but then was out for two days and am just not getting back to it20:55
stevemardtroyer, after the release of 0.5?20:56
dtroyerthe current get_token() code returns a dict that includes user_id and project_id, which are hard for a user to find otherwise20:56
dtroyerno, 0.4.1 on Monday/Tuesday20:56
stevemaroops, i meant 0.4.120:56
dtroyer;)20:56
*** mfer has quit IRC20:57
stevemarso the fact that get_token() returns the other stuff, sounds like thats good?20:58
dtroyerit's been that way up to now, I'd rather not change it20:58
dtroyerhow else can I find out my project_id as a user?20:58
dtroyermaybe that's something we need to do as value-add for osc?20:59
stevemardtroyer, oh the session's get_token() code doesn't return the project id21:04
stevemaryou meant OSC's get_token code does21:04
dtroyerit isn't osc's, it's from the service catalog21:04
dtroyerbut the 'token issue' output has always had it21:05
dtroyerif we ca get a cleaner way to get user_id and project_id that doesn't add to the token cache that would be fine21:05
stevemardtroyer, are the user_id and project_id really necessary? it's just another token based on the current auth args?21:07
dtroyerthey are not necessary for the token itself.21:07
dtroyerbut I I find I'm in a place I need my user_id or project_id, I don't know how to get it otherwise21:08
dtroyerparsing endpoints isn't an answer, but if that's the only way we'll put that into OSc so the user doesn't have to and add a command for it21:08
stevemardtroyer, Oh, just read your comment, now i get the issue...21:15
stevemarI recall that now... where session.get_token() just returns a string. what about session.get_auth_ref() I think that returns an actual dict21:16
stevemarbah, that's at the auth level, not the session level21:17
stevemardtroyer, I had this in a script I wrote: token = auth_plugin.get_auth_ref(session_obj) but it feels round-about in OSCs case21:18
openstackgerritTerry Howe proposed a change to stackforge/python-openstacksdk: Use stevedore to load authorization plugins  https://review.openstack.org/11962821:20
dtroyerstevemar: I'm not able to work on this long enough to keep it all in my head.21:20
dtroyeralso v2 vs v321:20
*** dhellmann is now known as dhellmann_21:22
dtroyerI'd like to merge 106178 as-is and then work out the commands to get the stuff out of the service catalog and elsewhere that is already available to the client like that.  IOW, I don't think we have an equivalent to 'keystone catalog'.  separate issue21:22
openstackgerritTerry Howe proposed a change to stackforge/python-openstacksdk: Use stevedore to load authorization plugins  https://review.openstack.org/11962821:23
stevemardtroyer, sounds completely reasonable21:26
stevemardtroyer, devstack uses the latest release of OSC or master? (i think master right?)21:26
dtroyerit runs master by default21:26
stevemardtroyer, i like the fact that we're playing with fire every time21:27
dtroyerstevemar: it keeps us honest!21:27
*** stevemar2 has joined #openstack-sdks21:37
*** stevemar has quit IRC21:38
*** jamielennox has quit IRC21:39
*** jamielennox has joined #openstack-sdks21:41
*** Alex_Gaynor has quit IRC21:42
*** stevemar2 has quit IRC21:43
*** Alex_Gaynor has joined #openstack-sdks21:44
openstackgerritTerry Howe proposed a change to stackforge/python-openstacksdk: Introduce the connection class  https://review.openstack.org/12017022:00
*** Klumben has quit IRC22:15
*** sigmavirus24 is now known as sigmavirus24_awa22:15
*** Klumben has joined #openstack-sdks22:16
*** electrichead has joined #openstack-sdks22:17
*** jdaggett has quit IRC22:18
*** dhellmann_ has quit IRC22:18
*** jdag___ has joined #openstack-sdks22:19
*** stevemar has joined #openstack-sdks22:27
*** openstack has joined #openstack-sdks23:37
*** sendak.freenode.net sets mode: +ns 23:37
*** sendak.freenode.net sets mode: -o openstack23:42
-sendak.freenode.net- *** Notice -- TS for #openstack-sdks changed from 1410565077 to 139161832823:42
*** sendak.freenode.net sets mode: +ct-s 23:42
*** stevelle has joined #openstack-sdks23:42
*** dhellmann has joined #openstack-sdks23:42
*** openstackgerrit has joined #openstack-sdks23:42
*** sigmavirus24_awa has joined #openstack-sdks23:42
*** HenryG has joined #openstack-sdks23:42
*** jdag___ has joined #openstack-sdks23:42
*** edleafe has joined #openstack-sdks23:42
*** dolphm has joined #openstack-sdks23:42
*** VeggieMeat has joined #openstack-sdks23:42
*** devx_ has joined #openstack-sdks23:42
*** electrichead has joined #openstack-sdks23:42
*** Klumben has joined #openstack-sdks23:42
*** Alex_Gaynor has joined #openstack-sdks23:42
*** jamielennox has joined #openstack-sdks23:42
*** dtroyer has joined #openstack-sdks23:42
*** f13o has joined #openstack-sdks23:42
*** toabctl has joined #openstack-sdks23:42
*** sivel has joined #openstack-sdks23:42
*** notmyname has joined #openstack-sdks23:42
*** anteaya has joined #openstack-sdks23:42
*** mordred has joined #openstack-sdks23:42
*** sendak.freenode.net changes topic to "#openstack-sdks"23:42
*** glenc has joined #openstack-sdks23:45
*** fifieldt has joined #openstack-sdks23:54
*** jdag___ has quit IRC23:59
*** jdag___ has joined #openstack-sdks23:59

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