Saturday, 2012-02-25

*** hashar has quit IRC00:03
*** Guest6998 has joined #openstack-dev00:03
*** littleidea has joined #openstack-dev00:04
*** deshantm has joined #openstack-dev00:11
*** Guest6998 has quit IRC00:12
mikalIs there a way to ask smokestack to retest a patch?00:14
mikalI think http://smokestack.openstack.org/?go=/jobs/13358 might be a bogus failure...00:15
*** asdfasdf has joined #openstack-dev00:20
*** nati has quit IRC00:20
*** asdfasdf has quit IRC00:20
*** dtroyer has joined #openstack-dev00:24
*** andrewbogott has joined #openstack-dev00:29
*** zykes has joined #openstack-dev00:29
andrewbogottsleepsonthefloo:  I'm looking at http://wiki.openstack.org/guest-configuration and wondering which, if any, of those features actually made it into essex.  Do you know?00:30
*** zykes- has quit IRC00:32
sleepsontheflooandrewbogott - at the time we brainstormed on that, we were feeling ambitious :) but it was a little too late in the game to pull off non-native interop for essex.  This will be a good folsom conference topic..00:33
andrewbogottOK, so it's still cloud-init or nothing?00:34
sleepsonthefloowell, for guest config, there are 3 methods in use: file injection (mostly for xen), config drive, and ec2 metadata00:35
andrewbogottYep, ok.00:35
andrewbogottthanks!00:36
sleepsonthefloothe main guest agent people use is cloud init, which interacts with ec2 and config drive (the latter is very new, have not tried it)00:36
sleepsonthefloohowever, other guest agents are in use00:36
*** zykes has quit IRC00:37
*** nati has joined #openstack-dev00:44
*** torgomatic has quit IRC00:45
*** jdg has quit IRC00:45
*** dillon-w has quit IRC00:50
*** dtroyer has quit IRC00:50
*** nati has quit IRC00:53
*** nati has joined #openstack-dev00:53
*** andrewbogott has quit IRC00:58
vishycore reviewers: need this in https://review.openstack.org/#change,448101:00
*** dayou has quit IRC01:06
*** RobertLaptop has joined #openstack-dev01:23
justinsbandrewbogott_afk, sleepsonthefloo: Config drive has been around for a while and works great.  What is really new is that I contributed a simple init.d script which applies that config: https://review.openstack.org/#change,449801:25
*** nati has quit IRC01:25
*** nati has joined #openstack-dev01:25
justinsbsleepsonthefloo: Unless you meant config drive support for cloud init, which is also bleeding edge01:27
comstudvishy: pong01:28
justinsbUsing config drive + init script means there's no need for DHCP and it side-steps a lot of nasty configuration (at least for me!)01:28
vishycomstud: so I'm rewriting some code for cloudpipe01:28
comstudvishy: okie01:28
vishycomstud: and i need to get a network, I was trying to use shared code to grab the uuid01:28
vishycomstud: but the only thing i could find in common doesn't include the uuid01:29
vishycomstud: should I add another method to common that just grabs the unadulterated nwinfo?01:29
*** dayou has joined #openstack-dev01:29
comstudvishy: Ah...i see..  I think so01:30
comstudvishy: wait... network uuid?01:31
vishycomstud: yeah i need extra info from the db that isn't in the cache01:31
vishybut to request the network from network_api using network_get01:31
vishyi have to pass a uuid01:31
comstudvishy: i have an 'id' stored in instance_info_caches, it appears01:32
comstudoh01:33
comstudi see01:33
comstudanyway... yeah01:33
comstudif you need to get at the 'id', add a new method to common01:33
vishyid == uuid?01:33
comstudyeah it is01:33
vishyi assume01:33
comstud"meta": {"tenant_id": "openstack"}, "id": "e9f5a3b3-d172-4373-84b9-917ed307cb26", "label": "public"}01:34
comstudit appears buried under meta01:34
comstuder01:34
comstudnevermind, missed a }01:34
*** pixelbeat has quit IRC01:34
vishyok i'm going to add a call to get the unadulterated nw_info01:35
comstudhmm.. wait01:35
comstudare you positive common.get_networks_for_instance() doesn't give it to you without a new call?01:35
vishypretty sure01:36
vishyit doesn't show it in the docstring01:36
vishynor is it accessed in the builder01:36
*** berendt has quit IRC01:36
comstudyeah i know it's not accessed01:36
comstudsec, i'll tell you for sure01:36
vishyas far as i can tell it isn't added in get_networks_for_instance_from_nw_info01:37
vishyalthough i could just add it there01:37
comstudwell, hyrdate() does all of the magic01:37
comstudhydrate01:37
comstudthat's what i'm wondering. if hydrate drops it01:37
vishyoh i see01:37
*** zykes has joined #openstack-dev01:38
*** nati has quit IRC01:42
comstudit's in there01:43
comstudalready01:43
comstud>>> network_model.NetworkInfo.hydrate(i['network_info'])[0]['network']['id']01:44
comstudu'e9f5a3b3-d172-4373-84b9-917ed307cb26'01:44
comstudi = instance_info_cache entry01:44
comstudvishy: ^01:44
comstudso01:45
comstudfoo = get_networks_for_instance(context, instance)01:45
comstudfoo[0]['network']['id']01:45
vishyum01:46
comstudgives you the network ID of the first vif01:46
vishyhave you read get_networks_for_instance() ?01:46
vishyit don't work that way01:46
comstudoh01:46
vishyit returns the mangled version01:46
comstudlol, sorry, i just woke up01:46
comstud:)01:46
comstudyeah, just add a new call01:47
vishycheck!01:47
comstudalthough i guess i don't see a problem adding it to get_networks_for_instance_from_nw_info()01:47
comstud'id' that is01:47
vishycomstud: one more question01:49
vishyhow come the return {}01:49
vishyin the ec2utils version there is a cached_nwinfo = [] there01:49
comstudi bet it's supposed to be [] eh01:49
comstudoh01:50
comstudbecause  get_networks_for_instance() returns a dictionary?01:50
vishywell it is an early return01:50
comstuder01:50
vishynot sure why the early return is necessary01:50
comstudbecause get_networks_for_instance_from_nw_info() returns a dictionary?01:50
comstudi had seen where 'network_info' was None01:51
comstudin my DB01:51
comstudie, instance['info_cache']['network_info'] was None01:52
comstudmaybe hydrate handles that case okay01:52
comstudbut I dunno01:53
vishycomstud: https://gist.github.com/190521401:53
vishydoes that seem reasonable?01:53
comstudbut why bother calling 2 extra methods when you don't need to?:)01:53
comstudlooking01:53
*** danwent has quit IRC01:54
*** Ryan_Lane has quit IRC01:54
comstudyeah, that would work01:54
comstudbut you lose my performance improvement!01:54
comstud:)01:55
vishyhehe02:03
*** Ryan_Lane has joined #openstack-dev02:05
*** hub_cap has joined #openstack-dev02:06
hub_caphey guys, i just submited a quick bugfix to deprecated auth. there was a import goof, can someone peep it?02:07
hub_caphttps://review.openstack.org/452502:08
hub_capcrickets :D02:16
*** jdurgin has quit IRC02:19
*** adjohn has quit IRC02:25
*** jog0_ has joined #openstack-dev02:26
*** jog0_ has quit IRC02:27
*** crobinso has quit IRC02:44
*** dayou has quit IRC02:50
*** dayou has joined #openstack-dev02:51
*** crobinso has joined #openstack-dev02:57
*** shevek_ has joined #openstack-dev02:59
*** shevek_ has quit IRC03:07
*** shevek_ has joined #openstack-dev03:13
*** hub_cap has quit IRC03:15
*** hub_cap has joined #openstack-dev03:20
*** shevek_ has quit IRC03:21
*** hub_cap has quit IRC03:22
*** hub_cap has joined #openstack-dev03:23
*** danwent has joined #openstack-dev03:25
*** cp16net has quit IRC03:28
*** danwent has quit IRC03:40
*** jakedahn has joined #openstack-dev03:54
*** jakedahn has quit IRC03:58
*** martine has joined #openstack-dev04:02
*** novas0x2a|laptop has quit IRC04:03
*** hub_cap has quit IRC04:05
*** Ryan_Lane has quit IRC04:09
*** dtroyer has joined #openstack-dev04:11
*** deshantm_ has joined #openstack-dev04:19
*** deshantm has quit IRC04:20
*** mdomsch has quit IRC04:31
*** ROME has joined #openstack-dev04:41
*** ROME has left #openstack-dev04:41
*** martine has quit IRC04:45
*** gyee has quit IRC04:56
openstackgerritVerification of a change to openstack/keystone failed: Add Vary header (bug 928057)  https://review.openstack.org/446004:57
uvirtbotLaunchpad bug 928057 in keystone "provide Vary header" [Medium,In progress] https://launchpad.net/bugs/92805704:57
*** reed_ has joined #openstack-dev05:11
*** reed has quit IRC05:12
*** cweidenkeller has quit IRC05:14
*** cweidenkeller has joined #openstack-dev05:15
*** deshantm_ has quit IRC05:15
*** mnewby has quit IRC05:18
*** rickfoosusa has quit IRC05:20
*** mjfork has quit IRC05:41
*** nati has joined #openstack-dev05:45
*** ncode has quit IRC05:57
*** reed_ has quit IRC06:05
*** dtroyer has quit IRC06:11
*** bepernoot has joined #openstack-dev06:14
*** nati has quit IRC06:26
*** RobertLaptop has left #openstack-dev06:28
*** zaitcev has quit IRC06:29
*** crobinso has quit IRC06:44
*** crobinso_ has quit IRC06:44
*** littleidea has quit IRC06:52
*** jakedahn has joined #openstack-dev06:56
*** crobinso has joined #openstack-dev06:56
*** crobinso_ has joined #openstack-dev06:58
*** bepernoot has quit IRC07:06
*** zigo has joined #openstack-dev07:18
*** shevek_ has joined #openstack-dev07:24
*** bepernoot has joined #openstack-dev07:51
*** bepernoot has quit IRC08:03
*** Ryan_Lane has joined #openstack-dev08:28
*** Mandell has quit IRC08:53
*** hashar has joined #openstack-dev08:56
*** sleepsonthefloo has quit IRC09:13
*** zigo has quit IRC10:16
*** zigo has joined #openstack-dev10:19
*** dubsquared1 has joined #openstack-dev10:50
*** dubsquared has quit IRC10:52
*** pixelbeat has joined #openstack-dev10:53
*** GheRivero has quit IRC11:18
*** mattray has joined #openstack-dev11:32
*** danwent has joined #openstack-dev11:44
*** zykes- has joined #openstack-dev12:02
*** zykes has quit IRC12:05
*** mancdaz1203 has quit IRC12:10
*** mattray has quit IRC12:11
*** danwent has quit IRC12:16
*** berendt has joined #openstack-dev12:22
*** hashar has quit IRC12:38
*** zykes- has quit IRC12:43
*** zykes- has joined #openstack-dev12:43
*** zigo has quit IRC12:49
*** rbasak has quit IRC13:04
berendtwhat's wrong with my network configuration if my nova-compute can't create new instances failing with the following:13:12
berendtFile "/usr/lib64/python2.6/site-packages/nova/network/model.py", line 240, in hydrate: vif = VIF(**vif) --> (nova.rpc.common): TRACE: TypeError: __init__() keywords must be strings13:12
berendt(full traceback: http://paste.openstack.org/show/5001/)13:12
berendtnova.conf and nova-manage network create call at http://paste.openstack.org/show/5002/13:16
*** LinuxJedi has quit IRC13:21
*** dayou has quit IRC13:23
*** LinuxJedi has joined #openstack-dev13:32
*** zykes__ has joined #openstack-dev13:43
*** hashar has joined #openstack-dev13:46
*** zykes- has quit IRC13:46
berendti think something is broken.. i created a bug 94094113:54
uvirtbotLaunchpad bug 940941 in nova "spawning of instance failed during network setup: error in method hydrate in nova/network/model.py" [Undecided,New] https://launchpad.net/bugs/94094113:54
*** littleidea has joined #openstack-dev14:19
*** littleidea has quit IRC14:25
*** littleidea has joined #openstack-dev14:25
*** hashar has quit IRC14:42
*** berendt has quit IRC14:48
*** crobinso_ has quit IRC14:50
*** dtroyer has joined #openstack-dev14:56
*** Gordonz has joined #openstack-dev14:58
*** crobinso has quit IRC14:59
*** littleidea has quit IRC15:10
*** dayou has joined #openstack-dev15:41
*** zykes has joined #openstack-dev15:43
*** zykes__ has quit IRC15:44
*** Gordonz has quit IRC15:44
*** zykes- has joined #openstack-dev15:45
*** zykes has quit IRC15:49
*** armaan has joined #openstack-dev16:05
*** armaan has quit IRC16:15
*** nati has joined #openstack-dev16:19
*** dubsquared1 has quit IRC16:29
*** nati has quit IRC16:33
*** nati has joined #openstack-dev16:34
*** danwent has joined #openstack-dev16:38
*** Gordonz has joined #openstack-dev16:44
*** Mandell has joined #openstack-dev16:44
*** nati has quit IRC16:52
*** Mandell has quit IRC16:56
*** nati has joined #openstack-dev17:04
*** asdfasdf has joined #openstack-dev17:07
*** nati has quit IRC17:09
*** mikeyp has left #openstack-dev17:10
openstackgerritVerification of a change to openstack/keystone failed: Set tenantName to 'admin' in get_admin_auth_token.  https://review.openstack.org/443817:11
*** mjfork has joined #openstack-dev17:11
*** littleidea has joined #openstack-dev17:12
*** Gordonz has quit IRC17:15
openstackgerritVerification of a change to openstack/keystone failed: Add Vary header (bug 928057)  https://review.openstack.org/446017:16
uvirtbotLaunchpad bug 928057 in keystone "provide Vary header" [Medium,In progress] https://launchpad.net/bugs/92805717:16
*** j05h has joined #openstack-dev17:27
*** anotherjesse has joined #openstack-dev17:30
anotherjessedtroyer: https://review.openstack.org/4520 made me wonder if devstack's euca exercise should be/is using the keystone euca access/secret cli?17:31
mtayloranotherjesse: morning17:34
dtroyeranotherjesse: I think it is.  it picks up DEMO_ACCESS and DEMO_KEY in from ec2rc via openrc17:34
dtroyeranotherjesse: ec2rc is created by keystone_data.sh17:35
*** eglynn__ has joined #openstack-dev17:36
*** sannes has joined #openstack-dev17:37
*** eglynn_ has quit IRC17:38
*** eglynn has joined #openstack-dev17:40
*** eglynn__ has quit IRC17:40
*** Gordonz has joined #openstack-dev17:41
anotherjessedtroyer: but it isn't showing the user how to do it.17:45
anotherjessenot a blocker issue - just think it would be instructive to show how to use keystone cli for it17:45
anotherjessemtaylor: morning sire17:45
dtroyeranotherjesse: we can do that when https://review.openstack.org/4520 gets merged17:45
mtayloranotherjesse: I'm writing up an overview of what I've been trying to do in terms of what jenkins wants to do inside of each project17:48
chmoueldtroyer, anotherjesse: I was thinking for testing of swift3/s3token is to point euca-upload-bundle to swift, but what do you think should it goes to its own excercise or bundle.sh17:48
mtayloranotherjesse: so that we can better set up a template in version control of "these are the things that we run on everything"17:49
mtayloranotherjesse: (and also so that it's documented)17:49
mtayloranotherjesse: wanted to run it by you when you have a spare sec17:49
mtayloranotherjesse: http://wiki.openstack.org/ProjectTestingInterface17:49
*** zykes has joined #openstack-dev17:52
*** zykes- has quit IRC17:54
*** bepernoot has joined #openstack-dev17:58
anotherjessechmouel: good idea to your last email about euca-upload-bundle17:58
*** jakedahn has quit IRC17:58
openstackgerritVerification of a change to openstack/quantum failed: plugin: introduce ryu plugin  https://review.openstack.org/361818:06
*** zykes has quit IRC18:13
*** zykes has joined #openstack-dev18:13
openstackgerritVerification of a change to openstack/quantum failed: plugin: introduce ryu plugin  https://review.openstack.org/361818:16
anotherjessemtaylor: the doc section - should probably mention there are at least 3 types of docs - project.openstack.org <- generated from sphinx - for developers.  docs.openstack.org <- generated from openstack manuals project and for end users and operators18:17
anotherjessemtaylor: then there are the apis which are currently … well we should talk about that at the summit18:18
*** berendt has joined #openstack-dev18:19
*** dtroyer has quit IRC18:22
anotherjessemtaylor: perhaps just noting the sphinx docs are for developer docs, not all docs (currently)18:23
anotherjessemtaylor: perhaps recommending AUTHORS as a standard https://review.openstack.org/#change,4468 ?18:23
*** berendt has quit IRC18:26
*** anotherjesse has quit IRC18:30
*** eglynn_ has joined #openstack-dev18:33
*** eglynn has quit IRC18:33
*** eglynn__ has joined #openstack-dev18:40
*** eglynn_ has quit IRC18:42
*** j05h has quit IRC18:45
*** Gordonz has quit IRC18:54
*** littleidea has quit IRC19:04
openstackgerritVerification of a change to openstack/keystone failed: Adds AUTHORS file generated from git log (and de-duplicated).  https://review.openstack.org/446819:08
rmkBit confused about the direction of Keystone.  Is Light a temporary replacement?19:11
*** bepernoot has quit IRC19:19
*** littleidea has joined #openstack-dev19:22
*** eglynn has joined #openstack-dev19:24
mtaylorrmk: no19:25
mtaylorrmk: keystone's codebase has been fully replaced19:25
*** littleidea has quit IRC19:25
rmkOK so keystone as is will be deprecated then?19:25
rmkI ask because I'm still seeing commits there19:25
mtaylorkeystonelight replaced keystone's trunk19:26
rmkhhh19:26
rmkahh too19:26
mtaylorso the work is now going on in the keystone master branch19:26
mtaylor:)19:26
rmkmakes sense, thanks19:26
mtaylor(the merge commit is really fun to look at in gitk btw, if you find that sort of stuff neat19:26
rmknot particularly :)19:26
*** eglynn__ has quit IRC19:26
rmkWould you say it's worth switching to KSL now even for Diablo deployments?19:27
mtaylorrmk: I think that's what people are doing in general19:29
mtaylorrmk: BUT - I'm the wrong person to ask about that one19:30
rmkFair enough.19:30
*** asdfasdf has quit IRC19:31
*** Mandell has joined #openstack-dev19:39
*** bepernoot has joined #openstack-dev19:41
*** bepernoot has quit IRC19:42
*** danwent has quit IRC19:49
*** Mandell_ has joined #openstack-dev19:54
*** Mandell has quit IRC19:54
*** ncode has joined #openstack-dev20:01
*** nati has joined #openstack-dev20:02
*** nati has quit IRC20:07
*** hashar has joined #openstack-dev20:21
*** hashar_ has joined #openstack-dev20:30
*** hashar has quit IRC20:33
*** hashar_ is now known as hashar20:33
*** dtroyer has joined #openstack-dev20:36
*** Mandell_ has quit IRC20:37
*** littleidea has joined #openstack-dev20:43
*** zykes has quit IRC20:44
*** jeremyb has quit IRC20:44
*** Drakiz has quit IRC20:44
*** markwash_ has quit IRC20:44
*** benner has quit IRC20:44
*** aa has quit IRC20:44
*** hazmat has quit IRC20:44
*** zykes has joined #openstack-dev20:45
*** jeremyb has joined #openstack-dev20:45
*** hazmat has joined #openstack-dev20:45
*** Drakiz has joined #openstack-dev20:45
*** markwash_ has joined #openstack-dev20:45
*** benner has joined #openstack-dev20:45
*** aa has joined #openstack-dev20:45
*** Mandell has joined #openstack-dev20:54
*** jakedahn has joined #openstack-dev21:01
*** bepernoot has joined #openstack-dev21:14
*** dtroyer has quit IRC21:17
*** bepernoot has quit IRC21:24
*** sannes has quit IRC21:27
*** bepernoot has joined #openstack-dev21:50
*** jakedahn has quit IRC22:09
*** dtroyer has joined #openstack-dev22:16
*** littleidea has quit IRC22:17
*** littleidea has joined #openstack-dev22:18
*** bepernoot has quit IRC22:18
*** berendt has joined #openstack-dev22:27
*** jakedahn has joined #openstack-dev22:38
*** j05h has joined #openstack-dev22:55
*** hashar has quit IRC23:02
*** spinningcog has quit IRC23:03
*** spinningcog has joined #openstack-dev23:04
*** littleidea has quit IRC23:15
*** pixelbeat has quit IRC23:22
*** jakedahn has quit IRC23:31
*** dettymac has joined #openstack-dev23:33
*** shevek_ has quit IRC23:43
*** littleidea has joined #openstack-dev23:46
*** zykes- has joined #openstack-dev23:57

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