Thursday, 2012-08-16

*** oubiwann1 has joined #openstack00:01
*** issackel_ has quit IRC00:01
uvirtbotNew bug: #1037354 in tempest "a broken configure_tempest.sh can lead to silent failures" [Undecided,New] https://launchpad.net/bugs/103735400:01
*** llang629___ has quit IRC00:03
*** johnpostlethwait has quit IRC00:05
*** rods has quit IRC00:05
*** johnpostlethwait has joined #openstack00:06
*** nati_uen_ has quit IRC00:07
*** alop has joined #openstack00:07
*** mestery_ has joined #openstack00:09
*** tomoe has quit IRC00:11
*** mestery has quit IRC00:12
*** marrusl has joined #openstack00:13
*** ejat has joined #openstack00:14
*** roaet_ has joined #openstack00:15
AatonI must be doing something wrong here... I start with a nova-compute node with br100 = 15.125.16.16 and br101 = 10.9.128.16  but after a vm is provisioned on the hardware those IP change. br100 = 15.125.24.3 and br101 = 10.9.132.300:16
*** roge has joined #openstack00:16
Aatonwhich means the iptable rule created reference 15.125.16.16  but thats gone.00:16
*** ejat has quit IRC00:18
*** ryanpetrello has quit IRC00:25
*** ryanpetrello has joined #openstack00:26
*** bruges has quit IRC00:26
*** bruges has joined #openstack00:27
*** ron-slc has joined #openstack00:34
*** maoy has joined #openstack00:34
*** Blackavar has quit IRC00:35
*** ewindisch has quit IRC00:37
*** johnpur has quit IRC00:37
*** krow has joined #openstack00:39
*** Cha has quit IRC00:42
networkstaticwhat a great day00:42
*** TartanTexas has joined #openstack00:44
*** desai has quit IRC00:44
*** s0mik has quit IRC00:44
*** wellpeng has joined #openstack00:45
*** osier has joined #openstack00:45
*** wellpeng has left #openstack00:46
*** ryanpetrello has quit IRC00:47
*** TartanTexas has quit IRC00:49
*** vipuls has quit IRC00:49
*** ryanpetrello has joined #openstack00:49
*** blamar has joined #openstack00:50
*** k0rupted has quit IRC00:51
*** blamar has quit IRC00:52
*** cloudvirt has joined #openstack00:55
*** miclorb has joined #openstack00:55
*** z_ is now known as z00:58
*** z has joined #openstack00:58
*** zodiak has quit IRC00:58
*** blamar has joined #openstack00:59
*** tualatrix has joined #openstack01:01
*** dwcramer has quit IRC01:03
JoeJulianSo the only way to get openstack to use my existing isc dhcp server instead of dnsmasq is to remove the filters from the libvirt template and just ignore the ip addresses shown as assigned in the database?01:03
*** blamar has quit IRC01:03
*** matwood has quit IRC01:03
JoeJulianI've been trying to find another way, but there doesn't seem to be one.01:04
*** dendro-afk is now known as dendrobates01:04
*** cloudvirt has quit IRC01:05
*** alop has quit IRC01:05
*** vladimir3p has quit IRC01:07
*** avoine has quit IRC01:07
*** erkules|away has joined #openstack01:09
*** erkules has quit IRC01:11
*** lv2eof has quit IRC01:12
*** ewindisch has joined #openstack01:12
*** xjen1 has quit IRC01:12
*** blamar has joined #openstack01:14
*** oubiwann1 has quit IRC01:14
*** mnaser has joined #openstack01:18
*** mnaser has quit IRC01:18
*** mnaser has joined #openstack01:18
*** cryptk is now known as cryptk|offline01:19
*** jkff has joined #openstack01:22
jkffHey folks. Need help urgently :( Anyone familiar with multihost networking?01:22
jkffMy question: how should I allocate the fixed_range between different nodes in this setup?01:23
jkffShould it be the same in nova.conf on all nodes, or should it be different?01:23
jkffI have it the same, and I ended up with having the network just for 1 of my 2 compute nodes in nova.networks table. I suspect it might be because the 2nd node tried to create a network with this range and it already existed01:24
Diopterjkff: The nova.conf should be the same in each of them01:24
jkffDiopter: Thanks, that's relieving to hear :)01:25
Diopterjkff: I presume you're using Flat or FlatDHCP with multi_host=true?01:25
jkffFlatDHCP01:25
DiopterYou said multihost networking, but want to make sure we're talking about the same things :P01:25
*** jtran has quit IRC01:25
jkffI'm currently trying to trace thru the code and see why the network for compute-1 is not created, but without much luck so far01:26
jkffBut I traced that it's presumably because of this that the bridge driver isn't initialized either01:26
jkffBecause there's a loop over db_get_networks_by_host somewhere around it, and this call returns []01:26
jkffGenerally, at what moment *should* a host's network entry be created? Is it when nova-network starts, or when the first VM is created? (for me neither worked, but still)01:27
*** dwcramer has joined #openstack01:27
*** miclorb has quit IRC01:29
*** comptona has quit IRC01:30
jkffConfirmed this right now. Indeed db.network_get_all_by_host returns []01:30
*** msinhore has quit IRC01:31
Diopterjkff: I'm a little confused. You seem to be suggesting that compute hosts make networks. But they just make use of the networks that are in the DB.01:31
jkffDiopter: OK, I may be completely misunderstanding how multihost networking works, because so far I only used single-host01:31
*** sunxin has joined #openstack01:32
jkffCan you tell me then who's supposed to create the networks in db? Should I create them manually with nova-manage?01:32
Diopterjkff: First of all, are you running nova-network on each compute host, and Not on your controller?01:32
jkffYes, nova-network on each host01:32
DiopterYes. You're creating your own networks manually01:32
DiopterWhich the nova-network processes on each compute host will use to setup IPs/bridges01:33
DiopterIn conjunction with their nova.confs01:33
jkffHm, I wonder who created that one network then...01:33
*** natea has joined #openstack01:33
DiopterGood question! You can remove it from the db01:33
jkffOh, looks like it's my puppet recipes.01:34
*** uictamale has joined #openstack01:34
DiopterFun fun01:34
*** Turicas has joined #openstack01:34
jkffThat makes it a lot easier. Now I'll see why they only created it for one host.01:34
DiopterMost recipes have defaults01:34
DiopterTo have somewhere to start, generally for you to override01:34
*** tualatrix has quit IRC01:35
*** tualatrix has joined #openstack01:37
jkffDiopter: Am I understanding correctly that I should call nova-manage network create 1) on compute-1 and 2) on compute-2, with identical parameters?01:40
JoeJulianWhat's the purpose of dhcpbridge? To tell dnsmask what address to assign what host, or vice versa?01:40
Diopterjkff: Nope. nova networks are stored in the db, and are not compute-node specific01:41
jkffDiopter: Then how do they get the "host" column? I don't see a host parameter in the arguments of nova-manage network create01:41
Diopterjkff: You create it once from wherever you can call nova-manage. Each compute node uses them.01:42
*** jackh has joined #openstack01:43
Diopterjkff: When you have the network in the db, and nova-network starts, in FlatDHCP multi_host, each compute host will drop an IP in the fixed network on the bridges01:43
Diopterjkff: And those IPs will have the "host" columns associated01:43
jkffDiopter: Hm, I have a suspicion. Before, I was using the same configuration with single-host. Perhaps there's a leftover network in the db01:43
jkffSo I'll try deleting it and reinstalling everything01:43
Diopterjkff: Could easily be. Might want to blow all that away01:43
jkffBecause that network has multi_host=001:43
DiopterAha01:43
*** issackelly has left #openstack01:43
DiopterYou could just nova-manage network delete, or whatnot01:45
*** TartanTexas has joined #openstack01:45
jkffDiopter: yes, just did that. Retrying now.01:45
*** johnpostlethwait has quit IRC01:46
*** barneybook has joined #openstack01:46
*** TartanTexas has quit IRC01:50
jkffDiopter: Allright, a network has been created but instances can't boot still; figuring out what's wrong...01:52
*** zhuadl has joined #openstack01:52
*** lloydde has joined #openstack01:53
*** DavidLevin has quit IRC01:56
*** miclorb has joined #openstack01:58
*** s0mik has joined #openstack01:58
bennerhow stable quotmum in essex is?01:58
bennershould i need to wait for folcom to try it?01:58
*** tualatrix has quit IRC01:59
benneractualy i'm instressting in ovs02:00
*** darthflatus has quit IRC02:00
*** tomoe has joined #openstack02:00
*** jdurgin has quit IRC02:01
*** rogerl has joined #openstack02:02
*** DavidLevin has joined #openstack02:03
*** krow has quit IRC02:04
rogerlHi Anyone,  Is there a way to clear the auth tokens used by swift so that the the client has to re auth?02:04
*** darthflatus has joined #openstack02:04
*** samkottler|afk is now known as samkottler02:05
fedgoatIs there a repo somewhere with AMI images that work on Essex02:05
*** krow has joined #openstack02:05
uvirtbotNew bug: #1037371 in nova "default_schedule_zone is not intelligent" [Undecided,New] https://launchpad.net/bugs/103737102:06
*** networkstatic has quit IRC02:07
*** roge has quit IRC02:07
uvirtbotNew bug: #1037372 in nova "task_state may be overwritten in race condition" [Undecided,New] https://launchpad.net/bugs/103737202:11
*** kobier has joined #openstack02:12
*** jplewi has quit IRC02:13
*** xjen has joined #openstack02:13
*** crandquist has quit IRC02:15
*** nid0 has quit IRC02:16
uvirtbotNew bug: #1037373 in nova "any value for quota project id can be updated" [Undecided,New] https://launchpad.net/bugs/103737302:16
*** anniec has quit IRC02:16
*** DANO-MARC has quit IRC02:21
*** osier has quit IRC02:22
*** DANO-MARC has joined #openstack02:22
*** tgall_foo has joined #openstack02:23
*** tgall_foo has quit IRC02:23
*** tgall_foo has joined #openstack02:23
*** mnaser has quit IRC02:28
*** rnorwood has joined #openstack02:29
*** Ryan_Lane has quit IRC02:30
*** Ryan_Lane has joined #openstack02:30
*** Ryan_Lane has quit IRC02:30
jkffDiopter: JFYI, I resolved my problem completely. Turns out that when I deleted the network, its fixed_ips weren't deleted from the database and they confused nova-network greatly02:32
jkffI'll go report a bug...02:32
*** sandywalsh has joined #openstack02:33
jkffOh, here it is already: https://bugs.launchpad.net/nova/+bug/81257302:33
jkffActually https://bugs.launchpad.net/nova/+bug/754900 - heh, fix released 2 weeks ago...02:34
*** osier has joined #openstack02:35
*** Shayanjm has joined #openstack02:37
ShayanjmQuick question as a newbie to cloud providing. I've dealt with VPS provisioning in the past (currently using a Solusvm + Openvz stack) - and it sucks. I've heard of Onapp, Cloudstack, and Openstack with regards to cloud deployment, however I'm not sure how they relate. I understand the differences between Openstack and Cloudstack, however Onapp looks like it's something different altogether. Can anyone shed some light on this?02:38
*** networkstatic has joined #openstack02:40
*** sunxin has quit IRC02:40
*** roaet_ has quit IRC02:41
*** sunxin has joined #openstack02:41
*** steveb_ has quit IRC02:42
*** Shayanjm has quit IRC02:43
*** KavanS has quit IRC02:43
*** DANO-MARC has quit IRC02:44
*** jkff has quit IRC02:44
*** sandywalsh has quit IRC02:44
*** TartanTexas has joined #openstack02:45
*** natea has quit IRC02:45
*** lloydde has quit IRC02:46
*** Blackavar has joined #openstack02:47
*** zhuadl has quit IRC02:48
*** atrius is now known as atrius_away02:50
*** TartanTexas has quit IRC02:50
*** networkstatic has quit IRC02:53
*** networkstatic has joined #openstack02:53
*** dolphm has joined #openstack02:53
*** miclorb has quit IRC02:56
*** rogerl has quit IRC02:56
*** marrusl has quit IRC03:00
*** anniec has joined #openstack03:01
*** darthflatus has quit IRC03:01
*** wellpeng has joined #openstack03:08
*** mrjazzcat has quit IRC03:08
*** bharata has joined #openstack03:10
*** wellpeng has left #openstack03:14
*** dhellmann has joined #openstack03:17
*** maoy has quit IRC03:17
*** blamar_ has joined #openstack03:17
*** rha has quit IRC03:18
*** caribou has quit IRC03:18
*** dhellmann_ has quit IRC03:18
*** caribou has joined #openstack03:18
*** davidha1 has joined #openstack03:18
*** dubsquared has joined #openstack03:19
*** rha has joined #openstack03:19
*** nacx has quit IRC03:20
*** zykes- has quit IRC03:20
*** vuntz has quit IRC03:20
*** zykes- has joined #openstack03:20
*** vuntz has joined #openstack03:20
*** nacx has joined #openstack03:20
*** blamar has quit IRC03:20
*** blamar_ is now known as blamar03:20
*** tan has quit IRC03:20
*** tan has joined #openstack03:20
*** davidha has quit IRC03:20
*** salgado` has joined #openstack03:24
*** mikal_ has joined #openstack03:24
*** led_bell1 has joined #openstack03:26
*** amti has quit IRC03:26
*** mikal has quit IRC03:27
*** rha_ has joined #openstack03:27
*** mikal_ is now known as mikal03:27
*** amti has joined #openstack03:27
*** soren_ has joined #openstack03:27
*** Dirkpitt has quit IRC03:27
*** led_belly has quit IRC03:27
*** goldfish has quit IRC03:27
*** rgoodwin has quit IRC03:27
*** soren has quit IRC03:27
*** Dirkpitt has joined #openstack03:28
*** cryptk|offline is now known as cryptk03:28
*** lborda has quit IRC03:28
*** zykes- has quit IRC03:29
*** rha has quit IRC03:29
*** arrsim has quit IRC03:29
*** Espen-_- has quit IRC03:29
*** Disconnect has quit IRC03:29
*** stewart has quit IRC03:29
*** file has quit IRC03:29
*** infernix has quit IRC03:29
*** clarkb has quit IRC03:29
*** salgado has quit IRC03:29
*** cultavix has quit IRC03:29
*** jeremy has quit IRC03:29
*** smeaaagle has quit IRC03:29
*** arun has quit IRC03:29
*** goldfish has joined #openstack03:29
*** vitiho has joined #openstack03:31
*** vitiho_ has quit IRC03:31
*** cultavix has joined #openstack03:34
*** arun has joined #openstack03:34
*** zykes- has joined #openstack03:34
*** rgoodwin has joined #openstack03:34
*** arrsim has joined #openstack03:34
*** Espen-_- has joined #openstack03:34
*** Disconnect has joined #openstack03:34
*** stewart has joined #openstack03:34
*** file has joined #openstack03:34
*** infernix has joined #openstack03:34
*** clarkb has joined #openstack03:34
*** jeremy has joined #openstack03:34
*** smeaaagle has joined #openstack03:34
*** roaet_ has joined #openstack03:34
*** steveb_ has joined #openstack03:43
*** crandquist has joined #openstack03:46
*** TartanTexas has joined #openstack03:46
*** Sweetshark has quit IRC03:47
*** tgall_foo has quit IRC03:47
*** roaet_ has quit IRC03:47
*** vipuls has joined #openstack03:48
*** Sweetshark has joined #openstack03:49
*** melmoth has quit IRC03:49
*** kobier has quit IRC03:50
*** vitiho has quit IRC03:50
*** TartanTexas has quit IRC03:50
*** vitiho has joined #openstack03:50
*** egant has joined #openstack03:52
*** hungnv has quit IRC03:52
*** hungnv has joined #openstack03:52
JoeJulianI could write a script to request an ip address from my isc dhcp server on behalf of the vm that's being created, but I don't know how to get it to be called during the vm creation process, nor what to do with the result once I get it.03:56
jkoelkerJoeJulian: You would have to create a new network manager03:58
jkoelkerin the allocate_for_instance call you would "proxy" the dhcp request03:58
jkoelkerthen package up the result into a NetworkInfo model and return that03:59
jkoelkerunfortunatly the "hooks" are very poor at the moment for doing what you want to do03:59
JoeJulianThat's understandable. It's still pretty young. Thanks for that. I think I can get something to work that way.04:00
*** samkottler is now known as samkottler|brb04:01
jkoelkercheckout https://github.com/jkoelker/nova/blob/rax_quantum/nova/network/melantum/manager.py for a pretty bare bones manager04:02
*** led_bell1 has quit IRC04:02
*** tmichael has joined #openstack04:03
*** miclorb has joined #openstack04:04
*** xjen1 has joined #openstack04:05
uvirtbotNew bug: #1037391 in glance "v2 API returns 200 instead of 201 on image data upload" [Critical,In progress] https://launchpad.net/bugs/103739104:06
*** xjen has quit IRC04:07
*** egant has quit IRC04:08
*** blamar has quit IRC04:08
*** blamar has joined #openstack04:09
*** samkottler|brb is now known as samkottler04:11
*** tmichael has quit IRC04:11
*** koolhead17 has joined #openstack04:13
*** s0mik has quit IRC04:15
*** samkottler is now known as samkottler|nap04:17
*** sunxin has quit IRC04:19
*** bharata has quit IRC04:21
*** blamar has quit IRC04:21
*** ewindisch_ has joined #openstack04:26
*** garyk has quit IRC04:26
*** mnewby_ has joined #openstack04:27
*** ewindisch has quit IRC04:28
*** mnewby has quit IRC04:28
*** ewindisch_ is now known as ewindisch04:28
*** mnewby_ is now known as mnewby04:28
*** blamar has joined #openstack04:33
*** sunxin has joined #openstack04:34
*** deepakcs has joined #openstack04:35
*** Blackavar has quit IRC04:35
*** uictamale has quit IRC04:39
*** networkstatic has quit IRC04:41
*** supriya has joined #openstack04:41
*** TartanTexas has joined #openstack04:46
*** anniec has quit IRC04:48
*** desai has joined #openstack04:49
*** TartanTexas has quit IRC04:50
*** rnorwood has quit IRC04:52
*** dendrobates is now known as dendro-afk04:55
*** vitiho has quit IRC04:56
*** vitiho has joined #openstack04:57
*** dubsquared has quit IRC04:57
*** koolhead17 has quit IRC04:57
*** matwood has joined #openstack04:58
*** Toretto has joined #openstack05:02
*** mnewby has quit IRC05:04
*** hungnv has quit IRC05:05
*** hungnv has joined #openstack05:05
*** blamar has quit IRC05:06
*** vitiho_ has joined #openstack05:08
*** vitiho has quit IRC05:08
*** warik has joined #openstack05:08
*** miclorb has quit IRC05:11
*** warik has left #openstack05:13
*** ejat has joined #openstack05:14
*** clopez has quit IRC05:17
*** ches has joined #openstack05:18
*** miclorb has joined #openstack05:21
*** supriya has quit IRC05:22
*** tomoe has quit IRC05:22
*** tomoe has joined #openstack05:23
*** BARNEYB3 has joined #openstack05:28
*** barneybook has quit IRC05:30
*** BLZbubba_ has quit IRC05:30
*** johnpostlethwait has joined #openstack05:30
*** BLZbubba has joined #openstack05:31
*** desai has quit IRC05:32
*** anniec has joined #openstack05:33
*** dachary has joined #openstack05:35
*** MrRoot has quit IRC05:38
*** melmoth has joined #openstack05:38
*** sunxin has quit IRC05:40
*** Blackavar has joined #openstack05:41
*** MarkAtwood has joined #openstack05:44
*** vladdy_ has quit IRC05:45
*** dwcramer has quit IRC05:45
*** Blackavar has quit IRC05:46
*** TartanTexas has joined #openstack05:47
*** arBmind has joined #openstack05:48
*** tualatrix has joined #openstack05:49
*** TartanTexas has quit IRC05:51
*** Lil_ has joined #openstack05:53
*** Lil has quit IRC05:55
*** arosen has joined #openstack05:55
*** dolphm has quit IRC05:56
*** hattwick has quit IRC05:59
*** williamherry has quit IRC06:04
*** oubiwann has quit IRC06:04
*** Toretto_ has joined #openstack06:05
*** Toretto has quit IRC06:05
*** Toretto_ is now known as Toretto06:05
*** Lil_ has quit IRC06:06
*** tualatrix has quit IRC06:13
*** vitiho_ has quit IRC06:14
*** vitiho has joined #openstack06:14
*** burnbrighter2 has quit IRC06:15
*** pvankouteren has joined #openstack06:16
*** miclorb has quit IRC06:16
*** littleidea has quit IRC06:17
*** renier_ has quit IRC06:18
*** vladdy has joined #openstack06:18
*** ryanpetrello has quit IRC06:18
*** linuxfreck has joined #openstack06:19
uvirtbotNew bug: #1037422 in cinder "no module named mock" [Undecided,New] https://launchpad.net/bugs/103742206:21
*** mindpixel has joined #openstack06:26
*** renier has joined #openstack06:26
*** issackel_ has joined #openstack06:27
*** EmilienM has joined #openstack06:27
*** pvankouteren has quit IRC06:30
zykes-EmilienM: :p06:31
*** MarkAtwood has left #openstack06:31
*** anniec_ has joined #openstack06:36
*** qazwsx has joined #openstack06:38
*** issackel_ has quit IRC06:38
*** anniec has quit IRC06:40
*** anniec_ is now known as anniec06:40
*** eglynn has joined #openstack06:41
*** TartanTexas has joined #openstack06:47
*** ejat has quit IRC06:48
*** vipuls has quit IRC06:49
*** kpavel has quit IRC06:49
*** crandquist has quit IRC06:50
*** TartanTexas has quit IRC06:52
*** hungnv has quit IRC06:53
*** guigui3 has joined #openstack06:54
*** ondergetekende has joined #openstack06:54
*** hungnv has joined #openstack06:54
*** rha_ is now known as rha06:56
*** rha has joined #openstack06:56
*** renier has quit IRC06:58
*** crandquist has joined #openstack06:59
*** ejat has joined #openstack06:59
*** prakasha-log has quit IRC07:00
*** prakasha-log has joined #openstack07:00
uvirtbotNew bug: #1037438 in horizon "Cannot display Overview panel when Quantum enabled" [Undecided,New] https://launchpad.net/bugs/103743807:01
*** garyk has joined #openstack07:01
*** koolhead11 has joined #openstack07:04
*** pvankouteren has joined #openstack07:04
*** nid0 has joined #openstack07:06
*** erkules|away has quit IRC07:06
*** erkules|away has joined #openstack07:06
*** erkules|away is now known as erkules07:06
*** ttrifonov_zZzz is now known as ttrifonov07:07
uvirtbotNew bug: #1037443 in quantum "wrong interface prefix ovs " [Undecided,New] https://launchpad.net/bugs/103744307:11
*** baske has joined #openstack07:15
*** inteq has quit IRC07:15
*** baske has quit IRC07:15
*** baske has joined #openstack07:17
*** baske has joined #openstack07:18
*** baske has quit IRC07:19
*** caribou has quit IRC07:19
*** baske has joined #openstack07:19
*** salgado` has quit IRC07:20
*** Guest89054 has quit IRC07:20
*** baske has quit IRC07:20
*** baske has joined #openstack07:20
*** baske has quit IRC07:21
*** baske has joined #openstack07:22
*** renier has joined #openstack07:22
*** simon_lucy has joined #openstack07:23
*** hugao12 has joined #openstack07:24
EmilienMzykes- o/07:25
*** dachary has quit IRC07:27
*** adasiek_abix has quit IRC07:27
*** arBmind has quit IRC07:31
*** reidrac has joined #openstack07:32
*** adasiek_abix has joined #openstack07:37
*** anniec has left #openstack07:39
*** arBmind has joined #openstack07:40
*** primozf has joined #openstack07:41
*** dachary has joined #openstack07:44
*** sunxin has joined #openstack07:46
*** TartanTexas has joined #openstack07:48
*** caribou has joined #openstack07:50
*** salgado has joined #openstack07:50
*** dpb_ has joined #openstack07:51
*** dpb_ is now known as Guest8675307:51
*** TartanTexas has quit IRC07:53
*** Triade has joined #openstack07:53
*** melmoth has quit IRC07:57
*** soren_ has quit IRC07:59
*** laurensell has quit IRC08:00
*** comstud has quit IRC08:00
*** comstud has joined #openstack08:01
*** darraghb has joined #openstack08:01
*** laurensell has joined #openstack08:02
*** erikzaadi has joined #openstack08:04
*** soren has joined #openstack08:05
*** ChanServ sets mode: +v soren08:05
*** matwood has quit IRC08:05
*** erikzaadi has left #openstack08:05
*** virtuose has joined #openstack08:07
*** freck has joined #openstack08:09
*** ejat has quit IRC08:10
*** derekh has joined #openstack08:11
*** Breaking_Pitt has joined #openstack08:11
*** linuxfreck has quit IRC08:11
*** rpawlik has quit IRC08:17
*** ejat has joined #openstack08:24
*** tualatrix has joined #openstack08:27
*** uksysadmin has joined #openstack08:28
*** kpavel has joined #openstack08:28
uksysadminmorning all08:28
*** Ryan_Lane has joined #openstack08:30
kviiriHello08:30
*** DANO-MARC has joined #openstack08:31
*** vitiho_ has joined #openstack08:32
*** vitiho has quit IRC08:32
*** rocambole has joined #openstack08:35
uksysadminagh kviiri - did you fix your openvswitch issues?08:38
*** Ryan_Lane has quit IRC08:39
* uksysadmin isn't really a zombie... aggghhhhh (sticks hands out and drools slightly)08:39
*** dodeeric has joined #openstack08:39
kviiriuksysadmin: Indeed I did08:41
kviiriuksysadmin: So it turned out that one of the machine's bootup scripts wasn't getting executed properly08:41
*** dodeeric has left #openstack08:42
kviiriWhich resulted in OVS not being run when it was supposed to :/08:42
*** hattwick has joined #openstack08:43
uksysadminkviiri, annoying when that happens  - when you're convinced everything is as it should - but the problem started earlier than that.08:43
*** ejat has quit IRC08:44
*** rubiojr has quit IRC08:47
*** Neptu has quit IRC08:48
*** TartanTexas has joined #openstack08:48
*** vitiho_ has quit IRC08:49
*** vitiho has joined #openstack08:49
*** aspiers has joined #openstack08:51
*** TartanTexas has quit IRC08:53
*** lifeless has joined #openstack08:53
*** simon_lucy has quit IRC08:53
*** ejat has joined #openstack08:55
*** tomoe has quit IRC08:57
*** osier has quit IRC08:59
*** osier has joined #openstack09:02
*** osier has joined #openstack09:03
*** qazwsx has quit IRC09:04
*** ejat has quit IRC09:04
*** zykes- has quit IRC09:06
*** bbcmicrocomputer has joined #openstack09:07
*** ieugen has joined #openstack09:08
*** ieugen has left #openstack09:08
*** freck has quit IRC09:14
*** tryggvil_ has quit IRC09:19
*** freeflyi1g has quit IRC09:20
*** dendro-afk is now known as dendrobates09:22
*** rpawlik has joined #openstack09:24
*** Turicas has quit IRC09:25
*** qazwsx has joined #openstack09:26
*** tryggvil_ has joined #openstack09:27
kviiriuksysadmin: Yup :)09:28
*** tualatrix has quit IRC09:29
*** qazwsx has quit IRC09:30
*** hungnv has quit IRC09:30
*** hungnv has joined #openstack09:30
*** vitiho has quit IRC09:33
*** vitiho has joined #openstack09:34
*** johnpostlethwait has quit IRC09:36
*** johnpostlethwait has joined #openstack09:36
*** adasiek_abix has quit IRC09:38
*** adasiek_abix has joined #openstack09:38
*** guimaluf has quit IRC09:38
*** thimble has joined #openstack09:38
*** jkyle has quit IRC09:40
*** steveb_ has quit IRC09:41
*** jkyle has joined #openstack09:41
*** rods has joined #openstack09:42
*** dendrobates is now known as dendro-afk09:43
*** dave_mcn_away is now known as dave_mcn09:45
uvirtbotNew bug: #1037484 in quantum "native bulk support for linux bridge" [Medium,New] https://launchpad.net/bugs/103748409:46
*** tty has joined #openstack09:47
*** tty has left #openstack09:47
*** tty has joined #openstack09:48
*** rocambole has quit IRC09:48
*** TartanTexas has joined #openstack09:49
*** rocambole has joined #openstack09:49
*** ekarlso has joined #openstack09:50
*** guimaluf has joined #openstack09:51
*** jackh has quit IRC09:53
thimbleHi there. Is it possible to use a created volume in several zones? I can't find any zone related information in the docs. For better understanding: creating a volume, attaching it to vm in zone1, detaching it, attaching it in zone2 then. Would this be possible? Or is the use limited to volumes and vms in the same zone?09:53
*** TartanTexas has quit IRC09:53
*** Breaking_Pitt is now known as Breaking_Out09:56
uksysadminsomeone raised a strange issue that was possibly confirmed with canonical folk - after spinning up a12.04 instance and doing upgrade and reboot, it took an hour to reboot. anyone confirm?09:56
*** Breaking_Out has quit IRC09:58
*** kyriakos has joined #openstack09:59
*** rpawlik has quit IRC10:01
*** msavy has joined #openstack10:02
*** almaisan-away has quit IRC10:02
*** tryggvil_ has quit IRC10:02
*** msavy has joined #openstack10:03
*** almaisan-away has joined #openstack10:03
*** almaisan-away is now known as al-maisan10:03
*** dendro-afk is now known as dendrobates10:04
*** sunxin has quit IRC10:05
*** Trixboxer has joined #openstack10:06
*** tryggvil has joined #openstack10:09
*** johnpostlethwait has quit IRC10:12
*** ekarlso has quit IRC10:18
*** egant has joined #openstack10:20
*** linuxfreck has joined #openstack10:20
*** GheRivero has joined #openstack10:20
*** davidha1 has quit IRC10:22
*** qazwsx has joined #openstack10:23
*** davidha has joined #openstack10:25
*** freck has joined #openstack10:26
*** cbachhub_ has joined #openstack10:27
*** linuxfreck has quit IRC10:28
*** vap has quit IRC10:31
*** vap has joined #openstack10:31
*** freck has quit IRC10:31
*** dolphm has joined #openstack10:37
*** roge has joined #openstack10:46
*** miclorb has joined #openstack10:47
*** ejat has joined #openstack10:48
*** TartanTexas has joined #openstack10:49
*** miclorb has quit IRC10:50
*** miclorb has joined #openstack10:50
*** dodeeric has joined #openstack10:50
*** linuxfreck has joined #openstack10:51
*** dodeeric has left #openstack10:51
*** cbachhub_ has quit IRC10:52
*** TartanTexas has quit IRC10:54
*** TartanTexas has joined #openstack10:55
*** MarcMorata has joined #openstack10:55
*** Breaking_Out has joined #openstack11:01
*** Breaking_Out is now known as Breaking_Pitt11:01
*** ekarlso has joined #openstack11:10
*** al-maisan is now known as almaisan-away11:16
uvirtbotNew bug: #1037503 in nova "Regression in simple extra_specs matching in compute_capabilities_filter" [High,In progress] https://launchpad.net/bugs/103750311:16
*** almaisan-away is now known as al-maisan11:18
*** deepakcs has quit IRC11:18
*** egant has quit IRC11:19
*** TartanTexas has quit IRC11:22
*** simon_lucy has joined #openstack11:22
*** koolhead11 has quit IRC11:24
*** ejat has quit IRC11:28
*** tmichael has joined #openstack11:33
*** etnt has joined #openstack11:33
etnthas anyone tried out Rackspace's private cloud stuff?11:34
*** roge has quit IRC11:35
uvirtbotNew bug: #1037516 in nova "Over time XenAPI driver eventuall fills up Dom0 disk" [Undecided,New] https://launchpad.net/bugs/103751611:36
*** dolphm has quit IRC11:38
*** miclorb has quit IRC11:42
*** arBmind has quit IRC11:42
*** tmichael has quit IRC11:44
*** freeflying has joined #openstack11:46
*** freeflying has joined #openstack11:46
*** arBmind has joined #openstack11:49
*** littleidea has joined #openstack11:49
*** philips_ has quit IRC11:51
*** maurosr has joined #openstack11:51
*** philips_ has joined #openstack11:53
*** littleidea has quit IRC11:53
*** tomoe has joined #openstack11:58
*** tgall_foo has joined #openstack11:58
*** hggdh has quit IRC12:00
*** krow has quit IRC12:00
*** krow has joined #openstack12:01
*** dachary has quit IRC12:02
*** cryptk is now known as cryptk|offline12:06
*** tgall_foo has quit IRC12:09
*** maurosr has quit IRC12:11
*** ahasenack has joined #openstack12:14
*** chrisfer has quit IRC12:14
*** markvoelker has joined #openstack12:14
*** chrisfer has joined #openstack12:14
*** vachon has quit IRC12:14
*** jackh has joined #openstack12:17
*** maurosr has joined #openstack12:18
*** kpavel has quit IRC12:19
*** freeflying has quit IRC12:20
*** dolphm has joined #openstack12:21
*** ttrifonov is now known as ttrifonov_zZzz12:22
*** dhellmann has quit IRC12:22
*** dachary has joined #openstack12:23
*** ttrifonov_zZzz is now known as ttrifonov12:23
*** vachon has joined #openstack12:23
*** kpavel has joined #openstack12:24
*** miclorb has joined #openstack12:25
*** freeflying has joined #openstack12:27
*** h0cin has joined #openstack12:29
*** h0cin has joined #openstack12:30
*** kpavel_ has joined #openstack12:30
*** avoine has joined #openstack12:31
*** ieugen has joined #openstack12:31
*** avoine has left #openstack12:31
*** kpavel has quit IRC12:31
*** TartanTexas has joined #openstack12:31
*** kpavel_ is now known as kpavel12:32
*** avoine has joined #openstack12:33
*** BlackMaria has joined #openstack12:33
*** tryggvil has quit IRC12:33
*** dwcramer has joined #openstack12:35
*** TartanTexas has quit IRC12:36
uvirtbotNew bug: #1037545 in quantum "Log exception due to missing parameters" [Medium,New] https://launchpad.net/bugs/103754512:37
*** kbringard has joined #openstack12:37
*** lts has joined #openstack12:37
*** adalbas has joined #openstack12:38
*** msinhore has joined #openstack12:39
*** renier has quit IRC12:39
*** arBmind has quit IRC12:40
*** koolhead17 has joined #openstack12:41
fitzdslwhen running multiple nova-compute I only need 1 endpoint for compute ?12:42
fitzdslbecause my second nova-compute never spawn instances even if it's listed as enabled and state happy in 'nova-manage service list'12:43
*** tryggvil has joined #openstack12:43
*** renier has joined #openstack12:44
*** krow has quit IRC12:44
*** littleidea has joined #openstack12:46
*** dwcramer has quit IRC12:50
*** samkottler|nap is now known as samkottler12:52
*** samkottler is now known as samkottler|brb12:52
*** hggdh has joined #openstack12:54
*** miclorb has quit IRC12:54
fitzdslwhat the endpoint should point to in that case ?12:55
*** egant has joined #openstack12:55
uksysadminfitzdsl, your second compute host when multi_host is set should have nova-network and nova-api running too12:55
fitzdsluksysadmin: it's the case12:56
fitzdsluksysadmin: to what ip should point the endpoint ?12:56
uksysadminfitzdsl, nova-api not only provides the interface for users to tell OpenStack to do stuff, it also gives access to the meta-data to the instances12:56
*** ieugen has left #openstack12:57
*** tmichael has joined #openstack12:57
uksysadminsay you have 2 nodes: say 172.16.0.1 which has nova-api, glance, keystone running. on 172.16.0.2 will be a compute host and that will run nova-compute, nova-network and nova-api12:57
uksysadminwhen you set up your credentials (or say use horizon - lets put that on 172.16.0.1 too), then 172.16.0.1 is what you need to know about, you don't need to know about the compute host (and any other compute hosts)12:58
fitzdslwhat I don't get is the nova endpoint should be associated to what system service ? scheduler ?12:59
fitzdslwhy should endpoint point to 1 and not 2 ?12:59
*** _ozstacker_ has quit IRC13:00
*** ozstacker has joined #openstack13:00
uksysadminthere are multiple endpoints in openstack - what are you referring to?13:00
fitzdslthe nova endpoint13:00
uksysadminis this when setting up keystone?13:00
fitzdslyep13:00
*** marrusl has joined #openstack13:00
uvirtbotNew bug: #1037557 in openstack-manuals "The commands for nova secgroups are undocumented" [Undecided,New] https://launchpad.net/bugs/103755713:01
uksysadminfitzdsl, will this help explain? https://github.com/uksysadmin/OpenStackInstaller/blob/essex/keystone-services.sh13:02
*** dprince has joined #openstack13:02
uksysadminI suggest setting up everything on a single node - in which case all "endpoints" point to that front public IP13:03
fitzdslfor now I have 1 controler (vm) which run : glance, keystone, rabbit, mysql13:03
uksysadminwhen adding in compute nodes, you don't have to do anything else13:03
*** lazyshot has joined #openstack13:03
fitzdsland a node with all nova services13:03
uksysadminno adding to keystone - nada13:03
uksysadminfitzdsl,13:03
fitzdslthey are discovered with the bus13:04
*** n0ano has quit IRC13:04
fitzdslthat's it ?13:04
ekarlsoanyone here know if a standard ssd cuts it for a ssd cache ?13:04
uksysadminso the glance and keystone endpoints will point to that first box13:04
uksysadminthe only other nova services that are mentioned in the keystone catalog are nova-volume and nova-api13:04
*** MrRoot has joined #openstack13:04
uksysadmincompute isn't discovered on the bus, its just by virtue that it connects to the database and picks up the details13:05
*** GiBa has joined #openstack13:05
*** gekko_ has joined #openstack13:05
*** msinhore has quit IRC13:06
*** GiBa has left #openstack13:07
*** markmcclain has joined #openstack13:07
*** roge has joined #openstack13:08
*** adalbas has quit IRC13:09
*** koolhead17 has quit IRC13:09
*** markmcclain has quit IRC13:09
fitzdsluksysadmin: I thought that you told me that every compute node shoudl run nova-api ?13:11
uvirtbotNew bug: #1037562 in nova "Different secgroups can't be applied to different interfaces" [Undecided,New] https://launchpad.net/bugs/103756213:11
uksysadminfitzdsl, I did13:12
uksysadminkeystone doesn't need to know about that... its nova-compute's little secret. ;-)13:13
uksysadminit literally is to allow instances to download meta data from 169.254.169.254:80 which is iptabled to run from the host the compute instance that spawned that instance13:14
uksysadmingiven that it connects to the same mysql as everything else, it can serve that meta data for the instances13:14
*** cloudvirt has joined #openstack13:14
uksysadminkeystone's compute entries (nova 8774, ec2 8773) refer to that "public" facing nova-api service13:15
fitzdslwhat ever is the host running nova-api13:16
uksysadminyes13:16
uksysadminbut so are the rest of your compute nodes13:16
uksysadminbut don't add them all in13:16
uksysadminonly one required13:16
*** k3rn has quit IRC13:16
fitzdslok that's clear now, I didn't get it in documentation13:16
fitzdslthank you for your time :)13:17
*** k3rn has joined #openstack13:17
*** k3rn has joined #openstack13:17
uksysadminso a typical "starter" set up: everything on a single host - set up keystone as per that github script [edit to suit], then to just add compute hosts just add in nova-compute, nova-api, nova-network, copy your nova.conf files from that first host and voila... compute is available13:18
uksysadminto add more compute hosts - just repeat the nova-compute, nova-api, nova-network and nova configs13:18
uksysadmindon't need to touch keystone at all once set up - it doesn't work like that.13:19
fitzdslok so that's nearly what I did except that I moved non compute services to a vm13:19
ekarlsohas anyone her tested using SSD's for cache for mdraid5 ?13:19
fitzdsli get that in my service list http://pastebin.com/ms09EtYp13:19
fitzdslbut my second node never spawn any instances13:19
fitzdslIf i stop compute on testnode1 no instances are created13:20
uksysadminyeah take off unneeded services from your compute host - just makes it easier for troubleshooting - could even cause some strange conflicts how it seems to be set up13:20
fitzdslthey are stoped. I don't know how to remove them ?13:21
fitzdslsql delete ?13:21
uksysadminapt-get remove?13:21
fitzdslI'm running F17, it seems that's only a single openstack-nova rpm13:22
uksysadminjust ensure that host you're having trouble has: nova-api, nova-compute and nova-network13:22
*** tgall_foo has joined #openstack13:22
uksysadminah ok - I'm not familiar with openstack on fedora13:22
fitzdslthat's the case13:22
*** lborda has joined #openstack13:22
fitzdslthe difference is that node2 doesn't create itself a secondary ip on the bridge wich belong to the range13:22
fitzdsldon't know if it's normal13:23
uksysadminany clues in the logs?13:24
uksysadminare the clocks in sync?13:24
*** localhost has joined #openstack13:25
fitzdslnova-network doesn't say anything wrong. just connected to amqp server13:25
*** imsplitbit has joined #openstack13:25
fitzdsland record updated13:25
*** samkottler|brb is now known as samkottler13:26
fitzdslit doesn't spawn any dnsmasq though13:26
*** tgall_foo has quit IRC13:26
uksysadminin /etc/nova/nova.conf you have multi_host=true?13:26
uksysadminand check your endpoint logs - so check keystone, glance, nova-api, etc.13:28
uksysadminsomewhere there'll be a line or few telling you what's going on - possibly when you restart the service [it could be that something didn't go right on start up but it appears to be running]13:28
*** foexle has joined #openstack13:29
foexleheyho guys13:29
*** tty_ has joined #openstack13:30
*** tgall_foo has joined #openstack13:30
*** tgall_foo has quit IRC13:30
*** tgall_foo has joined #openstack13:30
foexleone question to keystone .... it's true that keystone creates on EACH request by an user a new token ? °°13:30
foexlei got in 10 sec 4k entries in the token table ....13:30
avoinefoexle: it depends on the token expiration13:31
avoinefoexle: it's a day by default I think13:31
foexlei know .... but the same use user with the same pw13:31
avoinefoexle: oh, if he ask for a new token it will get a new one13:32
foexleare not different creds13:32
*** TartanTexas has joined #openstack13:32
avoinefoexle: you need to ask for a new token only when the one you have is expired13:32
*** tgall_foo has quit IRC13:32
foexlebut why on each request ? if the user have a valid token, then should response keystone this13:32
foexleavoine: it will be create on each request ... if a token exists or not .... no one of the 4k tokens are expired13:33
*** tty has quit IRC13:33
*** tty_ is now known as tty13:33
*** led_belly has joined #openstack13:33
*** tgall_foo has joined #openstack13:34
*** tgall_foo has quit IRC13:34
*** tgall_foo has joined #openstack13:34
avoinefoexle: something is broken13:34
foexleavoine: ..... :>13:34
*** cloudvirt has quit IRC13:35
avoinefoexle: do you have a custom keystone client?13:35
foexleno13:36
foexlei try it wiht curl ...13:36
foexleand swift (it's working)13:37
*** TartanTexas has quit IRC13:37
*** roaet has quit IRC13:37
*** cloudvirt has joined #openstack13:40
*** roaet has joined #openstack13:40
*** z00dax6_ is now known as z00dax613:42
*** mtreinish has joined #openstack13:45
*** marrusl has quit IRC13:46
*** chm007 has joined #openstack13:46
chm007Hi. According to openstack doc, I try to use the following curl syntax to get infos about images by example13:46
*** Ruetobas has quit IRC13:47
chm007But when i run this command : curl -H "X-Auth-Token: 7186974eade44728ae0f14a5f53b057c" -X 'GET'  http://172.16.0.1:5000/v2.0/images13:47
chm007I get a HTTP 404 not found13:47
chm007What is wrong with the url ?13:47
avoinechm007: you query keystone instead of glance13:48
avoineglance is the image server13:48
avoinerunning on port 9292 by default I think13:48
chm007Will make a test13:48
chm007I get this response no matter which request I use13:49
chm007{"versions": [{"status": "CURRENT", "id": "v1.1", "links": [{"href": "http://172.16.0.1:9292/v1/", "rel": "self"}]}, {"status": "SUPPORTED", "id": "v1.0", "links": [{"href": "http://172.16.0.1:9292/v1/", "rel": "self"}]}]}13:49
*** UICTamale has joined #openstack13:50
*** lakes has joined #openstack13:50
lakeshello folks13:50
*** GiBa has joined #openstack13:50
lakesi am having a big problem13:50
*** msinhore has joined #openstack13:50
*** GiBa has left #openstack13:50
dolphmfoexle: if a keystone client is provided with authentication credentials instead of a token, isn't persisting tokens between requests, and is running lots of operations... a lot of tokens are going to be generated and used once13:50
lakesi have a Nova Network in VLAN mode13:50
*** tserong has quit IRC13:51
*** rnorwood has joined #openstack13:51
*** marrusl has joined #openstack13:51
*** natea has joined #openstack13:51
avoinechm007: maybe try with http://172.16.0.1:5000/v1/images13:51
lakesbut the instances cannot ping any address outside of their vlan13:51
lakesnot even the gateway of the bridge interface13:52
dolphmfoexle: if a client has a lot of operations to run, it *should* get a token once, and use it until it expires or becomes otherwise invalidated13:52
lakesthis is Essex13:52
*** mcolombo has joined #openstack13:52
chm007get also a HTTP 404 : curl -H "X-Auth-Token: 7186974eade44728ae0f14a5f53b057c" -X 'GET'  http://172.16.0.1:5000/v1/images13:52
lakesdoes aniyone have some clue?13:52
avoinechm007: sry13:52
avoinechmouel: http://172.16.0.1:9292/v1/images13:52
dolphmchm007: i assume you want to use glance's port, not keystone's13:52
avoinewrong port13:53
avoinechmouel: bad ping, sry for that13:53
*** robbiew has joined #openstack13:53
*** msavy_ has joined #openstack13:53
chm007avoine: As I discover openstack, I have no idea what is the best port to be used and tried to do curl query according to doc here http://api.openstack.org/()13:54
*** littleidea has quit IRC13:54
*** vmlinuz has joined #openstack13:54
*** DANO-MARC has quit IRC13:54
*** ryanpetrello has joined #openstack13:54
dolphmchm007: there's not a "best" port ... there are multiple services that compose openstack itself (nova, glance, keystone, swift, etc), and each runs on a different port (or pair of ports, in many cases)13:55
*** crohling88 has joined #openstack13:55
*** egant has quit IRC13:55
*** littleidea has joined #openstack13:55
uvirtbotNew bug: #1037578 in keystone "Remove unused imports " [Undecided,New] https://launchpad.net/bugs/103757813:55
chm007This should be interesting to mention that in the doc to avoid confusion and new users13:55
*** egant has joined #openstack13:56
UICTamaleThe main problem with the API documentation is it doesn't describe how to connect to the API13:57
UICTamalejust how to USE it13:57
UICTamaleI still don't know what port the command line tool 'nova' actually uses13:57
*** msavy has quit IRC13:57
*** egant has quit IRC13:59
avoineinteresting problem13:59
UICTamalefor instance - on this page: http://docs.openstack.org/api/quick-start/content/ - the port '5443' is mentioned in a curl command to trystack.org - but I don't see 5443 ANYWHERE in my /etc/* directories14:00
dolphmUICTamale: not sure i understand -- what API docs are you looking at, specifically?14:00
avoinenever see port 5443, in this case it should be 500014:01
dolphmUICTamale: i think trystack runs the keystone public endpoint on port 544314:01
UICTamaleSimilarly, the libcloud openstack reference mentions 5443 as well:  http://libcloud.apache.org/docs/compute-examples.html14:01
UICTamaleI have yet to successfully connect to the openstack API on my own install following the official docs14:01
UICTamale5000 is keystone's port, no?14:01
*** freck has joined #openstack14:02
dolphmUICTamale: generally, yes. that's keystone default public endpoint port14:02
UICTamale5000 is actually in both keystone.conf as "public_port" and nova/api-paste.ini as 'service_port'14:03
*** glenc_ has joined #openstack14:03
dolphmUICTamale: public / service are used interchangeably in that context14:03
*** mattray has joined #openstack14:03
dolphmUICTamale: both in contrast to admin / management14:04
UICTamaleWhoa14:04
UICTamalemind=blown14:04
*** glenc has quit IRC14:04
*** mcolombo has quit IRC14:04
avoineUICTamale: hehe, nova needs to know how to talk to keystone to authenticate requests14:04
UICTamalethat's the kind of explanation that's sorely missing from the docs I've found :\14:04
chm007Agree: port number 5000 is the port to be used but syntax defined here is not correct --> http://api.openstack.org/14:04
*** linuxfreck has quit IRC14:05
dolphmUICTamale: i have a list of topics i'd love to write about in the docs during Grizzly :-/14:05
UICTamaledolphm: I'd love to help.  I think the project's greatest fault is it doesn't explain the system as a whole from an 'outsiders' perspective14:06
UICTamaleit reads like each person who worked on their respective project wrote their docs in a vaccuum14:06
*** msavy_ has quit IRC14:06
UICTamaleand all these examples using trystack don't do people any good if they're setting things up with the provided docs / defaults14:06
*** dwcramer has joined #openstack14:06
*** msavy has joined #openstack14:06
dolphmUICTamale: i had the same experience when i started -- my first obstacle was understanding all the cryptic project names vs marketing names (e.g. "nova" vs "compute")14:06
UICTamaleYup, exactly14:07
*** jackh has joined #openstack14:07
UICTamaletook me a while to realize the ubuntu download of 'openstack-dashboard' is the same as the open-source project 'horizon' just with some skinning changes14:07
UICTamaleat least I *think* that's right.. hehe14:07
dolphmUICTamale: and it only gets more complicated as more openstack projects are published lol14:08
dolphmUICTamale: it is14:08
UICTamalewe should just start a newbie's guide to openstack14:08
UICTamaleexplain the components in an abstract manner first - what they do - then give a list of each of the names associated with that component14:08
dolphmannegentle: http://docs.openstack.org/ has "A great starting point for deployers and cloud administrators." but not a single "great starting point for everyone" doc14:10
*** maoy has joined #openstack14:10
*** mrjazzcat has joined #openstack14:11
*** dubsquared has joined #openstack14:12
*** mindpixel has quit IRC14:13
*** markmcclain has joined #openstack14:13
*** prao has joined #openstack14:14
*** clopez has joined #openstack14:14
fitzdslshould I have a dnsmasq on each nova-compute node ?14:14
uvirtbotNew bug: #1037589 in quantum "ipaddr is not assigned when creating a port on shared network with different tenant_id" [Undecided,New] https://launchpad.net/bugs/103758914:15
Diopterfitzdsl: Depends; are you running multi_host?14:15
fitzdslDiopter: yes14:16
*** markmcclain has quit IRC14:16
*** dendrobates is now known as dendro-afk14:16
*** tty has quit IRC14:16
*** bsza has joined #openstack14:16
Diopterfitzdsl: Then yes (assuming you're also running FlatDHCP). dnsmasq, nova-compute, nova-network, metadata14:17
fitzdslin Fedora I don't seem to have metada, should I run nova-api instead ?14:17
fitzdsland yes I'm running FlatDHCP14:17
*** zodiak has joined #openstack14:18
UICTamaleyeah14:18
UICTamalenova-api14:18
fitzdsland should I have a particular enabled_apis in secondary compute node ?14:18
fitzdslfor now I have enabled_apis=osapi_compute,metadata14:18
UICTamaleI'll check  what I have14:19
*** dendro-afk is now known as dendrobates14:19
*** rosco____ has quit IRC14:20
*** rosco has joined #openstack14:20
fitzdslUICTamale: thx14:20
uvirtbotNew bug: #1037590 in nova "Absent a per-user quota for a resource, fall back to the per-project quota before default" [Undecided,New] https://launchpad.net/bugs/103759014:21
uvirtbotNew bug: #1037592 in glance "Remove unused imports" [Undecided,New] https://launchpad.net/bugs/103759214:21
UICTamalewhich file is that in fitzdsl?14:21
fitzdslnova.conf14:21
*** dev_sa has joined #openstack14:21
UICTamaleHm.. I don't have that config option at all14:22
*** markmcclain has joined #openstack14:22
*** Breaking_Pitt has quit IRC14:22
fitzdslUICTamale: neither in your nova-volume,cert node ?14:22
*** Bryanstein has quit IRC14:23
UICTamaleI remember seeing it somewhere14:23
UICTamaleI thought an api-paste.ini or something14:23
fitzdslUICTamale: http://docs.openstack.org/trunk/openstack-compute/admin/content/existing-ha-networking-options.html14:24
UICTamaleYup, I'm following the HA model myself14:24
UICTamaleah14:24
UICTamalelet's see what the default is14:24
UICTamaleec2,osapi_compute,osapi_volume,metadata14:25
fitzdsland you have nova-api-metadata or nova-api as system service ?14:25
UICTamaleyah, on my 'extra nodes' I run libvirt-bin, nova-network, nova-compute, and nova-api14:26
*** dspano has joined #openstack14:27
*** Breaking_Pitt has joined #openstack14:27
*** julianwa has quit IRC14:28
*** TartanTexas has joined #openstack14:33
*** Guest14360 has joined #openstack14:35
*** primozf has quit IRC14:36
fitzdslin api-paste.ini what does mean service_host ?14:36
UICTamaleI believe that's your controller node14:36
UICTamalekeystone14:37
UICTamale(anyone jump in here and correct me if I'm wrong, sometimes I feel like the wrong guy helping others considering my new cloud barely works )14:37
DiopterUICTamale: That's ok, "barely works" means you're production ready.14:38
DiopterShip it!14:38
*** TartanTexas has quit IRC14:38
fitzdsl:D14:38
foexledolphm: yeah it should ;)14:38
UICTamalelol !14:38
fitzdslso I should point it to keystone server ?14:38
UICTamalethat's what mine's pointed to and *it works*14:38
*** jmckind has joined #openstack14:40
*** chm007 has quit IRC14:40
fitzdslhaving a cloud mono server is quite frustrating :)14:40
*** qazwsx has quit IRC14:41
*** chm007 has joined #openstack14:42
jrwrenwhat is a cloud mono server?14:42
*** desai has joined #openstack14:42
*** dubsquared has quit IRC14:43
fitzdsljrwren: an apptempt of seting up a multinode nova-compute installation without succeeding :s14:44
*** atrius_away is now known as atrius14:44
UICTamalewhere is it failing?14:45
fitzdslUICTamale: I just never get any kvm instance spawn on the second node14:45
*** StabBeast has joined #openstack14:46
StabBeastHi. Had someone tried to setup floating DNS for nova?14:47
annegentledolphm: I'm working on a new layout for the docs.openstack.org page, please review https://review.openstack.org/#/c/11232/ (it's a WIP)14:48
*** freeflying has quit IRC14:49
annegentleUICTamale: I'm going to point people to http://openstack.org/software/start but TryStack really is a good starting point. DevStack also. After that all heck breaks loose because there's tons of config options :)14:50
*** localhost has joined #openstack14:50
*** localhost has quit IRC14:50
annegentledolphm: UICTamale: not that I disagree with you, but that there's always work to be done and we are constantly improving.14:50
*** cp16net is now known as cp16net|away14:51
*** cp16net|away is now known as cp16net14:51
*** dubsquared has joined #openstack14:51
*** freck has quit IRC14:53
*** localhost has joined #openstack14:53
*** jfluhmann has joined #openstack14:53
*** vitiho has quit IRC14:53
*** vitiho has joined #openstack14:54
*** llang629 has joined #openstack14:54
*** azret has joined #openstack14:54
*** datsun180b has joined #openstack14:54
*** llang629 has left #openstack14:55
*** llang629 has joined #openstack14:56
*** llang629 has left #openstack14:56
UICTamaleOh, please don't take my criticism as a negative overall view of the software14:56
UICTamaleI'm amazed how good this stuff is14:56
*** Toretto has quit IRC14:56
*** Bryanstein has joined #openstack14:57
UICTamaleIt's just that when something is so good - the few things that need improving are that much more obvious14:57
*** Blackavar has joined #openstack14:58
kbringardsmoser: who should I talk to about a Ubuntu packaging dependency suggestion?14:58
UICTamaleannegentle: BTW - that link you sent me with the two options really needs a third option - not for people who want to USE a cloud, or for people who want to DEVELOP openstack, but for people who want to BUILD clouds14:58
smoserzul, would be the best person, probably kbringard14:58
kbringardsmoser: thanks14:58
smoserbut open a bug14:58
kbringardwell, I'm not sure it's a bug, per se14:59
smoser'ubuntu-bug <package>' is the best way to do that.14:59
smoserit doesn't hurt.14:59
kbringardfair enough14:59
smoserwe're at 7 figures of bugs. not all of them are completely valid14:59
smoser:)14:59
kbringardlol, true14:59
kbringardbut if people thought about it before filing them you'd probably have less ;-)14:59
kbringardmostly the issue is… there's an OpenStack specific fix in dnsmasq 2.61, but the latest version of dnsmasq shipping with 12.04 is 2.5915:00
kbringardso I'm thinking, if Ubuntu is "officially supporting" OpenStack, we should probably make sure the deps are up to date15:00
*** ondergetekende has quit IRC15:01
fitzdslwhat could prevent nova-network to update it's status when nova-compute works on the same node ?15:02
fitzdslnothing obvious on logs15:02
*** GheRivero_ has joined #openstack15:02
*** GheRivero has quit IRC15:03
*** GheRivero_ is now known as GheRivero15:03
*** tmichael has quit IRC15:05
*** adalbas has joined #openstack15:05
StabBeastCan anyone help me with openstack DNS service configuration please?15:06
*** e1mer has quit IRC15:07
*** judd_ has joined #openstack15:07
*** KavanS has joined #openstack15:07
*** judd_ is now known as Guest5065115:07
UICTamalewhat do you mean by update its status?15:08
fitzdsldon't know, the state was XXX and the update_at was not recent15:10
*** Guest50651 has quit IRC15:11
fitzdslI reset the nova db and it worked again15:11
fitzdslsomething I don't get there15:11
fitzdslbut current nova-manage service list seems good15:11
fitzdslnothing particular in logs15:11
*** reidrac has quit IRC15:11
fitzdsland I don't have any instance on node215:11
*** linuxfreck has joined #openstack15:12
*** otherwiseguy has joined #openstack15:12
*** Ruetobas has joined #openstack15:13
*** curzonj has joined #openstack15:13
*** mjfork has quit IRC15:14
*** mjfork has joined #openstack15:14
*** arBmind has joined #openstack15:15
uvirtbotNew bug: #1037619 in cinder "NFS driver exceptions need to be moved to exceptions file" [Undecided,New] https://launchpad.net/bugs/103761915:15
*** guigui3 has quit IRC15:15
fitzdslUICTamale: ca c'est ma conf : http://pastebin.com/2nDtF5MP15:16
*** lborda has quit IRC15:16
*** tmichael has joined #openstack15:16
*** otherwiseguy has quit IRC15:16
*** vipuls has joined #openstack15:17
*** otherwiseguy has joined #openstack15:17
UICTamaleI see multi_host commented out in your node215:17
UICTamaleand one your node115:17
fitzdslI'm trying different things,15:18
fitzdslnothing seems to work15:18
fitzdsland I was wrong, in service list network is not listed on testnode215:18
UICTamalewell I know you need multi_host true15:18
fitzdslbut process is running15:18
fitzdslI reenabled multi_host15:18
UICTamalei'll share my confs as well15:18
UICTamaleyou also need to make sure to add the --multi_host=true option when you do the nova network-create command15:19
fitzdslah !15:19
fitzdsldidn't know that15:19
Diopterfitzdsl: Make sure you restart nova-network when you re-enable multi_host in the nova.conf's15:19
fitzdslDiopter: yes of course15:20
* Diopter nods15:20
Guest14360hello all. anyone know how to install folsom-2 in devstack?15:20
*** rnirmal has joined #openstack15:21
uvirtbotNew bug: #1037622 in cinder "NFS driver have some useless return values and commented out code to remove" [Undecided,New] https://launchpad.net/bugs/103762215:21
*** pvankouteren has quit IRC15:22
*** hemna has joined #openstack15:22
*** judd7 has quit IRC15:25
*** judd7 has joined #openstack15:26
*** vitiho has quit IRC15:26
*** vitiho has joined #openstack15:27
*** Blackavar has quit IRC15:27
*** rackerjoe has joined #openstack15:27
*** dachary has quit IRC15:27
*** krow has joined #openstack15:29
*** TartanTexas has joined #openstack15:33
*** dwcramer has quit IRC15:33
fitzdslUICTamale: in service list you have multiple nova-network ?15:34
*** cloudvirt has quit IRC15:34
*** ryanpetrello has quit IRC15:34
UICTamaleyes15:35
UICTamaleeach of my nodes'15:35
*** trygvis has left #openstack15:35
*** MarcMorata has quit IRC15:35
*** lifeless has quit IRC15:35
fitzdsleach of your node with nova-compute and nova-network ?15:35
fitzdsland a dsnmasq is spawned of each server ?15:36
*** desai has quit IRC15:36
*** linuxfreck has quit IRC15:36
*** TartanTexas has quit IRC15:38
UICTamaleyup15:38
*** uksysadmin has quit IRC15:38
*** lifeless has joined #openstack15:39
*** kallisti5 has joined #openstack15:40
kallisti5so... installed my first nova openstack system on ubuntu 12.04 x86_64... any time I navigate to a project I get a 'NotAuthorized at Nova' error + backtrace... any ideas on what could be wrong?15:41
*** markmcclain has quit IRC15:41
kallisti5as admin, or a user15:41
Guest14360hello all. anyone know how to install folsom-2 in devstack?15:41
*** lborda has joined #openstack15:42
*** dachary has joined #openstack15:42
kallisti5i also see random "unable to retrieve (quota|volume) information" errors in the dashboard15:43
*** krow has quit IRC15:45
*** al-maisan is now known as almaisan-away15:45
*** desai has joined #openstack15:46
*** dwcramer has joined #openstack15:47
*** salgado is now known as salgado-lunch15:47
*** jkoelker has quit IRC15:50
*** vipuls has quit IRC15:51
*** matwood has joined #openstack15:53
*** dwcramer has quit IRC15:53
*** Triade has quit IRC15:55
*** bsza has quit IRC15:55
*** DavidLevin has quit IRC15:56
*** markus_ has joined #openstack15:56
*** bsza has joined #openstack15:56
*** bsza has left #openstack15:56
*** hemna has quit IRC15:57
*** dwcramer has joined #openstack15:57
*** matwood has quit IRC15:57
*** matwood has joined #openstack15:57
*** hemna has joined #openstack16:00
*** dhellmann has joined #openstack16:00
*** tomoe has quit IRC16:02
*** StabBeast has quit IRC16:03
*** heckj has joined #openstack16:04
*** George has joined #openstack16:06
*** dave_mcn is now known as dave_mcn_away16:07
*** lakes has quit IRC16:07
*** dwcramer has quit IRC16:09
*** ieugen has joined #openstack16:10
*** markus_ has quit IRC16:10
*** ieugen has left #openstack16:10
*** hugao12 has quit IRC16:14
*** mnewby has joined #openstack16:15
*** jkoelker has joined #openstack16:17
*** jackh has quit IRC16:19
*** chm007 has quit IRC16:19
*** melmoth has joined #openstack16:20
*** virtuose has quit IRC16:20
*** garyk has quit IRC16:22
*** RamJett has joined #openstack16:22
*** lloydde has joined #openstack16:22
*** clopez has quit IRC16:22
*** dwcramer has joined #openstack16:22
*** chm007 has joined #openstack16:23
*** kindaopsdevy has joined #openstack16:23
*** thimble has quit IRC16:23
*** MrRoot has quit IRC16:23
*** GheRivero has quit IRC16:25
*** kindaopsdevy has quit IRC16:27
*** dhellmann has quit IRC16:27
*** colon_D has joined #openstack16:29
*** noob has joined #openstack16:29
*** aliguori has quit IRC16:30
foexlehey guys, anyone are using fog gem ? to communicate with swift storage ?16:30
noobi'm having an issue with my openstack cloud where i can't retrieve any of the console logs16:30
*** warik has joined #openstack16:31
*** s0mik has joined #openstack16:31
*** gohko_airbase has quit IRC16:32
*** vitiho has quit IRC16:32
*** vitiho has joined #openstack16:33
kallisti5"Unable to communicate with identity service: [Errno 110] Connection timed out. (HTTP 400)16:33
kallisti5oyi.. new install and things are already exploding16:33
*** pvankouteren has joined #openstack16:33
*** dwcramer has quit IRC16:34
*** TartanTexas has joined #openstack16:34
Georgenoob: do you have "console=ttyS0"  in the grub.conf ?16:34
nooblet me check16:34
noobkallisti5: sounds like keystone died16:34
noobGeorge: i meant the console as in the boot messages of the instance starting up16:35
kallisti5noob: 1000      2874  1917  0 11:26 pts/5    00:00:00 python /opt/stack/keystone/bin/keystone-all --config-file /etc/keystone/keystone.conf --log-config /etc/keystone/logging.conf -d --debug16:35
*** Blackavar has joined #openstack16:35
noobkallisti5: what's in t he log file?16:35
Georgenoob: yes, you need the instance to send the output to ttyS016:36
noobgotcha16:36
noobalright i'll check my instance16:36
kallisti5noob: no idea, where does keystone put it's log files? (sorry, openstack first-timer)16:36
noobthey go in '/var/log/nova/'16:36
*** salgado-lunch is now known as salgado16:37
kallisti5noob: hmm, no var log nova16:37
kallisti5this was a devstack using the script16:37
noobubuntu?16:37
kallisti5yeah16:37
kallisti512.04 server x86_6416:37
*** Rajesh has joined #openstack16:37
noobgotcha16:38
* kallisti5 checks syslog16:38
*** Rajesh is now known as Guest1524416:38
noobthey're still in /var/log16:38
*** Guest15244 has quit IRC16:38
noobi don't know exactly where ubuntu puts them16:38
noobGeorge: if i remove the swift rpm's will my openstack break?  i'm going to replace them with the gluster version16:39
*** TartanTexas has quit IRC16:39
kallisti5noob: var log libvirt ?16:39
*** Rajesh_ has joined #openstack16:39
*** vipuls has joined #openstack16:39
noobkallisti5: no that's another process that's in charge of the vm's i believe16:40
*** gohko_air has joined #openstack16:40
noobopen up the file /etc/keystone/logging.conf16:40
noobit'll tell you where it's logging to16:40
*** Rajesh_ has quit IRC16:40
*** dwcramer has joined #openstack16:40
*** AlanClark has joined #openstack16:41
Georgenoob: no idea but you can check the dependencies for the swift rpms and see if it affects anything else; I don't think it should, but if you your Glance install uses swift as backend storage, then it will affect your Openstack environment's functionality16:41
noobGeorge: ok that's what i figured16:42
kallisti5hmm.. if devstack uses handler_development... it is stdout16:42
kallisti5which means it's prob only in that screen somewhere16:42
*** vladimir3p has joined #openstack16:42
*** vladimir3p has quit IRC16:42
*** pguth66 has quit IRC16:43
noobkallisti5: yeah sounds like it16:43
*** StarBeast has quit IRC16:44
Georgenoob: by the way, you can check if the instance is sending output to the console by checking the contents of "/var/lib/nova/instances/instance-xxx/console.log "; if that file is empty, then Dashboard and nova won't be able to show you anything16:45
*** DavidLevin has joined #openstack16:45
*** dolphm has quit IRC16:45
noobGeorge: thanks.  let me check16:45
noobGeorge: that's the problem.  i just see _base in there.  nothing else16:46
noobGeorge: on the compute nodes the instance console.log is empty.  that's the problem :)16:47
*** avoine has quit IRC16:47
Guest14360hello all. anyone know how to install folsom-2 in devstack?16:47
*** ev0ldave has joined #openstack16:48
*** whenry has joined #openstack16:48
*** foexle has quit IRC16:48
ev0ldaveanyone successfully created an osx image yet?16:49
*** koolhead17 has joined #openstack16:49
kallisti5noob: hmm.. sounds like the volume service is crashing16:50
kallisti52012-08-16 11:49:42 TRACE cinder VolumeBackendAPIException: Bad or unexpected response from the storage volume backend API: volume group stack-volumes doesn't exist16:50
*** dubsquared has quit IRC16:51
kallisti5[Thu Aug 16 11:50:07 2012] [error] ValueError: No JSON object could be decoded16:51
noobkallisti5: you need to create that lvm volume group16:51
kallisti5ah.. that wasn't in the devstack guide :)16:51
nooblemme paste something for you16:51
kallisti5k16:51
noobhttp://paste.openstack.org/show/20345/16:51
noobthat'll fix ya up :)16:52
*** jtran has joined #openstack16:52
*** ericcc has joined #openstack16:52
*** aliguori has joined #openstack16:52
kallisti5this stuff looks neat, want to play with it for a lab (throw away machine images for testing)16:52
noobyeah it's great16:53
*** dcramer_ has joined #openstack16:53
noobcan be complicated to get going but once you get it, it's awesmoe16:53
*** oubiwann has joined #openstack16:55
*** albert23 has joined #openstack16:55
*** kpavel has quit IRC16:55
*** dwcramer has quit IRC16:56
*** dcramer_ has quit IRC16:59
*** networkstatic has joined #openstack16:59
*** networkstatic has quit IRC16:59
*** jkoelker has quit IRC16:59
*** bigmeow has quit IRC16:59
*** mirror has joined #openstack17:00
*** nacx has quit IRC17:00
*** mirror has quit IRC17:01
*** derekh has quit IRC17:01
*** ryanpetrello has joined #openstack17:02
*** DavidLevin has quit IRC17:02
*** warik_ has joined #openstack17:02
*** markmcclain has joined #openstack17:02
*** cloudvirt has joined #openstack17:02
*** maoy_ has joined #openstack17:02
Guest14360hello all. anyone know how to install folsom-2 in devstack?17:02
*** kwadronaut has quit IRC17:03
*** markmcclain1 has joined #openstack17:03
*** maoy_ has quit IRC17:03
*** dhellmann has joined #openstack17:04
annegentleGuest14360: I haven't tried it myself with folsom-2, but seems like you could do this: http://www.joinfu.com/2012/03/testing-essex-rc1-with-devstack-and-tempest/17:04
*** curzonj has quit IRC17:04
*** Toretto has joined #openstack17:04
annegentleGuest14360: basically the idea is, edit the stackrc file to point to the branches you want, f-2 or f-3 or whatever, for each project17:04
*** maoy has quit IRC17:04
Guest14360annegentle: thanks. I will try it now17:04
*** maoy has joined #openstack17:04
*** warik has quit IRC17:05
*** warik_ is now known as warik17:05
kallisti5noob: so this is the backtrace i'm seeing17:05
kallisti5[["__json_message",40,"Unable to retrieve usage information."],["__json_message",40,"Unable to retrieve usage information."],["__json_message",40,"Unable to retrieve usage information."]]'17:05
kallisti5/opt/stack/python-keystoneclient/keystoneclient/client.py in request, line 13517:05
*** markmcclain has quit IRC17:06
Guest14360annegentle: do you know what I should call the branch?17:06
*** blazed has joined #openstack17:09
*** linuxfreck has joined #openstack17:09
*** pvankouteren has quit IRC17:09
*** comptona has joined #openstack17:10
*** simon_lucy_ has joined #openstack17:10
*** imsplitbit has quit IRC17:11
*** tryggvil has quit IRC17:11
*** issackelly has joined #openstack17:12
kallisti5noob: i think i figured it out17:12
*** simon_lucy has quit IRC17:12
*** simon_lucy_ is now known as simon_lucy17:12
kallisti5installed on a machine on a dhcp network, and the dev stack seems to hard code the ip address *all* over the place17:12
*** dcramer_ has joined #openstack17:13
*** cp16net is now known as cp16net|away17:14
*** mattm_ has joined #openstack17:14
uvirtbotNew bug: #1037681 in swift "segfaults in SAIO instalation" [Undecided,New] https://launchpad.net/bugs/103768117:16
*** mattm_ is now known as matt9317:16
*** matt93 has quit IRC17:16
*** matt93 has joined #openstack17:16
*** localhost has quit IRC17:16
uvirtbotNew bug: #1037680 in openstack-manuals "Examples for viewing container metadat include object and should stop at container" [High,Confirmed] https://launchpad.net/bugs/103768017:17
*** matt93 has quit IRC17:17
*** mmalesky has joined #openstack17:17
*** chadh_ has joined #openstack17:18
*** chadh has quit IRC17:18
*** melmoth has quit IRC17:19
*** msavy has quit IRC17:19
*** ejat has joined #openstack17:20
*** sstent has quit IRC17:21
uvirtbotNew bug: #1037683 in keystone "PKI Token revocation" [Undecided,In progress] https://launchpad.net/bugs/103768317:21
*** sstent has joined #openstack17:22
*** kyriakos has quit IRC17:23
*** vitiho has quit IRC17:24
*** jdurgin has joined #openstack17:24
*** localhost has joined #openstack17:24
*** vitiho has joined #openstack17:24
*** mrjazzcat has quit IRC17:26
*** garyk has joined #openstack17:27
*** smokes2345 has joined #openstack17:29
*** blazed has quit IRC17:29
smokes2345how can i change the fqdn of my instances from *.novalocal to *.(AD domain)17:29
*** vmlinuz has quit IRC17:30
*** tryggvil has joined #openstack17:30
*** simon_lucy has quit IRC17:30
mckraken--dhcp_domain=foobar.baz and restart nova-network/dnsmasq17:31
*** k0rupted has joined #openstack17:31
*** arBmind has quit IRC17:32
*** Ryan_Lane has joined #openstack17:32
*** chm007 has quit IRC17:33
smokes2345i know nova runs dnsmasq, but is there a way to configure dnsmasq to listen on the public IP so that it can resolve hostnames for externals dns servers?17:34
*** TartanTexas has joined #openstack17:34
*** ejat- has joined #openstack17:35
*** jplewi has joined #openstack17:35
smokes2345•mckraken• do you know of an exhaustive list of options for nova-network?17:36
*** Ryan_Lane1 has joined #openstack17:37
*** ejat has quit IRC17:38
*** ejat- is now known as ejat17:38
*** ejat has joined #openstack17:38
*** Skut has joined #openstack17:38
*** TartanTexas has quit IRC17:39
*** Ryan_Lane has quit IRC17:39
*** Ryan_Lane1 is now known as Ryan_Lane17:39
*** Ryan_Lane has joined #openstack17:40
*** maoy has quit IRC17:42
*** maoy has joined #openstack17:42
*** imsplitbit has joined #openstack17:42
*** imsplitbit has quit IRC17:43
*** Rajesh has joined #openstack17:43
*** warik has quit IRC17:43
*** imsplitbit has joined #openstack17:43
*** warik has joined #openstack17:43
*** Rajesh is now known as Guest3702017:43
*** arBmind has joined #openstack17:46
uvirtbotNew bug: #1037690 in python-swiftclient "Endpoint is hard-wired to publicURL" [Undecided,New] https://launchpad.net/bugs/103769017:46
*** zykes- has joined #openstack17:48
mckrakensmokes:  i'm not sure if they get broken down by exactly which workers listen to them, but all the nova flags are here:  http://docs.openstack.org/essex/openstack-compute/admin/content/compute-options-reference.html17:49
*** arBmind has quit IRC17:50
*** rods has left #openstack17:51
*** davidha has quit IRC17:51
*** davidha has joined #openstack17:52
*** anniec has joined #openstack17:52
*** markmcclain1 has quit IRC17:53
*** markmcclain has joined #openstack17:55
*** markmcclain has quit IRC17:56
*** issackelly has left #openstack17:57
*** markmcclain has joined #openstack17:57
*** vmlinuz has joined #openstack17:58
*** mestery_ is now known as mestery17:59
uvirtbotNew bug: #1037693 in tempest "XML API support missing" [Undecided,New] https://launchpad.net/bugs/103769318:01
*** Guest37020 has quit IRC18:02
*** dev_sa has quit IRC18:03
hemnahow can I deal with nova-compute not starting because a vm instance failed to create18:03
*** thovden has joined #openstack18:05
*** mdomsch has joined #openstack18:05
Georgehemma: virsh undefine instance_ID18:07
UICTamalehemna: what's the error in the nova logs?18:07
hemnanova InstanceNotFound: Instance instance-00000001 could not be found.18:07
hemnaan instance I had created and then tried to delete via Horizon...and it failed18:07
hemnanow nova-compute fails to start18:08
hemnavirsh undefine doesn't work18:08
hemnacomplains the domain doesn't exist18:09
hemna no domain with matching name 'instance-00000001'18:09
Georgehemma: cleanup the instance in nova db18:10
*** johnpostlethwait has joined #openstack18:10
hemnajust manually delete from <tables> ?18:10
Georgedelete or updato to delete status18:10
swinchenNot a bad idea to create a script that checks your instances directory, and sets all non-existent instances in the db to deleted.18:11
*** slowe has joined #openstack18:11
swinchenalthough it is probably safer to do it manually.18:11
*** grk has joined #openstack18:11
Georgethere is a script somewhere that does this18:11
*** dubsquared has joined #openstack18:11
swinchenOh really?  that would be nice.  I would also like a script that cleans up my _base directory.18:12
hemnaok I just set the deleted bit in the instances table18:13
hemnathat seems to have allowed nova-compute to start18:13
hemna*sigh*18:13
*** pvankouteren has joined #openstack18:13
hemnaone would think that nova-compute would be more robust than that.18:13
swinchenhemna: I feel your pain.  When I was getting everything working I created a script that deleted the whole nova dabase and recreated everything :)18:13
Georgeswinchen: http://openstack.markmail.org/search/?q=_base#query:_base+page:3+mid:xin7ip7szlnfkkjs+state:results18:14
hemnaI've done that same thing about 5 times now18:14
hemnastill trying to get it all to work once.18:14
*** ieugen has joined #openstack18:15
swinchenGeorge: hmm, interesting.  Thanks for the link.  Looks like it will be coming to Folsom.18:15
*** kpavel has joined #openstack18:15
*** natea has quit IRC18:15
Georgehttp://docs.openstack.org/trunk/openstack-compute/admin/content/compute-options-reference.html  => search for remove_unused_base_images=true18:15
*** rnorwood has quit IRC18:15
*** cloudvirt has quit IRC18:16
swinchenOh, hmm ... yeah it is even in essex.18:16
swinchenthanks18:16
*** Guest37020 has joined #openstack18:17
Georgeswinchen: welcome (the site http://openstack.markmail.org/ contains the mailing list searchable history, quite useful)18:18
*** natea has joined #openstack18:18
swinchenNice interface too.  Thanks.18:18
*** cloudvirt has joined #openstack18:19
*** dolphm has joined #openstack18:20
*** blazed has joined #openstack18:20
swinchenSo, I see with nova boot I can create multiple network interfaces... is there a way to create one that is not assigned an address?   I have a pieces of software that requires the HW address of eth0 to be the same on all instances... so I really want my fixed ip to assigned to eth1.  I guess I could give eth0 a fixed non-routable ip..  127.1.1.1 or something on all instances.18:20
swinchenI use "..." too much.18:20
*** rnorwood has joined #openstack18:21
*** ieugen has left #openstack18:21
*** MarkAtwood has joined #openstack18:22
Diopterswinchen: So, few things18:22
Diopterswinchen: You can't have the HW (MAC) address of eth0 be the same on all instances (assuming by instances you mean VMs) unless you really want things to break a lot.18:23
Diopterswinchen: Also, the entire 127.x.x.x/8 network is probably not going to work how you expect when it's not on a loopback interface18:23
swinchenDiopter so there is no way to get a VM to use eth1 instead of eth0?18:24
Diopterswinchen: First of all, can we talk about this piece of software that requires the craziness?18:24
Diopterswinchen: My suspicion is there are much better ways to accomplish what you're trying to do :P18:25
swinchenWe have site licence for Matlab, but on install matlab locks the license to the MAC of eth0.  I don't really want to install matlab on all VM's individually.18:26
uvirtbotNew bug: #1037705 in nova "Remove unused imports" [Undecided,New] https://launchpad.net/bugs/103770518:26
Diopterswinchen: lol! I see.18:26
swinchenSo my thought was to trick it by using eth0 as a dummy interface with a fixed MAC (same as the VM that is was installed on).18:26
Diopterswinchen: So you're clustering the MatLab solving engine18:27
*** leveldoc has quit IRC18:27
Diopterswinchen: Does Matlab bind to eth0 specifically? Or to the first ethernet interface? Or first interface with a real link? Or an interface with internet routing?18:27
swinchenWell... all of Matlab.  This is so the 1st year students can use their own VM over FreeNX, do assignment using matlab, etc.18:27
*** Toretto has quit IRC18:28
swinchenDiopter: all it says on the matlab site is that the hostid is the same as eth018:28
DiopterI see. I'm curious though, you said you have a site-license. That implies as many seats as you have at your 'site'. Which makes me wonder how it'd ever work on multiple machines which will all have unique MACs18:29
*** eglynn is now known as eglynn-back-in-a18:30
swinchenWhen you install Matlab you have to use your University email address and it uses that and your mac address to create a licence file (along with a site activation key).  All the magic happens at install time.  I think it is used to keep track of how many installs a single user has.18:31
uvirtbotNew bug: #1037708 in glance "Swift backend hardwires publicURL" [Undecided,New] https://launchpad.net/bugs/103770818:31
swinchenI was just going to put them all under my name... it might be quasi legal, but seeing Matlab is only being used by students (who have the right to use it) I don't see too huge of a problem :)18:32
swinchenMathworks may disagree with me :/18:32
Diopterswinchen: I see! Well, seeing as the legality is quasi, I hereby declaim and defer any and all blame and responsibility blah blah :P18:33
swinchenHaha.18:33
*** avoine has joined #openstack18:33
Diopterswinchen: That said, you can probably rig up your image with "alias eth0 dummy" or similar in /etc/modprobe.conf18:34
DiopterIn an attempt to try to bring up a dummy interface named eth0 that you set the MAC on at boot18:34
DiopterMy guess is their interface choosing algorithm is simplistic and doesn't care about link states and whatnot18:34
swinchenI _could_ just include all the install files with instructions on how to install and activate Matlab.  That is really going to test the freshmen though, it requires a fair number of steps...  hmm.18:34
*** TartanTexas has joined #openstack18:35
swinchenDiopter: yeah, it looks pretty simple http://www.mathworks.com/support/solutions/en/data/1-171PI/18:35
*** bbcmicrocomputer has quit IRC18:36
*** crohling88 has left #openstack18:36
*** TartanTexas has quit IRC18:41
*** dubsquared has quit IRC18:41
Georgehemma: I found that script that cleans up instanced in the db: http://openstack.markmail.org/search/?q=[Openstack]%20A%20collection%20of%20utilities%20for%20cleaning%20up%20the%20database#query:[Openstack]%20A%20collection%20of%20utilities%20for%20cleaning%20up%20the%20database+page:1+mid:gygnjvdy3njwfrtg+state:results18:43
swinchenOhhh I was wrong.  net-id=net-uuid does NOT seem to be a mac address.  crap18:44
swinchenI am going to have to create a cloud-init script that finds the hw address of eth0, assigns it to eth1, and then sets eth0 hw address to the one required by matlab.  :(18:45
*** n0ano has joined #openstack18:46
*** DavidLevin has joined #openstack18:49
UICTamaledo the command line tools 'nova' and 'nova-manage' use the same API ?18:53
*** jfluhmann has quit IRC18:53
rackerjoeNo.  Typically anything with -manage in the name uses direct database access while the CLI tools utilize the API18:54
UICTamalerackerjoe: Thanks - is that why nova-manage needs root?18:54
*** retr0h has joined #openstack18:58
*** retr0h has joined #openstack18:58
swinchenUICTamale: I believe so yes, so it can read the config files and get the SQL connection information.18:58
*** cp16net|away is now known as cp16net19:01
swinchenoh lordy, cloud-init really scrapes a system doesn't it?  It undid all my installed software.19:02
rackerjoeactually - it looks like the 'please run me as root' error message is trigged when trying to set up logging for /var/log/nova/nova-manage.log and /var/log/nova is usually created uid:gid nova:nova and mode 700.19:04
*** natea_ has joined #openstack19:04
*** infernix has quit IRC19:04
swinchenwtf... what does cloud-init do?   It says all my software is installed, but it scraped all the configuration in /etc19:06
uvirtbotNew bug: #1037725 in glance "v2 Images API allows non-uuid image identifiers" [Critical,In progress] https://launchpad.net/bugs/103772519:06
*** arBmind has joined #openstack19:06
*** natea has quit IRC19:06
*** natea_ is now known as natea19:06
*** jmckind has quit IRC19:07
*** mdomsch has quit IRC19:07
*** matiu has quit IRC19:09
uvirtbotNew bug: #1037729 in nova "xenapi: rescue fails with hvm instances" [Undecided,In progress] https://launchpad.net/bugs/103772919:11
*** matiu has joined #openstack19:12
*** marrusl has quit IRC19:13
*** DavidLevin has quit IRC19:15
*** acadiel has joined #openstack19:16
*** grk has quit IRC19:16
*** DavidLevin has joined #openstack19:18
acadielGood afternoon, all.  I'm getting close to having my OpenStack PoC systems finished!  Just need to configure Swift and an additional compute node, and I'll be done.  However, I have one thing I'm still fighting with.  On the private side, Nova is ignoring my --flat_network_dhcp_start range and is starting on the first valid IP (which is my interface address for that private network).  How19:18
acadielcan I "reserve" that IP to where Nova won't hand it out on the private side?19:18
*** vitiho has quit IRC19:18
*** marrusl has joined #openstack19:19
*** vitiho has joined #openstack19:19
*** markmcclain has quit IRC19:19
acadielit's crashing my routing on the controller to the outside world from the VMs when it hands that IP out19:19
*** primeministerp has quit IRC19:19
*** mgriffin_ is now known as mgriffin19:19
Diopteracadiel: Use mysql to edit the fixed IP table in the nova database, and reserve the IPs you don't want nova-network to use.19:19
*** primeministerp has joined #openstack19:19
acadieldiopter:  I'll need a little hand holding here... not very good with MySQL.19:20
DiopterThat's ok, OpenStack isn't either.19:21
acadielI know you can do a nova-manage floating delete on the public side... wish you could do something like that on the private side, or --flat_network_dhcp_start would actually work correctly.  (Bug report?)19:21
*** wijet has joined #openstack19:22
Diopteracadiel: I'm not sure. I've had issues with that before as well. Looking around for bugs.19:24
wijethi19:24
DiopterThey're pesky and like to crawl around a lot, might take a while19:24
wijetI got a problem with os:scheduler_hints when creating a new instance19:24
*** xjen1 has quit IRC19:24
acadielDiopter:  I can submit one and see if they close it, etc, I guess.  My contribution to helping the product move forward :)19:25
wijetI would expect from os:scheduler_hints, that if it can't launch instance where I want, it will launch it somewhere else19:25
acadielI'll ping some team mates to see if I can find someone a little more knowledgable with MySQL.  So I just add the IPs I don't want it to use, and it'll see them used and ignore them?19:25
wijetinstead, instance goes into ERROR state, during scheduling19:25
*** rnorwood has quit IRC19:25
*** MyAzhax has quit IRC19:27
wijetWhat do you guys think about it? shouldn't it launch the instance in other place, if hints can't be met?19:27
*** renuka has quit IRC19:31
*** Guest37020 has quit IRC19:32
*** littleidea has quit IRC19:33
*** rnorwood has joined #openstack19:34
wkellyacadiel: mysql -u nova -p$NOVA_PASSWORD nova -e "update fixed_ips set reserved=1 where address='$ADDRESS_TO_RESERVE'"19:34
wkellyon the box running mysql19:34
*** heckj has quit IRC19:35
*** littleidea has joined #openstack19:35
*** mrjazzcat has joined #openstack19:35
*** TartanTexas has joined #openstack19:35
acadielThanks, wkelly!!  I'll try that19:36
acadielyou rock! :)19:36
*** TartanTexas has quit IRC19:39
*** steveb___ has joined #openstack19:41
*** jkordish has quit IRC19:42
wkellyno problem!19:43
*** dubsquared has joined #openstack19:44
*** renier has quit IRC19:45
uvirtbotNew bug: #1037745 in glance "glance fails to start in Swift multi_tenant mode" [High,In progress] https://launchpad.net/bugs/103774519:46
*** renier has joined #openstack19:47
*** dolphm has quit IRC19:47
*** dprince has quit IRC19:47
*** kbringard has quit IRC19:48
*** lloydde has quit IRC19:48
*** George has quit IRC19:48
*** lloydde has joined #openstack19:48
*** kbringard has joined #openstack19:48
acadielwkelly:  I show the IPs I need as reserved now in fixed_ips when I did a select * from fixed_ips; - thanks!!!19:49
*** dolphm has joined #openstack19:49
wkellygood!19:50
Diopteracadiel: If you file any sort of bugs, they should be documentation bugs. flat_network_dhcp_start doesn't seem to exist anymore, and the code which implements fixed IP association doesn't seem to care about anything but the first non-reserved IP in the pool.19:50
Diopterhttps://github.com/openstack/nova/blob/master/nova/db/sqlalchemy/api.py#L1030 for instance19:51
uvirtbotNew bug: #1037750 in nova "--flat_network_dhcp_start argument is being ignored" [Undecided,New] https://launchpad.net/bugs/103775019:51
DiopterOr you can file that one.19:51
*** samkottler is now known as samkottler|bbl19:51
wkellythat one is probably good19:51
acadielAck.  sorry about that :)19:51
DiopterS'all good19:51
acadielwell, I did ask if we could do something like "nova-manage privateip delete xx.xx.xx.xx" kind of like the floating IPs19:52
acadiel:-)19:52
*** steveb___ has quit IRC19:52
acadielrather than mucking around the db19:52
*** StarBeast has joined #openstack19:52
wkellyyeah, I think that bug report is fine19:53
wkellyand good :P19:53
*** lloydde has quit IRC19:53
StarBeastI have a question concerning openstack dns integration. Can some one help me please?19:54
acadielwhat's strange is restarting the network (when the private IP allocated that stomped on the private eth1 interface IP crashed the cloud controller routing) didn't fix the routing.  I actually hard to bounce the cloud controller.19:54
*** lloydde has joined #openstack19:54
Diopteracadiel: You can apparently use nova-manage fixed reserve --address=x.x.x.x, instead of hitting the DB directly19:55
Diopteracadiel: Seems to work for me on a box I just spun up to test with. There's also nova-manage fixed unreserve19:56
*** eglynn-back-in-a is now known as eglynn19:56
acadielawesome...  I'll make sure to put that in my docs19:56
*** darraghb has quit IRC19:57
*** rnorwood has quit IRC19:59
*** jcannava has joined #openstack20:00
*** blamar has joined #openstack20:00
*** rnorwood has joined #openstack20:00
*** datsun180b has quit IRC20:02
*** Breaking_Pitt has quit IRC20:03
*** markmcclain has joined #openstack20:04
*** littleidea has quit IRC20:04
*** lloydde_ has joined #openstack20:05
*** lloydde has quit IRC20:09
*** s0mik has quit IRC20:12
*** dcramer_ has quit IRC20:13
*** lifeless has quit IRC20:13
*** littleidea has joined #openstack20:14
*** dprince has joined #openstack20:14
*** tmichael has quit IRC20:15
*** s0mik has joined #openstack20:16
*** dubsquared has quit IRC20:17
*** natea has quit IRC20:18
*** natea has joined #openstack20:18
*** qazwsx has joined #openstack20:20
*** blamar has quit IRC20:20
*** lifeless has joined #openstack20:21
*** blamar has joined #openstack20:21
*** jkoelker has joined #openstack20:22
*** avoine has quit IRC20:22
*** markmcclain has quit IRC20:23
*** tmichael has joined #openstack20:24
*** thovden has quit IRC20:26
*** StarBeast has quit IRC20:26
*** markvoelker has quit IRC20:27
*** rnorwood has quit IRC20:30
*** markmcclain has joined #openstack20:30
*** markmcclain has quit IRC20:30
*** linuxfreck has quit IRC20:30
*** markmcclain has joined #openstack20:31
*** melmoth has joined #openstack20:33
*** rnorwood has joined #openstack20:33
*** matwood has quit IRC20:34
*** MarkAtwood has quit IRC20:34
*** rnorwood has joined #openstack20:34
*** dolphm has quit IRC20:34
*** k0rupted_ has joined #openstack20:35
*** TartanTexas has joined #openstack20:36
*** thovden has joined #openstack20:37
*** k0rupted has quit IRC20:37
*** qazwsx has quit IRC20:38
*** qazwsx has joined #openstack20:39
*** TartanTexas has quit IRC20:40
*** MarcMorata has joined #openstack20:40
kallisti5wow20:44
kallisti5yeah... got it working20:44
*** UICTamale has quit IRC20:44
kallisti5noob: you're right... openstack kicks ass20:45
*** cloudvirt has quit IRC20:46
*** acadiel has quit IRC20:47
*** arBmind has quit IRC20:48
*** lts has quit IRC20:49
*** samkottler|bbl is now known as samkottler20:50
uvirtbotNew bug: #1037782 in horizon "Tab "stickiness" cookie overrides requested tab in GET parameter" [Low,In progress] https://launchpad.net/bugs/103778220:50
*** kpavel has quit IRC20:51
*** kpavel has joined #openstack20:52
*** qazwsx|2 has joined #openstack20:55
*** kindaopsdevy has joined #openstack20:57
*** dubsquared has joined #openstack20:57
*** cloudvirt has joined #openstack20:57
*** qazwsx has quit IRC20:58
*** zul has quit IRC20:58
*** zul has joined #openstack20:59
*** rnorwood has quit IRC20:59
*** vmlinuz has quit IRC21:00
*** clopez has joined #openstack21:00
*** jkoelker has quit IRC21:01
uvirtbotNew bug: #1037786 in nova "nova admin based on hard-coded 'admin' role" [Critical,Triaged] https://launchpad.net/bugs/103778621:01
*** rnorwood has joined #openstack21:03
*** maurosr has quit IRC21:04
*** ejat has quit IRC21:04
*** desai has quit IRC21:06
*** desai has joined #openstack21:07
*** hggdh has quit IRC21:07
*** natea has quit IRC21:08
*** natea_ has joined #openstack21:08
*** noob has quit IRC21:08
*** hggdh has joined #openstack21:09
uvirtbotNew bug: #1037793 in glance "v2 anonymous access fails due to keystone middleware" [Critical,In progress] https://launchpad.net/bugs/103779321:10
*** h0cin has quit IRC21:12
*** s0mik has quit IRC21:15
*** gallth has joined #openstack21:17
*** Guest14360 has quit IRC21:17
*** dieterdemeyer has quit IRC21:18
*** Madkiss has quit IRC21:18
*** cw has quit IRC21:18
*** cw has joined #openstack21:18
*** tgall_foo has quit IRC21:18
*** dieterdemeyer has joined #openstack21:19
*** slowe has quit IRC21:21
*** wijet has quit IRC21:23
*** gallth is now known as tgall_foo21:23
*** tgall_foo has quit IRC21:23
*** tgall_foo has joined #openstack21:23
*** EmilienM has quit IRC21:24
*** Madkiss has joined #openstack21:24
*** Madkiss has quit IRC21:24
*** Madkiss has joined #openstack21:24
*** k0rupted_ has quit IRC21:25
*** chasmo has quit IRC21:27
*** BlackMaria has quit IRC21:27
*** dubsquared has quit IRC21:28
*** chasmo has joined #openstack21:29
*** dubsquared has joined #openstack21:29
*** thovden has quit IRC21:29
*** cloudvirt has quit IRC21:30
*** k0rupted has joined #openstack21:30
*** vitiho_ has joined #openstack21:31
*** vitiho has quit IRC21:31
*** cloudvirt has joined #openstack21:31
*** robbiew has quit IRC21:32
*** blamar has quit IRC21:34
*** k0rupted has quit IRC21:36
*** TartanTexas has joined #openstack21:36
*** mtreinish has quit IRC21:39
*** blamar has joined #openstack21:39
*** natea_ has quit IRC21:40
*** TartanTexas has quit IRC21:41
*** k0rupted has joined #openstack21:42
*** s0mik has joined #openstack21:44
*** dolphm has joined #openstack21:45
*** cloudvirt has quit IRC21:46
*** ryanpetrello has quit IRC21:46
*** dhellmann has quit IRC21:47
*** markmcclain has quit IRC21:48
*** dolphm has quit IRC21:49
*** lloydde_ has quit IRC21:52
*** MarcMorata has quit IRC21:54
*** tmichael has quit IRC21:54
uvirtbotNew bug: #1037809 in nova "get_vnc_console returns 500 error if called before host is assigned" [Undecided,New] https://launchpad.net/bugs/103780921:56
*** rnorwood has quit IRC21:58
*** qazwsx|2 has quit IRC21:58
*** imsplitbit has quit IRC21:59
*** mutex has left #openstack22:00
*** tgall_foo has quit IRC22:01
*** mrjazzcat has quit IRC22:02
*** maoy has quit IRC22:06
*** marrusl has quit IRC22:07
*** rnorwood has joined #openstack22:08
*** kbringard has quit IRC22:08
*** dubsquared has quit IRC22:09
*** dendrobates is now known as dendro-afk22:09
*** colon_D has quit IRC22:09
*** colonD has joined #openstack22:09
*** dachary has quit IRC22:11
*** dendro-afk is now known as dendrobates22:12
*** dprince has quit IRC22:14
*** natea has joined #openstack22:14
*** lloydde has joined #openstack22:15
*** manisht has left #openstack22:15
*** mrjazzcat has joined #openstack22:15
*** msinhore has quit IRC22:15
*** mrjazzcat has joined #openstack22:15
*** dspano has quit IRC22:16
*** msinhore has joined #openstack22:17
*** ev0ldave has quit IRC22:17
*** aliguori has quit IRC22:17
*** rackerjoe has left #openstack22:18
*** jog0 has joined #openstack22:19
*** samkottler is now known as samkottler|afk22:19
*** kindaops_ has joined #openstack22:21
*** jcannava has quit IRC22:21
*** kindaopsdevy has quit IRC22:21
*** scooterS has joined #openstack22:21
*** kindaops_ is now known as kindaopsdevy22:21
*** rnorwood has quit IRC22:25
uvirtbotNew bug: #1037815 in quantum "Fix Quantum Rootwrap" [High,In progress] https://launchpad.net/bugs/103781522:26
*** MrRoot has joined #openstack22:27
*** blazed has quit IRC22:29
*** lazyshot has quit IRC22:35
*** ASau` has joined #openstack22:36
*** Domin has quit IRC22:36
*** TartanTexas has joined #openstack22:37
*** capricorn_1 has quit IRC22:37
*** renuka has joined #openstack22:37
*** maurosr has joined #openstack22:37
*** msinhore has quit IRC22:37
*** capricorn_1 has joined #openstack22:37
*** hggdh has quit IRC22:37
*** ASau has quit IRC22:37
*** Domin has joined #openstack22:38
*** maurosr has quit IRC22:41
*** TartanTexas has quit IRC22:42
*** rnirmal has quit IRC22:43
*** adjohn has joined #openstack22:44
*** kpavel has quit IRC22:44
*** clopez has quit IRC22:45
*** blamar has quit IRC22:45
*** mattray has quit IRC22:47
*** steveb___ has joined #openstack22:51
*** lifeless has quit IRC22:51
*** warik has left #openstack22:53
*** lifeless has joined #openstack22:53
*** maurosr has joined #openstack22:55
*** kindaopsdevy has quit IRC23:00
*** maurosr has quit IRC23:00
*** ryanpetrello has joined #openstack23:00
*** eskp has joined #openstack23:08
eskphi23:08
eskpany wiki admins around?23:08
*** PiotrSikora has quit IRC23:10
*** ryanpetrello has quit IRC23:10
uvirtbotNew bug: #1037828 in nova "Simple Scheduler is Deprecated but doesn't raise Deprecated warning" [Undecided,New] https://launchpad.net/bugs/103782823:11
uvirtbotNew bug: #1037829 in nova "Simple Scheduler is Deprecated but doesn't raise Deprecated warning" [Undecided,In progress] https://launchpad.net/bugs/103782923:11
*** PiotrSikora has joined #openstack23:11
*** hggdh has joined #openstack23:12
*** lloydde has quit IRC23:13
*** miclorb has joined #openstack23:16
eskpi'm not subscribed to a page but i'm still receiving notifications23:16
eskpi may have subscribed in the past not sure23:16
eskpbut i don't even have an email address associated with my current account23:17
*** tan has quit IRC23:17
*** tan has joined #openstack23:18
*** tomoe has joined #openstack23:18
*** natea_ has joined #openstack23:22
*** ewindisch has quit IRC23:23
*** hemna has quit IRC23:25
*** samkottler|afk is now known as samkottler23:25
*** natea has quit IRC23:26
*** eglynn has quit IRC23:26
*** tan has quit IRC23:29
*** tan has joined #openstack23:30
*** bsza has joined #openstack23:33
comptonaI'm getting the following error when I try to start nova-compute: "no such option: server"23:33
comptonarunning on centos 6.2, using the puppet openstack module23:34
*** tan has quit IRC23:34
comptonaI can't find anything googling around; anybody have an idea what might be causing this?23:34
*** tan has joined #openstack23:34
*** TartanTexas has joined #openstack23:37
*** bsza has quit IRC23:38
*** rnorwood has joined #openstack23:40
*** TartanTexas has quit IRC23:42
*** scooterS has quit IRC23:42
*** a__ has joined #openstack23:44
*** vitiho_ has quit IRC23:44
*** vipuls has quit IRC23:44
*** tan has quit IRC23:44
*** tan has joined #openstack23:45
uvirtbotNew bug: #1037835 in nova "Unit Tests fail on OS X (readlink -nm)" [Undecided,New] https://launchpad.net/bugs/103783523:45
*** e1mer has joined #openstack23:55
*** johnpostlethwait has quit IRC23:56
*** jkoelker has joined #openstack23:58

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