Wednesday, 2015-02-04

*** yamamoto has joined #openstack00:00
qhartmanwell, the current config relies on IPs, so even with a balancer in place if the API host is telling clients to hit IPs that aren't on their subnet they've get default routed, and round-binned since it's for a private network that's not directly connected to the router00:00
*** raminoid has left #openstack00:00
qhartmanThe api host was originally setup on an admin network for the openstack nodes, assuming they would be the only ones hitting it00:00
qhartmanor at least, only hosts on that network would be hitting it.00:00
*** Zack_Deee has joined #openstack00:00
*** okrieg has joined #openstack00:01
*** cptwease_ has quit IRC00:01
*** digimonde has joined #openstack00:01
*** gargola has quit IRC00:01
*** yamamoto has quit IRC00:01
*** yamamoto has joined #openstack00:02
qhartmanIf there's no magic "do the right thing" config for nova-api, I'll just get started on my DNS-based solution. I was just hoping for a "don't do all that work, here's the easy way" solution.00:02
*** shashankhegde has quit IRC00:03
*** morazi has quit IRC00:03
*** _Patang has quit IRC00:03
*** Patang has joined #openstack00:03
*** antons has quit IRC00:04
*** jerematic has quit IRC00:05
*** a_le_ has quit IRC00:05
*** rbak__ has quit IRC00:05
Sam-I-Amendpoints should probably use hostnames00:05
Sam-I-Amthings that are easier to change references for later00:05
qhartmanright, everything in the docs suggested ips, so that's what I ran with, I didn't want to mess with hosts files00:06
qhartmanalthough, it looks like the my_ip config might bugger the whole thing00:06
qhartman:-\00:06
Sam-I-Amwhich docs suggested ips?00:06
qhartmanthe ubuntu isntall docs for icehouse00:06
Sam-I-Amthere are some things that are ip-based, because the box has to bind to an interface00:07
*** annashen has joined #openstack00:07
qhartmanright, it looks like everything is binding to 0.0.0.0 thought00:07
*** KaZeR has quit IRC00:07
qhartmanit's not clear what my_ip does though, what responses it affects00:07
*** markvoelker has quit IRC00:07
*** KaZeR has joined #openstack00:07
*** gashcrumb has quit IRC00:07
*** JuanDRay has quit IRC00:08
*** JuanDRay_ has quit IRC00:08
*** Patang has quit IRC00:09
*** antons has joined #openstack00:10
*** VW has joined #openstack00:11
*** dmsimard is now known as dmsimard_away00:11
*** VW has quit IRC00:11
Sam-I-Ami believe its the source ip used for certain requests (which in turn chooses the correct interface)00:11
Sam-I-Amgotta run, bbl00:12
qhartmanthx00:12
*** VW has joined #openstack00:12
*** RicardoSSP has quit IRC00:14
*** abhirc has joined #openstack00:15
*** dangers is now known as dangers_away00:15
*** ncerny_ has quit IRC00:15
qhartmanhm, I've changed the nova.conf stuff to be the other IP address (10.10.10.13)and restart nova-api, and the response I'm getting back is still the other one (192.168.0.1)00:16
*** jasondotstar has joined #openstack00:16
qhartmanmaybe keystone needs arestart too....00:16
qhartmannope, still old ip00:16
qhartman:-\00:16
*** tserong_ is now known as tserong00:17
*** yamamoto has quit IRC00:17
qhartmandoes nova api store this stuff in mysql or something after the initial startup? It seems weird that it's not getting the new config00:18
*** ManikM has quit IRC00:18
swinnqhartman: take a look at the keystone catalog, it lists all of the endpoints that are configured00:18
*** ManikM has joined #openstack00:18
swinnqhartman: the concepts of public, internal and admin are (traditionally) tied to trust boundaries, would often use different hostnames, and frequently use different network interfaces00:19
swinnbut for a reference deployment, it can all be one interface00:19
swinnwhen reading the docs, remember most openstack deployments run in a laptop00:20
swinn:p00:20
qhartmanswinn, right, which is why I was surprised to see incorrect in the ips I get in the response back when connecting with fog from the other interface00:20
qhartmanheh00:20
*** GeoKM has joined #openstack00:20
*** stanchan has quit IRC00:20
dmelladowell, you can tie them to several vlans if you want, even if you only have one interface :P00:21
*** enrique has quit IRC00:21
qhartmanso yeah, for backstory I'm fog (the ruby library) to write a management abstraction for our AWS and Openstack stuff00:22
qhartmanand everything works fine if I run it on the management network for openstack00:22
qhartmanbut then I can't reach AWS00:22
swinnqhartman: fog is traditionally going to be a public consumer so you would expect it to target the public api endpoints00:22
*** dims has quit IRC00:22
qhartmanright, which is why I expected it to work on the other network that the API host is on00:23
*** baker has joined #openstack00:23
*** dims has joined #openstack00:23
qhartmanbut the responses all refer to the other IP, and presumably, as a result all my requests timeout00:23
qhartmanafter I auth00:23
swinnI would usually run those external to the cloud infra00:23
qhartmanyeah, I only put in in there for testing00:23
qhartmanand to prove that it wasn't user error00:24
swinnyour first auth will always be to keystone’s public api endpoint (or whatever you target in your env vars)00:24
swinnit will return a catalog and the default endpoint most clients will use is the public endpoint00:24
swinnyou should be able to reach the IP which that endpoint resolves to from outside the cloud00:24
*** gregmark has quit IRC00:24
*** martins-afk is now known as martinst00:24
swinnI’d say it should probably be a routable address on your network with layer 2 adjacency to the public api interface on the controller. This could be behind a firewall or application load balancer that does NAT.00:26
*** gargola has joined #openstack00:27
*** Syed has quit IRC00:27
qhartmanso, let's step back a sec00:27
*** KaZeR has quit IRC00:27
qhartmanA seemingly simple solution to this would be to have the config all be name based and then have the DNS resolve to the correct ip based on which network the host naming the request is in.00:28
*** KaZeR has joined #openstack00:28
*** Bluedusk has quit IRC00:28
qhartmanand that's great, I'd love to do that, but in the experiment I just did it seems that nova-api isn't honoring the changes I'm making in nova.conf after I restart it.00:28
qhartmanThe response I get back after authentication still has all the ip-based information in it.00:29
swinnEven though you changed the binding interface, you need to update the catalog00:29
swinnkeystone endpoint-update00:29
qhartmanaha00:29
qhartmanok00:29
*** gigawhat has quit IRC00:30
swinner, no update00:30
swinndelete and create00:30
qhartmanand when you say "binding interface" you don't literally mean the interface/ip the service binds to, do you? Mine are all listening on every ip (0.0.0.0) and I don't want that behavior to change.00:30
swinnyeah that’s fine, you can keep that config00:31
*** rahulrrixe has quit IRC00:31
swinnbut in the keystone catalog, where I suspect you previously used the same IP for the public, internal and admin url, you want to be sure to use the right IP (or hostname) for the interface related to each trust domain00:31
qhartmanok, so can I define multiple catalogs? That is another option that would probably be simpler than the split-horizon DNS setup I have in mind00:32
swinnso when you did keystone endpoint-create for the nova service, I’m assuming —publicurl, —adminurl, and —internalurl all used the same value?00:32
*** ChrisGibbs has quit IRC00:32
qhartmanprobably, it's been about a year since I set it up00:32
qhartmanand at the time I would have just been following the ubuntu install guides.00:32
swinnyeah if you want them to listen on different interfaces, specify that in the keystone endpoint-create step for the service00:32
*** KaZeR has quit IRC00:32
*** primechu_ has quit IRC00:33
qhartmaninteresting, so it almost sounds like I don't really need to do anything with the nova-api config, but rather change the keystone catalog stuff00:33
swinnprobably need to do keystone endpoint-list, delete the endpoint for nova, then recreate it with the right IPs00:33
qhartmancool00:33
qhartmanI have some reading / poking to do00:33
swinneasy to tell, checkout the keystone catalog and see if the public IP appears for the compute service listed00:33
qhartmanthanks for the pointers00:34
swinnwelcome00:34
*** otter768 has joined #openstack00:34
*** abhirc has quit IRC00:34
qhartmanah yeah, looks like I just need to change the public URL stuff in the keystone catalog and it will do what I want00:35
*** cemason has joined #openstack00:37
*** otter768 has quit IRC00:38
*** Barker has joined #openstack00:40
*** KaZeR has joined #openstack00:40
*** chenleji has quit IRC00:40
*** jasondotstar has quit IRC00:41
*** jaank has quit IRC00:43
*** nitti has quit IRC00:44
*** nitti has joined #openstack00:45
*** funkyHat has quit IRC00:45
*** okrieg has quit IRC00:45
*** signed8bit is now known as signed8bit_ZZZzz00:46
*** funkyHat has joined #openstack00:46
*** a_le has joined #openstack00:47
*** pm90_ has quit IRC00:48
*** abhirc has joined #openstack00:50
*** kebray has quit IRC00:50
*** Lancien has quit IRC00:52
*** markvoelker has joined #openstack00:52
*** yamamoto has joined #openstack00:53
*** wastrel has quit IRC00:53
*** annashen has quit IRC00:53
*** qhartman has quit IRC00:54
*** yamamoto_ has joined #openstack00:55
*** daniel3_ has quit IRC00:57
*** cemason has quit IRC00:57
*** yamamoto has quit IRC00:57
*** SweetyDumling has quit IRC00:57
*** markvoelker has quit IRC01:00
*** dtrainor has quit IRC01:01
*** primechuck has joined #openstack01:02
*** ghostpl has quit IRC01:04
*** jerematic has joined #openstack01:05
*** shashankhegde has joined #openstack01:06
*** jaank has joined #openstack01:07
*** gildub has quit IRC01:07
*** abhirc has quit IRC01:08
*** VW has quit IRC01:09
*** VW has joined #openstack01:09
*** jpf has quit IRC01:09
*** promulo__ has joined #openstack01:09
*** jerematic has quit IRC01:10
*** abhirc has joined #openstack01:10
*** mohitsharma has joined #openstack01:12
*** signed8bit_ZZZzz is now known as signed8bit01:13
*** signed8bit is now known as signed8bit_ZZZzz01:13
*** signed8bit_ZZZzz is now known as signed8bit01:13
*** promulo has quit IRC01:13
*** digimonde has quit IRC01:15
*** kebray has joined #openstack01:15
*** kebray has quit IRC01:15
*** abhirc has quit IRC01:15
*** tsekiyam_ has joined #openstack01:16
*** shawnlower has quit IRC01:18
*** hdd has quit IRC01:18
*** jpomero has quit IRC01:18
*** EricGonczer_ has quit IRC01:18
*** markvoelker has joined #openstack01:19
*** Rivera has quit IRC01:19
*** mtanino has quit IRC01:19
*** achanda_ has joined #openstack01:19
*** tsekiyama has quit IRC01:20
*** yaguang has joined #openstack01:20
*** noslzzp has quit IRC01:20
*** tsekiyam_ has quit IRC01:21
*** andreaturli has quit IRC01:21
*** rmoe has quit IRC01:21
*** achanda has quit IRC01:22
*** sushils has quit IRC01:24
*** achanda_ has quit IRC01:24
*** jasondotstar has joined #openstack01:24
*** cody-somerville has quit IRC01:25
*** antons has quit IRC01:26
*** shayneburgess has quit IRC01:27
*** gyee has quit IRC01:27
*** hemna is now known as hemnafk01:28
*** _cjones_ has quit IRC01:29
*** MentalRay has joined #openstack01:29
*** _cjones_ has joined #openstack01:29
*** wanjing has quit IRC01:30
*** wanjing has joined #openstack01:30
*** jasonsb has quit IRC01:31
*** danman has quit IRC01:31
*** mli has joined #openstack01:32
*** rossk has quit IRC01:32
*** RicardoSSP has joined #openstack01:33
*** RicardoSSP has joined #openstack01:33
*** mikeoutland has quit IRC01:33
*** RScottCoyle has joined #openstack01:33
*** dims has quit IRC01:33
*** RScottCoyle has quit IRC01:34
*** _cjones_ has quit IRC01:34
*** RScottCoyle has joined #openstack01:34
*** wanjing has quit IRC01:34
*** coasterz has joined #openstack01:36
*** MilesDenver has quit IRC01:36
*** Lee1092 has joined #openstack01:37
*** rmoe has joined #openstack01:37
*** dims has joined #openstack01:38
*** Patang has joined #openstack01:40
*** okrieg has joined #openstack01:40
*** dims has quit IRC01:42
*** dims has joined #openstack01:42
*** VW has quit IRC01:42
*** phiwo has quit IRC01:42
*** gildub has joined #openstack01:42
*** lucendio has quit IRC01:43
*** VW has joined #openstack01:43
*** weshay has quit IRC01:43
*** phiwo has joined #openstack01:43
*** swinn has quit IRC01:43
*** vicky_ has joined #openstack01:43
*** VW has quit IRC01:44
*** anderbubble has joined #openstack01:45
*** abhirc has joined #openstack01:45
*** swinn has joined #openstack01:46
*** popw has joined #openstack01:46
*** h6w has joined #openstack01:47
h6wI've changed a network card in one of my nodes.  How do I tell mcollective that things have changed?   If I rerun the agent I just get "mcollective is up to date with identity = 4".01:48
*** melwitt has quit IRC01:48
*** Bluedusk has joined #openstack01:48
*** nelsnelson has quit IRC01:49
*** jaank has quit IRC01:49
*** jasondotstar has quit IRC01:50
*** leeantho has quit IRC01:50
*** a_le has quit IRC01:51
*** nelsnelson has joined #openstack01:51
*** a_le has joined #openstack01:51
*** Marga_ has quit IRC01:51
*** thumpba has quit IRC01:51
*** gfidente has quit IRC01:51
*** Marga_ has joined #openstack01:52
*** etacsufbo has joined #openstack01:52
*** sputnik13 has quit IRC01:52
*** Zack_Deee has quit IRC01:52
*** okrieg1 has quit IRC01:53
*** Zack_Deee has joined #openstack01:54
*** side_control has quit IRC01:55
*** a_le has quit IRC01:56
*** side_control has joined #openstack01:56
*** damadhat has quit IRC01:56
*** thumpba has joined #openstack01:57
*** alop has quit IRC01:57
*** dreamhostsimon has joined #openstack01:59
*** Zack_Deee has quit IRC02:00
*** thumpba has quit IRC02:01
*** yamamoto_ has quit IRC02:01
*** baker has quit IRC02:02
*** fnaval has joined #openstack02:02
*** badiane_ka has quit IRC02:03
*** addr2data has joined #openstack02:04
*** warik has quit IRC02:04
*** addr2data has quit IRC02:05
*** Zack_Deee has joined #openstack02:05
*** yamamoto_ has joined #openstack02:06
*** Marga_ has quit IRC02:07
*** thrash is now known as thrash|g0ne02:08
*** EricGonczer_ has joined #openstack02:08
*** SweetyDumling has joined #openstack02:09
*** baker has joined #openstack02:11
*** patrickeast has quit IRC02:11
*** rwsu is now known as rwsu-afk02:11
*** mberlin1 has joined #openstack02:11
*** ngoracke has joined #openstack02:12
*** erkules_ has joined #openstack02:12
*** gashcrumb has joined #openstack02:13
*** j_t has joined #openstack02:13
*** mberlin has quit IRC02:13
j_tWhat's a good way to automate say a cluster being deployed, say a 5 node redis cluster. I have puppet code to deploy the redis node once I'm on the box. It reads some yaml file, and the yaml file say describes if it should be a slave/master, and some of it's config settings etc.02:13
j_tThough I want a way to say, provision VMs through openstack, and roll out a cluster, and run puppet on the cluster. in some automated way02:13
j_tAre there frameworks for this? or just build your own?02:14
*** sputnik13 has joined #openstack02:14
*** joeg has quit IRC02:14
*** jareddlc has quit IRC02:14
*** mfalatic has quit IRC02:14
*** PingKuo has joined #openstack02:14
*** cody-somerville has joined #openstack02:15
*** jerematic has joined #openstack02:15
*** erkules has quit IRC02:16
*** m3h has joined #openstack02:17
*** VW has joined #openstack02:18
*** cpg is now known as cpg|away02:18
*** Putns has quit IRC02:18
*** ManikM has quit IRC02:18
*** ManikM has joined #openstack02:18
*** jerematic has quit IRC02:19
*** angdraug has quit IRC02:20
*** stevage has joined #openstack02:20
*** cemason has joined #openstack02:20
*** appprod0 has joined #openstack02:22
*** shashankhegde has quit IRC02:22
*** cody-somerville has quit IRC02:24
*** swinn has quit IRC02:25
*** vlad_sta- has quit IRC02:25
*** jckasper has joined #openstack02:26
*** tsekiyama has joined #openstack02:27
*** vlad_starkov has joined #openstack02:27
*** okrieg has quit IRC02:29
*** PaulCapestany has quit IRC02:29
*** salv-orlando has quit IRC02:29
*** EricGonczer_ has quit IRC02:31
*** tsekiyama has quit IRC02:31
*** yog_ has quit IRC02:31
*** otter768 has joined #openstack02:33
*** diegows has quit IRC02:33
*** galstrom_zzz is now known as galstrom02:33
*** kapil__ has joined #openstack02:35
*** dims has quit IRC02:35
*** dims has joined #openstack02:36
*** abhirc has quit IRC02:36
*** badiane_ka has joined #openstack02:37
*** kupo24z has quit IRC02:41
*** cemason has quit IRC02:41
*** RicardoSSP has quit IRC02:42
*** rmcall has joined #openstack02:42
*** VW has quit IRC02:42
*** VW has joined #openstack02:43
*** yog_ has joined #openstack02:45
*** jasonsb has joined #openstack02:46
*** rushiagr_away is now known as rushiagr02:48
*** dreamhostsimon has quit IRC02:49
*** dims has quit IRC02:51
*** cemason has joined #openstack02:52
*** RScottCoyle has quit IRC02:54
*** Xurong has quit IRC02:56
*** stanchan has joined #openstack02:57
*** thumpba has joined #openstack02:58
*** Xurong has joined #openstack03:00
*** spzala has quit IRC03:01
*** thumpba has quit IRC03:02
*** pm90_ has joined #openstack03:03
*** eghobo has quit IRC03:04
*** blackboxsw has quit IRC03:06
*** yuntong has joined #openstack03:09
*** antons has joined #openstack03:09
*** okrieg has joined #openstack03:11
*** sgran has quit IRC03:11
*** SweetyDumling has quit IRC03:12
*** cemason has quit IRC03:12
*** hemna_ has joined #openstack03:14
*** cdub has joined #openstack03:15
*** Joufflu has joined #openstack03:15
*** hemna_ is now known as hemna03:17
*** yog_ has quit IRC03:18
*** rushiagr is now known as rushiagr_away03:19
*** blackboxsw has joined #openstack03:19
*** thcipriani has joined #openstack03:19
*** Ananci has joined #openstack03:23
*** stevemar has quit IRC03:23
*** stevemar has joined #openstack03:24
*** bdpayne has quit IRC03:25
*** gli has joined #openstack03:25
*** ajc_ has joined #openstack03:25
*** cpschult has joined #openstack03:27
*** signed8bit has quit IRC03:28
*** harlowja is now known as harlowja_away03:28
*** annashen has joined #openstack03:29
*** Ephur has quit IRC03:30
*** ToMiles has joined #openstack03:32
*** anderbubble has quit IRC03:32
*** yuntong has quit IRC03:33
*** h6w has quit IRC03:33
*** mrjazzcat has quit IRC03:34
*** hdd has joined #openstack03:34
*** yog_ has joined #openstack03:34
*** Barker has quit IRC03:34
*** mattgriffin has quit IRC03:35
*** ToMiles has quit IRC03:37
*** sgran has joined #openstack03:37
*** FunnyLookinHat has quit IRC03:39
*** FakeNetEng has quit IRC03:39
*** deepthi has joined #openstack03:39
*** mattgriffin has joined #openstack03:40
*** thcipriani has quit IRC03:41
*** kbrierly has quit IRC03:41
*** kbrierly has joined #openstack03:42
*** Zack_Deee has quit IRC03:44
*** rushiagr_away is now known as rushiagr03:45
*** Zack_Deee has joined #openstack03:46
*** Zack_Deee has quit IRC03:47
*** SysadminTurncoat has joined #openstack03:50
*** KaZeR has quit IRC03:51
*** Zack_Deee has joined #openstack03:51
*** KaZeR has joined #openstack03:51
*** MentalRay has quit IRC03:54
*** Zack_Deee has quit IRC03:54
*** rdas has joined #openstack03:54
*** JRobinson__ is now known as JRobinson__afk03:55
*** KaZeR has quit IRC03:56
*** mitz_ has quit IRC03:56
*** baker has quit IRC03:56
*** mitz has joined #openstack03:56
*** a_le has joined #openstack03:56
*** gashcrumb has quit IRC03:57
*** sgran has quit IRC03:58
*** PaulCapestany has joined #openstack03:58
*** sgran has joined #openstack03:58
*** gashcrumb has joined #openstack03:59
*** dooshtuRabbit has joined #openstack04:02
*** jerematic has joined #openstack04:04
*** Zack_Deee has joined #openstack04:04
*** appprod0 has quit IRC04:04
*** cemason has joined #openstack04:05
*** saltlake has joined #openstack04:05
*** sushils has joined #openstack04:05
*** SysadminTurncoat has quit IRC04:05
*** m3h has quit IRC04:06
*** gashcrumb has quit IRC04:07
*** jerematic has quit IRC04:08
*** gashcrumb has joined #openstack04:09
*** gashcrumb has joined #openstack04:09
*** mmdurrant has quit IRC04:09
*** anilvenkata has joined #openstack04:12
*** annashen has quit IRC04:12
*** neha has joined #openstack04:13
*** okrieg has quit IRC04:13
*** annashen has joined #openstack04:15
*** okrieg has joined #openstack04:15
*** SysadminTurncoat has joined #openstack04:16
*** ManikM has quit IRC04:18
*** ManikM has joined #openstack04:18
*** masco has joined #openstack04:18
*** wanjing has joined #openstack04:19
*** sarob has joined #openstack04:19
larsksj_t: You have pretty much just described Heat (https://wiki.openstack.org/wiki/Heat)04:20
*** achanda has joined #openstack04:20
*** anilvenkata has quit IRC04:21
*** koolhead17 has quit IRC04:21
*** achanda has quit IRC04:22
*** achanda has joined #openstack04:22
*** ghostpl has joined #openstack04:24
*** galstrom is now known as galstrom_zzz04:25
*** rdaly2 has joined #openstack04:25
*** rdaly2 has quit IRC04:25
*** rdaly2 has joined #openstack04:26
*** julim has quit IRC04:27
*** ghostpl has quit IRC04:28
*** okrieg has quit IRC04:29
*** sushils has quit IRC04:30
*** _cjones_ has joined #openstack04:30
*** MrRoot has quit IRC04:31
*** annashen has quit IRC04:31
*** _cjones_ has quit IRC04:32
*** _cjones_ has joined #openstack04:33
*** daMaestro has joined #openstack04:35
*** sayan has joined #openstack04:35
*** cpg|away is now known as cpg04:36
*** Poornima has joined #openstack04:36
*** hdd has quit IRC04:37
*** zerick_ is now known as zerick04:37
*** _cjones_ has quit IRC04:37
*** fnaval has quit IRC04:38
*** MrRoot has joined #openstack04:40
*** lgao has quit IRC04:43
*** cpschult has quit IRC04:44
*** lgao has joined #openstack04:46
*** thumpba has joined #openstack04:46
*** zerick has left #openstack04:50
*** michaelneale has joined #openstack04:50
*** thumpba has quit IRC04:51
*** dooshtuRabbit1 has joined #openstack04:51
*** yaguang has quit IRC04:52
*** yuntong has joined #openstack04:52
*** masco has quit IRC04:53
*** kebray has joined #openstack04:53
*** dooshtuRabbit has quit IRC04:55
*** dooshtuRabbit has joined #openstack04:55
*** dooshtuRabbit1 has quit IRC04:56
*** changbl has joined #openstack04:57
*** kebray has quit IRC04:57
*** otter768 has quit IRC04:59
*** eghobo has joined #openstack04:59
*** nkhare has joined #openstack04:59
*** pm90_ has quit IRC05:00
*** dooshtuRabbit has quit IRC05:00
*** otter768 has joined #openstack05:01
*** dooshtuRabbit has joined #openstack05:01
*** dooshtuRabbit has quit IRC05:01
*** kebray has joined #openstack05:03
*** dooshtuRabbit has joined #openstack05:04
*** mwichmann has quit IRC05:08
*** annashen has joined #openstack05:09
*** sayan has quit IRC05:10
*** otter768 has quit IRC05:10
*** achanda has quit IRC05:11
*** rmcall has quit IRC05:12
*** jagee has quit IRC05:12
*** ajo has joined #openstack05:12
*** hdd has joined #openstack05:17
*** a_le has quit IRC05:18
*** a_le has joined #openstack05:19
*** pravin_s has joined #openstack05:19
*** harlowja_away has quit IRC05:19
*** gashcrumb has quit IRC05:21
*** stevage has quit IRC05:23
j_tlarsks: Thanks!05:24
*** ivar-laz_ has joined #openstack05:24
*** pravin_s is now known as pravins05:24
j_tlarsks: Is there an openstack janitor system. to find unused VMs, email the owner.. give notice.. then eventually delete that vm?05:24
j_tor anyone who knows of a project05:24
*** cemason has quit IRC05:25
*** pm90_ has joined #openstack05:26
*** bradjones has quit IRC05:27
*** achanda has joined #openstack05:27
*** ivar-lazzaro has quit IRC05:27
*** yamamot__ has joined #openstack05:27
*** Phibs has joined #openstack05:28
*** ivar-laz_ has quit IRC05:28
Phibsare there any existing tools to clean up old/unused cloud instances with notification to the owner ?05:28
*** bradjones has joined #openstack05:31
j_tPhibs: psh, I just asked that. don't steal my thunder05:31
*** yamamoto_ has quit IRC05:31
Phibsdayum :)05:31
*** yaguang has joined #openstack05:31
*** ToMiles has joined #openstack05:32
*** pradipta_away is now known as pradipta05:35
*** ToMiles has quit IRC05:37
*** sarob has quit IRC05:40
*** mtreinish has quit IRC05:40
*** linforpros has joined #openstack05:42
*** eghobo has quit IRC05:44
*** thumpba has joined #openstack05:47
*** ivar-lazzaro has joined #openstack05:49
SamYaplej_t: whats your definition of "unused VMs"05:49
linforprosnova-compute state is down (status enabled). It is an RDO installed on one computer. docker driver enabled. Network probably unconfigured. Question: Should instances faile in such a state?05:50
SamYaplelinforpros: the schduler will fail to find a valid host if nova-compute is down05:50
j_tSamYaple: some thresholds for various things, no network activity, no non-default processes, etc05:51
j_tSamYaple:  perhaps set an expiration date, and send out an email to the owner of the VM05:51
*** JRobinson__afk is now known as JRobinson__05:51
j_tgive them 90 days or something05:51
SamYaplej_t: you would have to implement that outside openstack. shouldn't be too hard. external db and api calls05:51
j_tI assume a lot of these variables/thresholds can be changed, to fit arbitrary definitions of 'unused VMs'05:51
*** thumpba has quit IRC05:51
j_tSamYaple: Why not have a project in openstack?05:51
*** dims has joined #openstack05:52
SamYaplej_t: you are welcome to create one, but there isn't one currently05:52
*** jerematic has joined #openstack05:53
*** SweetyDumling has joined #openstack05:53
*** Marga_ has joined #openstack05:53
*** Marga_ has quit IRC05:53
*** Marga_ has joined #openstack05:54
*** nshaikh has joined #openstack05:55
*** hemna has quit IRC05:55
*** mtreinish has joined #openstack05:56
j_tSamYaple: Any idea who I would talk to / coordinate with to increase my chances of it being included in openstack?05:56
*** anilvenkata has joined #openstack05:57
*** dims has quit IRC05:57
*** sushils has joined #openstack05:57
*** jerematic has quit IRC05:57
*** coolsvap_ is now known as coolsvap05:57
j_tI know we've contributed various things, so requirements with unit tests/integration tests/gerrit/build system (zuul) stuff I'm not worried about. it's more preplanning/architecture I'd liek to talk to someone about.05:57
SamYaplej_t: if you build it they will come. If its decent you can get it included in stackforge repo, which is the repo for all supporting projects05:57
SamYapleyou probably wont see if be an official openstack project, but thats normal. those are few05:58
*** MarkBaker has joined #openstack05:59
*** annashen has quit IRC05:59
*** achanda has quit IRC06:00
*** GeoKM has quit IRC06:00
*** annashen has joined #openstack06:01
*** dooshtuRabbit has quit IRC06:03
linforprosHello, nova-compute.service dous not give me reasons why it failed. I am trying to read journal -x -u openstack-nova-compute but the info is trivial. How to get to know more? Thanks.06:03
SamYaplelinforpros: as in it fails to start, or instances fail to schedule?06:04
*** achanda has joined #openstack06:04
*** nihilifer has joined #openstack06:05
*** MrRoot has quit IRC06:06
*** abehl has joined #openstack06:06
*** MrRoot has joined #openstack06:08
*** markvoelker has quit IRC06:08
*** nlevinki has joined #openstack06:13
*** MarkBaker has quit IRC06:13
*** achanda has quit IRC06:13
linforprosnova-compute service is down and I cannot start it. I found /var/log/nova, trying to figure out why.06:13
*** vikram has joined #openstack06:14
*** nlevinki has quit IRC06:14
*** saltlake has quit IRC06:15
linforprosIt is in failed state.06:15
*** nlevinki has joined #openstack06:15
SamYapleyou can turn on debug and verbose if you are not getting engouh information linforpros06:15
*** jobewan has quit IRC06:15
SamYaplealternatively you can run the binary directly with the appropriate params and see what it spits out06:16
linforprosI am reading man page for systemctl how to turn on debug for a service.06:16
SamYaplelinforpros: I was talking about the nova.conf06:16
*** k4n0 has joined #openstack06:17
*** annashen has quit IRC06:17
*** enykeev has joined #openstack06:17
*** mrmartin has joined #openstack06:17
*** masco has joined #openstack06:18
*** ManikM has quit IRC06:18
*** ManikM has joined #openstack06:18
*** hdd has quit IRC06:19
linforprosI turned the debug=True, restarted nova-compute.service and het a fully blown message:  Failed to start OpenStack Nova Compute Server06:20
vikrami have a question about devstack06:20
vikramcan anyone please help me?06:20
j_tvikram: surely it's impossible to help you if you don't tell us your question.06:20
vikram:)06:20
SamYaplej_t: I may be psychic06:21
vikrami will post my question06:21
*** PingKuo has quit IRC06:21
vikramI basically want to know what is the best way to use devstack if i my pc gets switched-off06:21
j_tvikram: It's people like you that cause channel administrators to put in the topic, "don't ask to ask, just ask!"06:21
*** ivar-laz_ has joined #openstack06:21
vikramok06:22
SamYaplecalm down there j_t06:22
vikrami mean which devstack script to use ..06:22
SamYaplevikram: you are looking for persistent vms?06:22
*** vigneshvar has joined #openstack06:22
SamYapleif not you can just rebuild it each time06:22
vikrami use ./stack.sh to get the env.. and then if the pc reboots/restarts what script i should use06:23
linforprosSamYaple: I found the following: ImportError: No module named novadocker.virt.docker. I knew that it could be it. But fretted to say it. Then I need to go back to a bunch of questions I ask myself. Why nova-docker driver instructions work on you workstations, and not mine :-)06:24
*** ivar-lazzaro has quit IRC06:24
SamYapledid you install the nova-docker driver?06:25
SamYaplelinforpros: https://github.com/stackforge/nova-docker06:25
linforprosI had two errors while installing nova-docker driver. First the command pip did not exist. instead I had on my machine only pip3 and pip3.4. So I make a symlink pip -> pip3. Was that all right to proceed that way?06:26
*** blairo has joined #openstack06:27
linforprosSAmYaple: I followed the link you just pasted. So my fedora server had python-pip3 installed without a symlink of pip.06:27
*** j_t has left #openstack06:27
linforprosI proceeded as stated above. The seccond error was "gcc" is missing. Apparently it is a dependency when you do "pip install -e git+....'06:29
SamYaplelinforpros: youll need to have a compiler and a few other tools on there to build the packages, yes06:29
*** blair has quit IRC06:29
linforprosAfter installing gcc with its dependecies, the driver was istalled, byt there was an error at the end "pip module missing". Do you make anything of it?06:30
SamYaplepip3 might work. dont know if the project is python3 compatible06:30
*** BOKALDO has joined #openstack06:30
*** itzikb has joined #openstack06:31
*** sushils has quit IRC06:31
*** blairo has quit IRC06:31
*** gildub has quit IRC06:31
linforprosNow, while you are still here. Is there a way to do: python setup.py UNIINSTALL ? If I want to start over with the docker driver, how to uninstall it?06:31
SamYaplelinforpros: not quite06:32
SamYapleyoull have to track the installed files and remove them06:32
SamYaplesetup.py can log what files it installs06:33
linforprosBecause apparently that novadocker.virt docker module cannot be found on mys system and that is why nova-compute fails.06:34
*** Raugturi has quit IRC06:34
*** yfauser has joined #openstack06:34
*** achanda has joined #openstack06:35
*** vikram has left #openstack06:36
linforprosdo you know how to find out what files it did install? this is crazy. Python exists for years now, and there is no unistall...06:36
*** wN-- has joined #openstack06:37
*** wN-- is now known as wN06:37
*** yfauser has left #openstack06:37
SamYaplelinforpros: there is an uninstall when you use packaged packages like wheels06:38
*** cemason has joined #openstack06:38
*** primechuck has quit IRC06:38
SamYapleyou are essentially installing from source06:38
*** linuxboy has joined #openstack06:38
*** cucumber_ has quit IRC06:38
linuxboyHi. I've got a question about jenkins-job-builder, but I can't find a channel about it. Can anyone direct me to a place I can ask questions about it?06:39
*** markvoelker has joined #openstack06:39
SamYaplelinuxboy: lots of people hit this channel, you can ask your question here06:40
*** pm90_ has quit IRC06:42
*** stamak has joined #openstack06:43
linuxboyso I'm trying to add a plugin to jenkins-job-builder, but the plugin needs to put it's config under the root of the xml, not under the triggers section. So far I have this: https://github.com/adrianmoisey/jenkins-job-builder/compare/build_token?expand=1 but it's 1 level too low06:43
*** markvoelker has quit IRC06:43
linuxboyI'm not 100% sure how I can get it a level higher06:44
linuxboyactually, that diff is wrong06:44
* linuxboy fixes06:44
*** yog_ has quit IRC06:45
*** kebray_ has joined #openstack06:45
*** MarkBaker has joined #openstack06:46
linuxboyso my output is this: https://gist.github.com/adrianmoisey/67a5c15c1948b2d61044 but it's supposed to be outside of the <triggers>06:46
*** MarkBaker has quit IRC06:47
linuxboycan anyone help me or point me in the right direction?06:47
*** yixuanzhang has joined #openstack06:47
*** kebray has quit IRC06:49
*** Vdash has quit IRC06:49
*** nshaikh has quit IRC06:50
SamYaplelinuxboy: it looks like you are setting it up in the triggers section in the setup.cfg, so that would mean it would be inside of triggers (like your output shows)06:50
*** gaughen has joined #openstack06:50
*** AnilV4 has joined #openstack06:50
*** haorenzhu has joined #openstack06:50
*** nshaikh has joined #openstack06:51
linuxboySamYaple: which section should I move it to?06:52
*** MarkBaker has joined #openstack06:52
linforprosHello everybody. Is there a way to easily package nova-docker driver into an rpm? Where would you start?06:52
SamYaplelinforpros: you can package it with python...06:52
*** walterheck has joined #openstack06:52
*** zz_avozza is now known as avozza06:52
*** SysadminTurncoat has quit IRC06:53
*** mkolesni has joined #openstack06:53
*** yog_ has joined #openstack06:54
linforprosAllright. I think I am going to follow an advice from stackoverflow: python setup.py install --record files.txt and then after that cat files.txt | xargs rm -rf. For those of you who just joined.: I cannot unistall nova-docker driver.06:55
*** avozza is now known as zz_avozza06:56
linforprosWell guys. It dod not work. it says: /usr/bin/python: No module named pip. ??06:57
*** pblaho has joined #openstack06:58
*** cemason has quit IRC06:58
*** shashankhegde has joined #openstack06:58
*** erkules_ is now known as erkules06:58
*** gargola has quit IRC06:58
*** gargola_ has joined #openstack06:59
*** josecastroleon has joined #openstack06:59
*** melmoth has joined #openstack07:00
*** VW has quit IRC07:00
*** VW has joined #openstack07:01
SamYaplelinforpros: is /usr/bin/python a link to python 2 or 3? If it is 2, you said you did not install pip for 207:01
*** thumpba has joined #openstack07:03
*** ivar-laz_ has quit IRC07:03
*** ivar-lazzaro has joined #openstack07:04
*** twillber has joined #openstack07:04
*** twillber has joined #openstack07:04
*** mrunge has joined #openstack07:05
linforprosIt if fact is "/usr/bin/python -> python2"07:05
*** stevemar has quit IRC07:06
SamYapleso install pip07:06
*** chlong has joined #openstack07:07
*** thumpba has quit IRC07:07
*** yog_ has quit IRC07:09
linforprosI just did. Ran python setup.py install --record files.txt. So I have ovewritten the previous installation. Now how to check whether my nova-compute is good now?07:09
linforprosall config files are in place: nova.conf, glance-api.cont07:10
*** otter768 has joined #openstack07:11
*** sputnik13 has quit IRC07:12
linforprosOMG. Now all openstack-nova-* services fail to start. super.07:12
*** sayan has joined #openstack07:12
*** stamak has quit IRC07:12
*** mattgriffin has quit IRC07:14
*** groen692 has joined #openstack07:14
linforprosnova-docker instructions are very misleading. It just does not work. ever. I am running a prestine fedora server.07:14
*** neeti has joined #openstack07:15
*** VW has quit IRC07:15
*** JRobinson__ has quit IRC07:16
*** VW has joined #openstack07:16
*** otter768 has quit IRC07:16
*** ivar-laz_ has joined #openstack07:16
*** sputnik13 has joined #openstack07:16
*** Xurong has quit IRC07:17
*** c^ has quit IRC07:17
linforprosI wrecked my openstack installation with just one command: in src/novadocker #python setup.py install. Tha is it.07:17
*** melmoth has quit IRC07:17
*** a_le has quit IRC07:17
*** ivar-lazzaro has quit IRC07:19
*** ivar-laz_ has quit IRC07:19
*** a_le has joined #openstack07:21
*** ajo has quit IRC07:22
*** Xurong has joined #openstack07:22
*** VW has quit IRC07:23
*** VW has joined #openstack07:23
*** melmoth has joined #openstack07:24
*** erikkri has joined #openstack07:24
*** MasterPiece has joined #openstack07:27
*** Vexoon has joined #openstack07:27
*** chlong has quit IRC07:28
*** ali_ has joined #openstack07:29
*** VW has quit IRC07:29
*** VW has joined #openstack07:29
*** linforpros has left #openstack07:29
*** yog_ has joined #openstack07:30
*** shashankhegde has quit IRC07:30
*** ali_ has left #openstack07:30
*** macjack has quit IRC07:31
*** nkrinner has joined #openstack07:32
*** saibarspeis has joined #openstack07:34
*** macjack has joined #openstack07:34
*** lgao has quit IRC07:35
*** ngoracke has quit IRC07:35
*** Miouge has joined #openstack07:35
*** amalagon has quit IRC07:36
*** belmoreira has joined #openstack07:36
*** marius_endian has joined #openstack07:36
*** VW has quit IRC07:37
*** VW has joined #openstack07:38
*** ajo has joined #openstack07:39
*** markvoelker has joined #openstack07:39
*** jerematic has joined #openstack07:41
*** erikkri has quit IRC07:42
*** thesanchez has joined #openstack07:42
thesanchezDoes anyone here have any successful experience with LBAAS and SSL?07:42
*** andreaturli has joined #openstack07:43
*** markvoelker has quit IRC07:44
*** jerematic has quit IRC07:46
*** achanda has quit IRC07:46
*** VW has quit IRC07:46
*** VW has joined #openstack07:47
*** daMaestro has quit IRC07:47
*** eorchid has joined #openstack07:47
*** VW has quit IRC07:49
*** DynamiteXXL has joined #openstack07:49
*** VW has joined #openstack07:50
*** vicky_ has quit IRC07:50
*** yamamot__ has quit IRC07:52
*** VW has quit IRC07:52
*** e0ne has joined #openstack07:52
*** VW has joined #openstack07:53
*** jcoufal has joined #openstack07:54
*** zz_avozza is now known as avozza07:55
*** bbcmicrocomputer has joined #openstack07:55
*** bbcmicrocomputer has joined #openstack07:55
*** dino82 has quit IRC07:56
*** dulek has joined #openstack07:57
*** OutBackDingo has quit IRC07:57
*** scheuran has joined #openstack07:57
*** kayaliu_ has joined #openstack07:57
*** VW has quit IRC07:58
*** noslzzp has joined #openstack07:58
*** VW has joined #openstack07:59
*** VW has quit IRC07:59
*** VW has joined #openstack08:00
*** achanda has joined #openstack08:01
*** kayaliu_ has quit IRC08:01
*** dino82 has joined #openstack08:01
*** cemason has joined #openstack08:02
*** ronis has joined #openstack08:02
*** kushal has quit IRC08:03
*** Vexoon has quit IRC08:05
*** OutBackDingo has joined #openstack08:07
*** dgurtner has joined #openstack08:08
*** dgurtner has joined #openstack08:08
*** Miouge_ has joined #openstack08:09
*** ajo has quit IRC08:10
*** noslzzp has quit IRC08:10
*** OutBackDingo has quit IRC08:10
*** Miouge has quit IRC08:11
*** Miouge_ is now known as Miouge08:11
*** eorchid has quit IRC08:11
*** rdas has quit IRC08:11
*** VW has quit IRC08:11
*** VW has joined #openstack08:12
*** noslzzp has joined #openstack08:12
*** antons has quit IRC08:13
*** henrynash has joined #openstack08:14
*** tshefi has joined #openstack08:14
*** ManikM has quit IRC08:15
*** Joufflu has quit IRC08:15
*** pask81 has joined #openstack08:16
*** kushal has joined #openstack08:17
*** sergef has joined #openstack08:17
*** thmzz has quit IRC08:18
*** VW has quit IRC08:18
*** VW has joined #openstack08:19
*** yamamoto_ has joined #openstack08:19
*** thesanchez has quit IRC08:19
*** siso has joined #openstack08:20
*** DynamiteXXL has quit IRC08:20
*** thmzz has joined #openstack08:21
*** kawa2014 has joined #openstack08:21
*** ManikM has joined #openstack08:22
*** cemason has quit IRC08:22
*** markus_z has joined #openstack08:23
*** yamamoto_ has quit IRC08:24
*** linuxboy has left #openstack08:24
*** geaaru has joined #openstack08:25
*** achanda has quit IRC08:26
*** avozza is now known as zz_avozza08:26
*** yamamoto_ has joined #openstack08:26
*** VW has quit IRC08:27
*** nmagnezi has joined #openstack08:27
*** VW has joined #openstack08:27
*** sergef has quit IRC08:27
*** jistr has joined #openstack08:29
*** mahe has joined #openstack08:29
*** jaosorior has joined #openstack08:29
*** mahe is now known as ackja08:29
*** masco has quit IRC08:30
*** MasterPiece has quit IRC08:30
*** VW has quit IRC08:32
*** mrmartin has quit IRC08:33
*** alesales has joined #openstack08:33
*** lucendio has joined #openstack08:34
*** redbeard has joined #openstack08:35
*** lucendio1 has joined #openstack08:35
*** racedo_ has joined #openstack08:37
*** mrmartin has joined #openstack08:37
*** sergmelikyan has joined #openstack08:38
*** siso has quit IRC08:38
*** DynamiteXXL has joined #openstack08:38
*** racedo has quit IRC08:38
*** racedo_ is now known as racedo08:38
*** lucendio has quit IRC08:38
*** cemason has joined #openstack08:38
*** arxcruz has joined #openstack08:39
*** markvoelker has joined #openstack08:40
*** racedo` has joined #openstack08:40
*** lucendio1 has quit IRC08:40
*** lucendio has joined #openstack08:41
*** yamamoto_ has quit IRC08:41
*** MasterPiece has joined #openstack08:42
*** DynamiteXXL has quit IRC08:42
*** panda has quit IRC08:43
*** panda has joined #openstack08:43
*** masco has joined #openstack08:44
*** jpena has joined #openstack08:44
*** 92AAAH9PM has joined #openstack08:45
*** markvoelker has quit IRC08:45
*** kushal has quit IRC08:46
*** zz_ttrifonov is now known as ttrifonov08:46
*** DynamiteXXL has joined #openstack08:47
*** sayan has quit IRC08:47
*** juanluisrp has joined #openstack08:48
*** 92AAAH9PM has quit IRC08:48
*** nivtukcio has joined #openstack08:48
triggerzI boot one instance and it works fine, I boot a second one and I get "InvalidBDM: Block Device Mapping is Invalid." in manager.py function _prep_block_device, anybody seen it before?08:48
*** dhruvdhody has joined #openstack08:49
*** MaxV has joined #openstack08:49
*** geguileo has joined #openstack08:49
*** lucendio has quit IRC08:50
*** rdaly2 has quit IRC08:51
*** thumpba has joined #openstack08:52
*** PaulCuzner has joined #openstack08:53
*** jpich has joined #openstack08:55
*** cdub has quit IRC08:55
*** thumpba has quit IRC08:56
*** geguileo has quit IRC08:56
*** geguileo has joined #openstack08:56
*** henrynash has quit IRC08:57
*** arxcruz has quit IRC08:59
*** kebray_ has quit IRC08:59
*** jang1 has quit IRC09:00
*** bvandenh has joined #openstack09:00
*** surabujin has joined #openstack09:01
*** lucendio1 has joined #openstack09:02
*** PaulCuzner has quit IRC09:03
*** karimb has joined #openstack09:04
*** Ananci has quit IRC09:04
*** humbolt has joined #openstack09:04
*** humbolt has quit IRC09:04
*** Firxiao_ has joined #openstack09:04
*** ajo has joined #openstack09:05
*** koolhead17 has joined #openstack09:05
*** jprovazn has joined #openstack09:05
*** GentileBen has joined #openstack09:05
*** lucendio1 has quit IRC09:05
*** lucendio1 has joined #openstack09:05
*** jang1 has joined #openstack09:06
*** Firxiao_ has quit IRC09:07
*** sergef has joined #openstack09:08
*** pdb has joined #openstack09:09
*** PaulCuzner has joined #openstack09:09
*** mpaolino has joined #openstack09:10
*** lucendio1 has quit IRC09:10
*** jang1 has quit IRC09:10
*** dhruvdhody has quit IRC09:11
*** ghostpl has joined #openstack09:11
*** otter768 has joined #openstack09:12
*** e0ne has quit IRC09:12
*** gaughen has quit IRC09:14
*** siso has joined #openstack09:16
*** otter768 has quit IRC09:17
*** DynamiteXXL has quit IRC09:17
*** yuntong has quit IRC09:17
*** bluex-pl has joined #openstack09:18
*** jang1 has joined #openstack09:18
*** damadhatter has joined #openstack09:20
*** belmoreira has quit IRC09:21
*** belmoreira has joined #openstack09:22
*** supay|zzZZ has quit IRC09:24
*** supay has joined #openstack09:24
*** Miouge has quit IRC09:25
*** mhines has quit IRC09:25
*** dhruvdhody has joined #openstack09:25
*** afazekas has joined #openstack09:25
*** ddmitriev has joined #openstack09:26
*** mpaolino has quit IRC09:26
*** derekh has joined #openstack09:27
*** mpaolino has joined #openstack09:27
*** dhruvdhody has quit IRC09:30
*** jerematic has joined #openstack09:30
*** jckasper has quit IRC09:30
*** DynamiteXXL has joined #openstack09:32
*** jang1 has quit IRC09:32
*** Miouge has joined #openstack09:32
*** PaulCuzner has left #openstack09:32
*** PaulCuzner has joined #openstack09:33
*** jang1 has joined #openstack09:33
*** jerematic has quit IRC09:35
*** ninkotech has joined #openstack09:36
*** Zack_Deee has quit IRC09:37
*** Syed_ has joined #openstack09:37
*** itarchitectkev has joined #openstack09:37
*** salv-orlando has joined #openstack09:37
*** maveric_amitc_ has joined #openstack09:38
*** ttrifonov is now known as zz_ttrifonov09:39
koolhead17hugokuo: around09:39
hugokuokoolhead17: hola09:39
*** dsneddon has quit IRC09:40
*** stamak has joined #openstack09:40
*** zz_ttrifonov is now known as ttrifonov09:40
*** markvoelker has joined #openstack09:41
*** RedRat has quit IRC09:41
*** ttrifonov is now known as zz_ttrifonov09:42
*** henrynash has joined #openstack09:42
*** zz_ttrifonov is now known as ttrifonov09:43
*** Syed_ has quit IRC09:45
*** RicardoSSP has joined #openstack09:46
*** larsam has quit IRC09:47
*** markvoelker has quit IRC09:47
*** gary_perkins has joined #openstack09:47
*** ttrifonov is now known as zz_ttrifonov09:48
*** igordcard has joined #openstack09:49
*** jang1 has quit IRC09:49
*** zz_ttrifonov is now known as ttrifonov09:49
*** gaughen has joined #openstack09:49
*** MattMan has joined #openstack09:49
*** Domin has quit IRC09:51
*** Domin_ has joined #openstack09:51
*** Domin_ is now known as Domin09:51
*** Firxiaow has joined #openstack09:52
*** jcoufal_ has joined #openstack09:52
*** jcoufal has quit IRC09:53
*** jang has joined #openstack09:53
*** Firxiaow has left #openstack09:54
*** enterprisedc has quit IRC09:54
*** igordcard has quit IRC09:54
*** ttrifonov is now known as zz_ttrifonov09:55
*** yog_ has quit IRC09:55
*** mcornea has joined #openstack09:56
*** henrynash has quit IRC09:56
*** e0ne has joined #openstack09:57
*** amalagon has joined #openstack09:57
*** franred has joined #openstack09:58
*** Equalizer has quit IRC09:58
*** michaelneale has quit IRC09:58
*** subir has joined #openstack09:59
*** Equalizer has joined #openstack09:59
*** masco has quit IRC09:59
*** zz_ttrifonov is now known as ttrifonov10:00
*** haorenzhu has quit IRC10:01
*** ttrifonov is now known as zz_ttrifonov10:01
*** amalagon has quit IRC10:02
*** jang has quit IRC10:02
*** zz_ttrifonov is now known as ttrifonov10:02
*** wierenga has quit IRC10:03
*** e0ne is now known as e0ne_10:04
*** scheuran has quit IRC10:04
*** berserk has quit IRC10:04
quantumHi! what the file system u use for block storage?10:05
*** larsam has joined #openstack10:05
quantumXFS+gluster ha ?10:05
*** Ala has joined #openstack10:06
*** mcornea has quit IRC10:07
*** ttrifonov is now known as zz_ttrifonov10:08
*** mcornea has joined #openstack10:08
*** zz_ttrifonov is now known as ttrifonov10:09
*** yog_ has joined #openstack10:09
*** GentileBen has quit IRC10:10
*** franred has quit IRC10:11
*** ttrifonov is now known as zz_ttrifonov10:12
*** masco has joined #openstack10:12
*** nkhare has quit IRC10:12
*** e0ne_ is now known as e0ne10:12
*** jtomasek has joined #openstack10:12
*** tserong has quit IRC10:13
*** rdas has joined #openstack10:14
*** jang1 has joined #openstack10:14
*** dneary has joined #openstack10:15
*** franred has joined #openstack10:15
*** zz_ttrifonov is now known as ttrifonov10:16
*** dsneddon has joined #openstack10:16
*** ttrifonov is now known as zz_ttrifonov10:18
*** scheuran has joined #openstack10:18
*** tserong has joined #openstack10:19
*** noslzzp has quit IRC10:19
*** ManikM has quit IRC10:20
*** ManikM has joined #openstack10:20
*** zz_ttrifonov is now known as ttrifonov10:21
*** franred has quit IRC10:21
*** dhritishikhar has joined #openstack10:22
*** lpax has joined #openstack10:22
*** RedRat has joined #openstack10:23
*** oro has joined #openstack10:23
*** RicardoSSP has quit IRC10:23
*** yfauser has joined #openstack10:24
*** yfauser has left #openstack10:24
*** jang1 has quit IRC10:25
*** subir has quit IRC10:26
*** RicardoSSP has joined #openstack10:26
*** RicardoSSP has joined #openstack10:26
*** _shaps_ has joined #openstack10:27
*** wierenga has joined #openstack10:27
*** franred has joined #openstack10:28
*** sayan has joined #openstack10:30
*** jang1 has joined #openstack10:31
*** dkaigarodsev has quit IRC10:32
*** ashneo76 has quit IRC10:33
*** jang1 has quit IRC10:35
*** Bluedusk has quit IRC10:36
*** jang has joined #openstack10:36
*** yfauser has joined #openstack10:37
*** twillber has quit IRC10:38
*** mpaolino has quit IRC10:38
*** twillber has joined #openstack10:38
*** twillber has joined #openstack10:38
*** navid__ has joined #openstack10:39
*** yfauser has left #openstack10:39
*** nshaikh has quit IRC10:40
*** thumpba has joined #openstack10:41
*** noslzzp has joined #openstack10:41
*** gaughen has quit IRC10:42
*** aloga has quit IRC10:42
*** grossen has joined #openstack10:42
*** RicardoSSP has quit IRC10:42
*** markvoelker has joined #openstack10:43
*** neoXsys has quit IRC10:43
*** MasterPiece has quit IRC10:43
*** yog_ has quit IRC10:44
*** SweetyDumling has quit IRC10:44
*** neoXsys has joined #openstack10:45
*** thumpba has quit IRC10:45
*** jasondotstar has joined #openstack10:46
*** jaosorior has quit IRC10:46
*** jp_at_hp has joined #openstack10:46
*** markvoelker has quit IRC10:48
*** dino82 has quit IRC10:48
*** gargola_ has quit IRC10:48
*** pelix has joined #openstack10:48
*** belmoreira has quit IRC10:48
*** aloga has joined #openstack10:50
*** oro has quit IRC10:50
*** MentalRay has joined #openstack10:50
*** enterprisedc has joined #openstack10:50
*** mpaolino has joined #openstack10:50
*** gargola has joined #openstack10:51
*** jang has quit IRC10:51
*** brkfst_ has joined #openstack10:51
*** setkeh has quit IRC10:52
*** rushiagr has quit IRC10:52
*** dino82 has joined #openstack10:53
*** setkeh has joined #openstack10:53
*** che-arne has joined #openstack10:53
*** scotti has quit IRC10:54
*** Longgeek has joined #openstack10:55
*** MasterPiece has joined #openstack10:56
*** SweetyDumling has joined #openstack10:57
*** vigneshvar has quit IRC10:57
*** dims has joined #openstack10:57
*** MentalRay has quit IRC10:57
*** Poornima has quit IRC10:58
*** VW has joined #openstack10:58
*** lucendio has joined #openstack10:58
*** Syed_ has joined #openstack10:58
*** jang1 has joined #openstack10:59
*** Godfath3r has joined #openstack10:59
*** dneary has quit IRC10:59
*** surabujin has quit IRC11:00
*** bluex-pl has quit IRC11:01
*** bluex-pl has joined #openstack11:01
*** dims has quit IRC11:01
*** rushiagr has joined #openstack11:02
*** yaguang has quit IRC11:02
*** dims has joined #openstack11:02
*** vigneshvar has joined #openstack11:02
*** VW has quit IRC11:03
*** mli has quit IRC11:03
*** navid__ is now known as nshaikh11:03
*** adalbas has joined #openstack11:03
*** mli has joined #openstack11:04
*** surabujin has joined #openstack11:04
*** cdent has joined #openstack11:06
*** Godfath3r has quit IRC11:07
*** mli has quit IRC11:07
*** yixuanzhang has quit IRC11:07
*** yog_ has joined #openstack11:07
*** yixuanzhang has joined #openstack11:07
*** vectra has quit IRC11:11
*** yog_ has quit IRC11:12
*** otter768 has joined #openstack11:13
*** pravins has quit IRC11:13
*** Syed_ has quit IRC11:16
*** tnovacik has joined #openstack11:17
*** vectra has joined #openstack11:17
*** otter768 has quit IRC11:17
*** jerematic has joined #openstack11:19
*** etacsufbo has quit IRC11:19
*** aveek has joined #openstack11:20
*** e0ne is now known as e0ne_11:21
*** gfidente has joined #openstack11:23
*** jerematic has quit IRC11:23
*** st__ has joined #openstack11:24
*** okrieg has joined #openstack11:25
*** jang1 has quit IRC11:28
*** tnovacik has quit IRC11:28
*** erikkri has joined #openstack11:28
*** digimonde has joined #openstack11:29
*** redbeard has quit IRC11:29
_nickquantum: ceph in our case11:31
_nickcan anyone here confirm whether or not heat in icehouse requires the keystone v3 api endpoint?11:31
*** e0ne_ has quit IRC11:31
_nick(it seems to)11:31
*** Longgeek has quit IRC11:33
*** sayan has quit IRC11:34
*** scheuran has quit IRC11:34
*** tnovacik has joined #openstack11:34
quantumsomeone use gluster for blockstorage ?11:35
*** Syed_ has joined #openstack11:35
*** yog_ has joined #openstack11:36
*** tvvcox has joined #openstack11:37
*** dorftrottel has joined #openstack11:38
*** sputnik13 has quit IRC11:38
*** jang has joined #openstack11:39
*** yaguang has joined #openstack11:39
*** wierenga_ has joined #openstack11:40
*** deepthi has quit IRC11:42
*** lucendio has quit IRC11:42
*** ghostpl has quit IRC11:43
*** markvoelker has joined #openstack11:44
*** aveek has quit IRC11:44
*** gli has quit IRC11:45
*** oro has joined #openstack11:46
*** erikkri has quit IRC11:46
*** gaughen has joined #openstack11:47
*** tnovacik has quit IRC11:47
*** pixelbeat has joined #openstack11:48
*** scheuran has joined #openstack11:49
*** markvoelker has quit IRC11:49
*** yixuanzhang has quit IRC11:49
*** wierenga_ has quit IRC11:49
*** yfauser has joined #openstack11:49
*** lucendio has joined #openstack11:50
*** digimonde has quit IRC11:50
*** byte69 has joined #openstack11:52
*** yfauser has left #openstack11:52
karimbhello buddies, does someone know this error ?11:53
karimbheatclient.exc.HTTPBadRequest: ERROR: 'NoneType' object has no attribute 'auth_token'11:53
karimbwhen deploying a stacj template11:53
*** rtheis has joined #openstack11:54
*** Sir_Desi has joined #openstack11:54
byte69Hello, i have a little problem in understanding network node tunneling, what is it meant to be and is this network configuration correct? http://paste.openstack.org/show/166750/ i cannot ping from network node to compute node but i can ping to google.com and controller node11:55
*** rdaly2 has joined #openstack11:56
*** mareklug has joined #openstack11:56
*** Sir_Designer has quit IRC11:56
*** Matth has joined #openstack11:57
*** Sri_Designer has quit IRC11:57
*** Sir_Designer has joined #openstack11:57
*** SweetyDumling has quit IRC11:57
*** diegows has joined #openstack11:58
*** rdas has quit IRC11:58
*** okrieg has quit IRC11:59
*** walterheck has quit IRC11:59
*** Sir_Desi has quit IRC11:59
*** sbfox has joined #openstack11:59
*** rdaly2 has quit IRC12:00
*** Putns has joined #openstack12:02
*** jang has quit IRC12:02
*** lynxman has quit IRC12:02
*** lborda has joined #openstack12:03
*** byte69 has quit IRC12:03
*** Gala-G has joined #openstack12:04
*** jang has joined #openstack12:06
*** corXi has joined #openstack12:06
*** aveek has joined #openstack12:09
*** ghostpl has joined #openstack12:10
*** tnovacik has joined #openstack12:10
*** amalagon has joined #openstack12:10
*** surabujin has quit IRC12:11
*** bradjones has quit IRC12:11
*** sbfox1 has joined #openstack12:11
*** MIDENN_ has joined #openstack12:13
*** Woodie has joined #openstack12:13
*** lynxman has joined #openstack12:13
*** lynxman has quit IRC12:13
*** lynxman has joined #openstack12:13
*** hemna_ has joined #openstack12:13
*** Sri_Designer has joined #openstack12:13
*** dangers_` has joined #openstack12:14
*** gargola_ has joined #openstack12:14
*** surabujin has joined #openstack12:14
*** bradjones has joined #openstack12:14
*** itarchitectkev has quit IRC12:14
*** renier_ has joined #openstack12:14
*** Anticime1 has joined #openstack12:15
*** opuk_ has joined #openstack12:15
*** Pavlov_ has joined #openstack12:15
*** trown|call has joined #openstack12:16
*** redbeard has joined #openstack12:16
*** _cmd__ has joined #openstack12:16
*** danjared_ has joined #openstack12:17
*** FunnyLookinHat has joined #openstack12:17
*** kevinbenton_ has joined #openstack12:17
*** MasterPiece has quit IRC12:18
*** smoser` has joined #openstack12:18
*** rturk|afk has joined #openstack12:19
*** racedo`` has joined #openstack12:19
*** subscope has quit IRC12:19
*** Syed_ has quit IRC12:19
*** Aciid_ has joined #openstack12:19
*** joshskidmore has joined #openstack12:20
*** ManikM has quit IRC12:20
*** subscope has joined #openstack12:20
*** ManikM has joined #openstack12:20
*** jang has quit IRC12:20
*** aveek has quit IRC12:20
*** sbfox has quit IRC12:20
*** yog_ has quit IRC12:20
*** gargola has quit IRC12:20
*** jasondotstar has quit IRC12:20
*** afazekas has quit IRC12:20
*** racedo` has quit IRC12:20
*** bbcmicrocomputer has quit IRC12:20
*** coasterz has quit IRC12:20
*** lexano has quit IRC12:20
*** mdenny has quit IRC12:20
*** W00die has quit IRC12:20
*** opuk has quit IRC12:20
*** benkevan has quit IRC12:20
*** dyasny has quit IRC12:20
*** starberry has quit IRC12:20
*** fsaad has quit IRC12:20
*** trown has quit IRC12:20
*** dangers_away has quit IRC12:20
*** mwagner_lap has quit IRC12:20
*** kevinbenton has quit IRC12:20
*** joshskidmore_ has quit IRC12:20
*** rturk|af` has quit IRC12:20
*** renier has quit IRC12:20
*** Anticimex has quit IRC12:20
*** danjared has quit IRC12:20
*** jseutter has quit IRC12:20
*** jab416171 has quit IRC12:20
*** Hexxis has quit IRC12:20
*** Pavlov has quit IRC12:20
*** zul has quit IRC12:20
*** hemnafk has quit IRC12:20
*** orlock has quit IRC12:20
*** Aciid has quit IRC12:20
*** _cmd_ has quit IRC12:20
*** epopt37 has quit IRC12:20
*** smoser has quit IRC12:20
*** tibl has quit IRC12:20
*** sbadia has quit IRC12:20
*** bbcmicrocomputer has joined #openstack12:21
*** sbfox1 has quit IRC12:21
*** Hexxis has joined #openstack12:22
*** mohitsha_ has joined #openstack12:23
*** sbadia has joined #openstack12:23
*** Jackster has quit IRC12:24
*** jseutter has joined #openstack12:24
*** mohitsh__ has joined #openstack12:24
*** mohitsharma has quit IRC12:25
*** Jackster_ has joined #openstack12:25
*** kawa2014 has quit IRC12:25
*** yog_ has joined #openstack12:26
*** rmcall has joined #openstack12:26
*** epopt37 has joined #openstack12:26
*** afazekas has joined #openstack12:27
*** coasterz has joined #openstack12:27
*** dyasny has joined #openstack12:27
*** orlock has joined #openstack12:27
*** mwagner_lap has joined #openstack12:27
*** EmilienM|afk is now known as EmilienM12:27
*** mohitsha_ has quit IRC12:27
*** lexano has joined #openstack12:27
*** fsaad has joined #openstack12:28
*** zul has joined #openstack12:28
*** jab416171 has joined #openstack12:28
*** starberry has joined #openstack12:28
*** emk has quit IRC12:28
*** jab416171 has quit IRC12:29
*** emk has joined #openstack12:29
*** jab416171 has joined #openstack12:29
*** thumpba has joined #openstack12:29
*** sbfox has joined #openstack12:30
*** neha has quit IRC12:31
*** thumpba has quit IRC12:34
*** jang1 has joined #openstack12:34
*** jerematic has joined #openstack12:35
*** baoli_ has joined #openstack12:36
*** Gala-G12 has joined #openstack12:39
*** jang1 has quit IRC12:39
*** gashcrumb has joined #openstack12:39
*** gashcrumb has joined #openstack12:39
*** baoli_ has quit IRC12:40
*** jerematic has quit IRC12:40
*** thrash|g0ne is now known as thrash12:40
*** baoli has joined #openstack12:40
*** Gala-G has quit IRC12:42
*** mpaolino has quit IRC12:43
*** dilyin has joined #openstack12:43
*** juice has quit IRC12:43
*** zz_avozza is now known as avozza12:43
*** tibl has joined #openstack12:43
*** rbowen has joined #openstack12:44
*** racedo has quit IRC12:45
*** markvoelker has joined #openstack12:45
*** jaosorior has joined #openstack12:45
*** juice has joined #openstack12:46
*** haramaki has joined #openstack12:49
*** markvoelker has quit IRC12:49
*** yaguang has quit IRC12:50
*** e0ne has joined #openstack12:53
*** MalteJ has left #openstack12:53
*** dyasny has quit IRC12:54
*** erikkri has joined #openstack12:54
*** jang1 has joined #openstack12:56
*** anilvenkata has left #openstack12:56
*** jerematic has joined #openstack12:58
*** juice has quit IRC12:59
*** sbfox has quit IRC13:00
*** masco has quit IRC13:01
st__Hi all! Sorry for flooding but I don't know where to seek for clues. We have a configuration of OpenStack over ceph with Glance (for images) and Cinder( for copy-on-write volumes attached to instances). Our main problem is that ceph replication is start to running out of space.  I can use rados to df for all usage status. I can see volumes through rdb and their maximum size, or even check by rados for how much object of that maximum is exist, but i w13:02
st__ould like to summary that data. We have over 400 instances with 1-2 volumes attached to it. Is there a way to gather a detailed information about all volumes and their size by some one magic command or dedicated tool for it? Thanks in advance for any help.13:02
*** gashcrumb has quit IRC13:03
*** juice has joined #openstack13:03
*** jang1 has quit IRC13:04
*** e0ne is now known as e0ne_13:04
*** e0ne_ is now known as e0ne13:05
*** pboros has joined #openstack13:06
*** balajiiyer has joined #openstack13:06
*** mohitsh__ has quit IRC13:06
*** gashcrumb has joined #openstack13:06
*** gashcrumb has joined #openstack13:06
*** racedo has joined #openstack13:07
*** racedo has quit IRC13:07
*** racedo has joined #openstack13:07
*** mohitsharma has joined #openstack13:07
*** neeti has quit IRC13:07
*** Networkn3rd has quit IRC13:08
*** haramaki has quit IRC13:08
*** mohitsharma has quit IRC13:08
*** jang has joined #openstack13:08
*** Miouge has quit IRC13:09
*** dmsimard_away is now known as dmsimard13:09
*** dims has quit IRC13:10
*** bknudson has joined #openstack13:11
*** Zack_Deee has joined #openstack13:12
*** andreaturli has left #openstack13:13
*** dmsimard is now known as dmsimard_away13:13
*** pradipta has quit IRC13:13
*** kzrl has joined #openstack13:14
*** otter768 has joined #openstack13:14
*** toddnni has quit IRC13:14
*** kzrl_ has quit IRC13:15
*** Maveric7911 has joined #openstack13:15
larsksst__: have you tried asking in #ceph on oftc?  http://ceph.com/resources/mailing-list-irc/13:17
larsksFor cinder volumes, of course, there is 'cinder list --all-tenants' to see a list of all volumes.13:18
*** dims has joined #openstack13:19
*** rdaly2 has joined #openstack13:19
*** otter768 has quit IRC13:19
*** lpax_ has joined #openstack13:19
*** prad has joined #openstack13:19
*** siso has quit IRC13:19
*** markvoelker has joined #openstack13:20
*** sayan has joined #openstack13:21
*** jang has quit IRC13:21
*** nitti has quit IRC13:22
*** nelsnelson has quit IRC13:22
*** tshefi has quit IRC13:22
*** tshefi has joined #openstack13:22
*** lpax has quit IRC13:22
*** galstrom_zzz is now known as galstrom13:23
*** nitti has joined #openstack13:23
*** gashcrumb has quit IRC13:23
*** nelsnelson has joined #openstack13:23
*** ajc_ has quit IRC13:24
st__larsks: thx. I'll try on #ceph.13:26
*** hdd has joined #openstack13:26
st__larsks: Yes. I know about cinder list but even a detailed view of cinder show for volumes do not give me information about current (real) size of volume.13:26
*** itarchitectkev has joined #openstack13:27
larsksst__: understood.  Wasn't sure if you were asking about the openstack side or the ceph side :)13:27
*** rtheis_ has joined #openstack13:27
*** elo has joined #openstack13:28
*** dims has quit IRC13:28
*** nitti has quit IRC13:28
*** Ephur has joined #openstack13:28
*** mjturek has joined #openstack13:28
*** cpg is now known as cpg|away13:28
*** ghostpl has quit IRC13:29
*** e0ne is now known as e0ne_13:29
*** karimb has quit IRC13:29
*** rtheis has quit IRC13:30
*** prad has quit IRC13:31
*** luflores has joined #openstack13:31
*** yaguang has joined #openstack13:31
*** ngoracke has joined #openstack13:32
*** mfink_ has joined #openstack13:33
*** mfink__ has joined #openstack13:33
*** cemason has quit IRC13:34
*** nshaikh has quit IRC13:34
*** brokencycle has joined #openstack13:35
*** nshaikh has joined #openstack13:35
*** neoark has joined #openstack13:35
*** Sir_Designer has quit IRC13:35
neoarkanyone know if nr_requests is locked in ubuntu?13:35
neoarki can't seem to change it13:36
*** mrmartin has quit IRC13:36
*** Sir_Designer has joined #openstack13:36
*** tkramer has joined #openstack13:37
*** jang has joined #openstack13:37
*** mfink_ has quit IRC13:37
*** e0ne_ is now known as e0ne13:38
*** weshay has joined #openstack13:38
*** ghostpl has joined #openstack13:39
*** yaguang has quit IRC13:39
*** thrash has quit IRC13:39
*** mli has joined #openstack13:40
*** badiane_ka has quit IRC13:40
*** mli has quit IRC13:41
*** nshaikh has quit IRC13:41
*** two_oes has joined #openstack13:42
*** rdaly2 has quit IRC13:42
*** rdaly2 has joined #openstack13:43
*** krisd has joined #openstack13:43
*** vigneshvar has quit IRC13:43
*** cemason has joined #openstack13:43
*** trown|call is now known as trown13:43
*** karimb has joined #openstack13:43
*** rushiagr is now known as rushiagr_away13:45
*** mrunge has quit IRC13:47
*** ncerny has joined #openstack13:48
*** yaguang has joined #openstack13:48
*** mli has joined #openstack13:48
*** ReyuAway is now known as Reyu13:49
*** mli has quit IRC13:50
*** opuk_ is now known as opuk13:50
*** opuk has joined #openstack13:50
*** rdaly2 has quit IRC13:51
*** ncerny has quit IRC13:53
*** klamath has joined #openstack13:54
*** klamath has quit IRC13:54
*** ncerny has joined #openstack13:55
*** klamath has joined #openstack13:55
*** oro has quit IRC13:55
*** bluedusk has joined #openstack13:55
*** coredump has joined #openstack13:57
*** sep has quit IRC13:57
*** Bluedusk_ has joined #openstack13:57
_nick2015-02-04 13:57:32.875 774 DEBUG urllib3.connectionpool [-] "POST /v3/auth/tokens HTTP/1.1" 50213:58
*** redbeard has quit IRC13:58
_nicktrying to work out why heat insists on talking to that keystone endpoint13:58
_nickeven though it's not configured or advertised anywhere13:58
*** brokencycle has quit IRC13:58
_nickthe resulting error is an authorization failure13:59
_nickserver1: image Authorization failed: Bad Gateway (HTTP 502))13:59
*** sep has joined #openstack13:59
_nickanyone come across this before?13:59
_nickthis is on icehouse btw13:59
*** lmh has joined #openstack13:59
*** surabujin has quit IRC13:59
*** robbb has joined #openstack13:59
*** dudy has joined #openstack14:00
*** bigl0af_ has quit IRC14:00
*** junedm has joined #openstack14:00
*** surabujin has joined #openstack14:00
*** jckasper has joined #openstack14:01
*** mohitsharma has joined #openstack14:01
*** tier has joined #openstack14:02
*** yamamoto has joined #openstack14:02
*** gszasz has joined #openstack14:02
*** haramaki has joined #openstack14:02
*** dhritishikhar has quit IRC14:03
junedmhi I have installed openstack (icehouce ) using packstack ( Redhat RDO) on centos 6. contiguously getting errors in /var/log/nova/conductor.log  like "TRACE nova.openstack.common.threadgroup AttributeError: 'Connection' object has no attribute 'connection_errors'"14:03
*** cemason has quit IRC14:04
junedmany idea, what it could be14:04
*** ggnel has quit IRC14:04
*** walterheck has joined #openstack14:04
*** mwichmann has joined #openstack14:05
*** Raugturi has joined #openstack14:05
*** saibarspeis has quit IRC14:05
*** Bluedusk_ has quit IRC14:06
*** dulek has quit IRC14:06
*** dulek has joined #openstack14:07
*** jhesketh has quit IRC14:07
*** designbybeck has joined #openstack14:08
*** Bluedusk_ has joined #openstack14:08
*** kbringard has joined #openstack14:08
*** Bluedusk_ has quit IRC14:09
junedmi have made sure the rabbitmq is running14:09
*** jhesketh has joined #openstack14:09
*** galstrom is now known as galstrom_zzz14:09
*** nitti has joined #openstack14:09
*** mbernacc has joined #openstack14:10
*** belmoreira has joined #openstack14:11
*** hdd has quit IRC14:12
*** tkramer has quit IRC14:12
*** robbb has quit IRC14:12
*** gashcrumb has joined #openstack14:13
*** gashcrumb has joined #openstack14:13
*** shashankhegde has joined #openstack14:14
*** tkramer has joined #openstack14:14
*** reed has joined #openstack14:14
*** bogeyon18 has joined #openstack14:15
*** cbader has joined #openstack14:15
*** jfarschman has joined #openstack14:15
*** jfarschman is now known as MilesDenver14:15
*** redbeard has joined #openstack14:15
*** gargola_ has quit IRC14:16
*** Marga_ has quit IRC14:17
*** mpaolino has joined #openstack14:17
*** bigl0af has joined #openstack14:17
*** rushiagr_away is now known as rushiagr14:18
*** jckasper has quit IRC14:18
*** thumpba has joined #openstack14:18
*** dmsimard_away is now known as dmsimard14:18
*** cdub has joined #openstack14:18
*** prad has joined #openstack14:19
*** jckasper has joined #openstack14:19
*** julim has joined #openstack14:19
*** jang has quit IRC14:19
*** sivy has joined #openstack14:19
*** ManikM has quit IRC14:20
*** ManikM has joined #openstack14:20
*** julim has quit IRC14:21
*** etacsufbo has joined #openstack14:21
*** jang1 has joined #openstack14:22
*** thumpba has quit IRC14:23
*** VW_ has joined #openstack14:24
*** julim has joined #openstack14:24
*** mrmartin has joined #openstack14:25
*** vilce has joined #openstack14:26
*** FunnyLookinHat has quit IRC14:26
*** dyasny has joined #openstack14:26
*** gaughen has quit IRC14:26
*** jecarey has quit IRC14:28
*** elo has quit IRC14:28
*** dims has joined #openstack14:29
*** lucendio has quit IRC14:29
*** whayutin_ has joined #openstack14:30
*** whayutin_ is now known as weshay_14:30
*** rdaly2 has joined #openstack14:31
*** Raugturi has quit IRC14:31
*** spikeheadon has joined #openstack14:32
*** twillber has quit IRC14:32
*** spikeheadon has quit IRC14:32
*** spikeheadon has joined #openstack14:33
*** cpschult has joined #openstack14:33
*** lucendio has joined #openstack14:33
*** dims_ has joined #openstack14:33
*** Longgeek has joined #openstack14:33
*** jang1 has quit IRC14:33
*** balajiiyer has quit IRC14:34
*** Raugturi has joined #openstack14:34
*** ZZelle has quit IRC14:34
*** yfauser has joined #openstack14:35
*** yfauser has left #openstack14:35
*** ZZelle has joined #openstack14:35
*** Longgeek has quit IRC14:35
*** lblanchard has joined #openstack14:35
*** jang1 has joined #openstack14:36
*** jeh has joined #openstack14:36
*** davelowe has joined #openstack14:37
*** dims has quit IRC14:37
*** sayan has quit IRC14:38
*** Barker has joined #openstack14:38
*** gaughen has joined #openstack14:40
*** erikkri has quit IRC14:40
*** EricGonczer_ has joined #openstack14:40
*** noslzzp has quit IRC14:41
*** st__ has quit IRC14:41
*** surabujin has quit IRC14:41
*** baoli has quit IRC14:41
*** surabujin has joined #openstack14:41
*** noslzzp has joined #openstack14:42
*** zerda has joined #openstack14:42
*** nelsnelson has quit IRC14:42
*** baoli has joined #openstack14:43
*** humbolt1 has joined #openstack14:43
*** newbism has joined #openstack14:43
*** e0ne is now known as e0ne_14:44
*** pm90_ has joined #openstack14:44
*** sayan has joined #openstack14:44
*** pm90_ has quit IRC14:45
*** pm90_ has joined #openstack14:46
*** dulek has quit IRC14:46
*** packet has joined #openstack14:47
*** dulek has joined #openstack14:47
*** e0ne_ is now known as e0ne14:47
*** dooshtuRabbit has joined #openstack14:48
*** jang1 has quit IRC14:48
*** indy21 has joined #openstack14:49
*** enrique has joined #openstack14:49
*** FunnyLookinHat has joined #openstack14:50
*** dooshtuRabbit1 has joined #openstack14:52
*** GentileBen has joined #openstack14:52
*** jang1 has joined #openstack14:53
*** swinn has joined #openstack14:53
*** derekh has quit IRC14:53
*** achampio1 has quit IRC14:54
*** signed8bit has joined #openstack14:54
*** mcornea_ has joined #openstack14:54
*** AnilV4 has quit IRC14:55
*** georgem1 has joined #openstack14:55
*** tru_tru has quit IRC14:55
*** dooshtuRabbit has quit IRC14:55
*** EricGonc_ has joined #openstack14:55
*** EricGonczer_ has quit IRC14:55
*** yaguang has quit IRC14:55
*** mcornea has quit IRC14:56
*** saltlake has joined #openstack14:56
*** nitti has quit IRC14:56
*** ghostpl has quit IRC14:56
*** ghostpl has joined #openstack14:57
*** tru_tru has joined #openstack14:57
*** hemna has joined #openstack14:57
*** ghostpl has quit IRC14:57
*** jwalcik has joined #openstack14:57
*** JuanDRay_ has joined #openstack14:57
*** georgem1 has quit IRC14:57
*** blomquisg has joined #openstack14:58
*** JuanDRay has joined #openstack14:58
*** nitti has joined #openstack14:58
*** lennyb has joined #openstack14:58
*** geguileo has quit IRC14:59
*** mattgriffin has joined #openstack14:59
*** enrique has left #openstack15:00
*** enrique_ayala has joined #openstack15:01
*** achampion has joined #openstack15:01
*** sushils has joined #openstack15:01
*** tier has quit IRC15:01
*** tier has joined #openstack15:02
*** derekh has joined #openstack15:02
*** kawa2014 has joined #openstack15:02
*** itzikb has quit IRC15:02
*** tnovacik has quit IRC15:02
*** georgem1 has joined #openstack15:02
*** timsim has joined #openstack15:02
*** EricGonczer_ has joined #openstack15:02
*** k69 has joined #openstack15:03
*** tier has quit IRC15:03
*** signed8bit is now known as signed8bit_ZZZzz15:03
*** EricGonc_ has quit IRC15:03
*** tier_ has joined #openstack15:04
*** esheffield has joined #openstack15:04
*** thangp has joined #openstack15:04
*** thrash has joined #openstack15:04
*** mrieger has joined #openstack15:05
*** two_oes has quit IRC15:05
*** AnilV4 has joined #openstack15:06
*** shawnlower has joined #openstack15:07
*** primechuck has joined #openstack15:07
*** jcoufal has joined #openstack15:09
*** zz_jgrimm is now known as jgrimm15:09
*** MasterPiece has joined #openstack15:10
*** ppradhan has joined #openstack15:10
*** baoli has quit IRC15:11
*** ackja has quit IRC15:12
*** dgurtner has quit IRC15:12
*** jcoufal_ has quit IRC15:12
*** baoli has joined #openstack15:12
*** mcornea_ has quit IRC15:12
*** cptweasel has joined #openstack15:12
*** blahRus has joined #openstack15:12
*** mcornea has joined #openstack15:12
*** Gala-G12 has quit IRC15:13
*** cptwease_ has joined #openstack15:13
*** swinn has quit IRC15:13
*** surabujin has quit IRC15:14
*** EmilienM has quit IRC15:14
*** cpschult has quit IRC15:14
*** rm_work|away is now known as rm_work15:14
*** rbradfor has joined #openstack15:15
*** julim has quit IRC15:15
*** otter768 has joined #openstack15:15
*** Bluedusk_ has joined #openstack15:15
*** surabujin has joined #openstack15:15
*** EmilienM has joined #openstack15:16
*** Bluedusk_ has quit IRC15:16
*** cptweasel has quit IRC15:16
*** geguileo has joined #openstack15:17
*** signed8bit_ZZZzz is now known as signed8bit15:17
*** EricGonczer_ has quit IRC15:17
*** julim has joined #openstack15:18
*** georgem1 has quit IRC15:18
*** nelsnelson has joined #openstack15:18
*** walterheck has quit IRC15:19
*** thumpba has joined #openstack15:19
*** jgjl has joined #openstack15:19
*** redbeard has quit IRC15:19
*** rbak has joined #openstack15:19
*** otter768 has quit IRC15:19
*** amotoki has joined #openstack15:20
*** Poornima has joined #openstack15:20
*** kapil__ has quit IRC15:20
*** k69 has quit IRC15:20
*** dhritishikhar has joined #openstack15:21
*** danzilio_ has joined #openstack15:21
*** danzilio_ has quit IRC15:21
*** danzilio_ has joined #openstack15:22
*** sayan has quit IRC15:22
*** danzilio_ has quit IRC15:22
*** mtanino has joined #openstack15:22
*** fnaval has joined #openstack15:22
saltlakeopenstack experts, I am trying to deply openstack on ubuntu with the ubuntu installer and despite having 2 disks connected to each VM, the installer keeps complaings that there aren't 5 nodes with 2 disks attached.15:22
*** surabujin has quit IRC15:22
saltlakeHow do I login to those VMs that are created and debug ?15:22
saltlakeIs there a default username/passwd that can be used to login ?15:23
*** avozza is now known as zz_avozza15:23
*** thumpba has quit IRC15:23
*** danzilio has joined #openstack15:24
*** danzilio has quit IRC15:24
*** surabujin has joined #openstack15:24
*** danzilio has joined #openstack15:24
*** MentalRay has joined #openstack15:24
*** elo has joined #openstack15:24
*** danzilio has joined #openstack15:25
*** danzilio has quit IRC15:25
*** hdd has joined #openstack15:25
*** Networkn3rd has joined #openstack15:25
*** nitti_ has joined #openstack15:25
*** aeperezt has joined #openstack15:25
*** swinn has joined #openstack15:26
*** tier has joined #openstack15:26
*** mrjazzcat has joined #openstack15:27
*** cpschult has joined #openstack15:27
*** jprovazn has quit IRC15:28
*** keith_newstadt has joined #openstack15:28
*** nitti has quit IRC15:28
*** yamahata has joined #openstack15:28
*** tier_ has quit IRC15:29
*** swinn is now known as swinn_15:29
*** walterheck has joined #openstack15:30
*** dhblaz has joined #openstack15:30
*** mpaolino has quit IRC15:31
*** mrieger has quit IRC15:31
*** dangers_` is now known as dangers15:32
*** corXi has quit IRC15:32
*** MilesDenver has quit IRC15:32
*** mrieger has joined #openstack15:32
*** redbeard has joined #openstack15:33
*** einarr has quit IRC15:33
*** smoser` is now known as smoser15:33
*** VW_ has quit IRC15:33
*** swinn_ is now known as swinn15:34
*** twikz has joined #openstack15:34
*** martinst is now known as martins-afk15:34
*** noslzzp has quit IRC15:34
*** swinn has quit IRC15:34
*** nlevinki has quit IRC15:34
*** jecarey has joined #openstack15:35
*** martins-afk is now known as martinst15:35
*** fnaval has quit IRC15:35
*** fnaval has joined #openstack15:35
*** EmilienM is now known as EmilienM|afk15:35
*** thesanchez has joined #openstack15:36
*** e0ne is now known as e0ne_15:37
*** einarr has joined #openstack15:38
*** dlfryar has joined #openstack15:38
*** lucendio has quit IRC15:38
*** rafael__ has joined #openstack15:38
rafael__hi all... could someone help with Neutron + ml2 plugin in a multi node environment? Specifically, I have 2 routers, one per project. In the first router I can bind the internal network port successfully but in the second router I can't bind the internal network port. The log just say "Failed to bind port on host xxx".15:39
*** swinn has joined #openstack15:40
*** ChuckC has joined #openstack15:40
*** ChuckC_ has quit IRC15:41
*** mrieger has quit IRC15:42
*** mpaolino has joined #openstack15:44
*** diegows has quit IRC15:44
*** popw has quit IRC15:45
*** keith_newstadt has quit IRC15:45
*** dcwilliams_VA has joined #openstack15:46
*** nelsnels_ has joined #openstack15:46
*** georgem1 has joined #openstack15:46
*** nelsnelson has quit IRC15:46
*** shashankhegde has quit IRC15:46
*** e0ne_ is now known as e0ne15:47
*** lucendio has joined #openstack15:48
*** brodrigue has joined #openstack15:48
newbismWhat is the thought process behind cinder and glance in regard to its method and purpose, I feel like im blurring the line between block and file based storage... I see instances are cloned to the nova node as qcow files, but I do have the option of starting an instance into a cinder volume... My cinder volume is a 24 sas FDR IB, using liotarget....15:49
newbismIm using the same storage exported another lun, for glance storage in /var/lib/glance/instances , although I just realized if i want more nodes.. this could be a problem?15:49
*** zz_gondoi is now known as gondoi15:50
newbismit bothers me there is a read/write through the network to the same storage15:50
*** mkolesni has quit IRC15:53
*** AlanClark has joined #openstack15:53
*** lucendio has quit IRC15:54
*** lucendio has joined #openstack15:54
*** iambox has joined #openstack15:56
*** rzerda has joined #openstack15:56
*** tier has quit IRC15:57
*** tier has joined #openstack15:58
*** cemason has joined #openstack15:58
*** ghostpl has joined #openstack15:58
*** zerda has quit IRC15:58
*** jcarter2 has joined #openstack15:58
*** tier has quit IRC15:59
*** c^ has joined #openstack16:00
*** mmdurrant has joined #openstack16:00
*** VW_ has joined #openstack16:00
*** tshefi has quit IRC16:00
*** jang1 has quit IRC16:00
*** sarob has joined #openstack16:00
*** tier has joined #openstack16:01
*** mohitsha_ has joined #openstack16:02
*** ghostpl has quit IRC16:02
*** spikeheadon has quit IRC16:03
*** neeti has joined #openstack16:03
*** jgjl has quit IRC16:03
*** Marga_ has joined #openstack16:03
*** lucendio has quit IRC16:04
*** ronis has quit IRC16:04
*** pblaho has quit IRC16:04
*** tsekiyama has joined #openstack16:04
*** c^ has quit IRC16:04
*** mohitsharma has quit IRC16:05
*** abehl has quit IRC16:05
*** thesanchez has quit IRC16:05
*** diegows has joined #openstack16:05
*** stanchan_ has joined #openstack16:05
*** lennyb has quit IRC16:05
*** galstrom_zzz is now known as galstrom16:06
*** kebray has joined #openstack16:06
*** krisd has quit IRC16:07
*** jang1 has joined #openstack16:07
*** rmcall has quit IRC16:08
*** mrieger has joined #openstack16:09
*** ghostpl has joined #openstack16:09
*** stanchan has quit IRC16:09
*** gigawhat has joined #openstack16:09
*** stanchan_ has quit IRC16:10
*** mrieger has quit IRC16:13
*** enrique_ayala has quit IRC16:13
*** stevemar has joined #openstack16:14
*** ghostpl has quit IRC16:14
*** ChuckC_ has joined #openstack16:14
*** coredump has quit IRC16:14
*** nmagnezi has quit IRC16:15
*** abehl has joined #openstack16:16
*** eth2 has quit IRC16:16
*** X123 has quit IRC16:17
*** fam_ has joined #openstack16:17
*** ChuckC has quit IRC16:17
*** nelsnels_ has quit IRC16:17
*** danman has joined #openstack16:18
*** coredump has joined #openstack16:18
*** eblake_ has joined #openstack16:18
*** EmilienM|afk is now known as EmilienM16:18
*** cemason has quit IRC16:18
*** Networkn3rd has quit IRC16:19
*** Networkn3rd has joined #openstack16:19
*** Ala has quit IRC16:20
*** ManikM has quit IRC16:20
*** Lancien has joined #openstack16:20
*** fam has quit IRC16:20
*** ManikM has joined #openstack16:20
*** AbyssOne_ is now known as a1|away16:21
*** balajiiyer has joined #openstack16:21
*** EricGonczer_ has joined #openstack16:21
*** EricGonczer_ has quit IRC16:22
*** jingwang has joined #openstack16:22
*** iambox has quit IRC16:22
*** dtrainor has joined #openstack16:23
*** jang1 has quit IRC16:23
*** nelsnelson has joined #openstack16:23
*** alop has joined #openstack16:24
*** epopt37 has quit IRC16:24
*** gondoi is now known as zz_gondoi16:25
*** shayneburgess has joined #openstack16:25
*** henrynash has joined #openstack16:26
*** epopt37 has joined #openstack16:26
*** georgem1 has quit IRC16:27
*** jang has joined #openstack16:27
*** k4n0 has quit IRC16:27
*** cemason has joined #openstack16:27
*** mikeoutland has joined #openstack16:27
*** neeti has quit IRC16:27
*** coolsvap is now known as coolsvap_16:28
*** Anticime1 is now known as Anticimex16:29
*** ghostpl has joined #openstack16:29
*** ghostpl has quit IRC16:29
*** ghostpl has joined #openstack16:29
*** wastrel has joined #openstack16:30
*** wastrel has joined #openstack16:30
*** Gala-G has joined #openstack16:30
*** tier has quit IRC16:30
*** nihilifer has quit IRC16:31
*** tvvcox has quit IRC16:31
*** mohitsha_ has quit IRC16:32
*** nitti_ has quit IRC16:33
*** shawnlow1 has joined #openstack16:33
*** nitti has joined #openstack16:33
*** tier has joined #openstack16:34
*** ghostpl_ has joined #openstack16:34
*** Raugturi has quit IRC16:34
*** junedm has quit IRC16:34
*** ghostpl has quit IRC16:34
*** Ephur has quit IRC16:35
*** shawnlower has quit IRC16:35
*** georgem1 has joined #openstack16:35
*** MentalRay has quit IRC16:36
*** abehl has quit IRC16:36
*** angdraug has joined #openstack16:36
*** redbeard has quit IRC16:37
*** foobloo has joined #openstack16:38
*** rnm has quit IRC16:38
*** daniel3_ has joined #openstack16:39
*** tier has quit IRC16:39
*** tier has joined #openstack16:39
*** Marga_ has quit IRC16:39
*** mikeoutland has quit IRC16:39
*** rwsu-afk is now known as rwsu16:40
*** MarkBaker has quit IRC16:40
*** Ala has joined #openstack16:41
*** diegows has quit IRC16:41
*** ncerny has quit IRC16:42
*** gaughen has quit IRC16:43
*** mpaolino has quit IRC16:43
*** fam__ has joined #openstack16:43
*** primechuck has quit IRC16:43
*** jingwang has quit IRC16:45
*** fam has joined #openstack16:45
*** Poornima has quit IRC16:45
*** jingwang has joined #openstack16:45
*** tnovacik has joined #openstack16:45
*** groen692 has quit IRC16:46
*** fam_ has quit IRC16:46
*** thedodd has joined #openstack16:47
*** gyee has joined #openstack16:47
*** cemason has quit IRC16:48
*** sputnik13 has joined #openstack16:48
*** fam__ has quit IRC16:48
*** MentalRay has joined #openstack16:48
*** gfidente has quit IRC16:49
*** jang has quit IRC16:50
*** dino82 has quit IRC16:50
*** shashankhegde has joined #openstack16:50
*** mpaolino has joined #openstack16:51
*** pbeskow has quit IRC16:51
*** jprovazn has joined #openstack16:51
*** wanjing has quit IRC16:51
*** ddmitriev has quit IRC16:51
*** Ala has quit IRC16:52
*** belmoreira has quit IRC16:52
*** mfalatic has joined #openstack16:53
*** anderbubble has joined #openstack16:53
*** balajiiyer has quit IRC16:53
*** Godfath3r has joined #openstack16:53
*** timsim has quit IRC16:54
*** e0ne is now known as e0ne_16:54
*** timsim has joined #openstack16:54
*** jobewan has joined #openstack16:55
*** galstrom is now known as galstrom_zzz16:55
*** redbeard has joined #openstack16:55
*** surabujin has quit IRC16:55
*** surabujin has joined #openstack16:55
*** dino82 has joined #openstack16:55
*** surabujin has quit IRC16:56
*** galstrom_zzz is now known as galstrom16:56
*** jang1 has joined #openstack16:57
fooblooif i lock down glance via policy.json, eg remove delete access for all but admins, users can still manipulate public images, right?16:57
*** GaryArmstrong has joined #openstack16:57
*** diegows has joined #openstack16:58
*** surabujin has joined #openstack16:58
*** annegent_ has joined #openstack16:58
*** sputnik13 has quit IRC16:59
*** maveric_amitc_ has quit IRC16:59
*** esheffield has quit IRC17:00
*** tnovacik has quit IRC17:00
*** Guest56803 has joined #openstack17:00
*** KaZeR has joined #openstack17:01
*** cemason has joined #openstack17:01
*** KaZeR has quit IRC17:01
*** GentileBen has quit IRC17:02
*** rmoe has quit IRC17:02
*** swinn has quit IRC17:03
saltlakeopenstack experts, am using ubunt openstack-installer to install openstack, I keep getting this complaint that there are not 5 nodes that have more than one disk. I have given each node 2 disks each 20GB partions.  Please advise17:03
*** dgbaley has joined #openstack17:04
*** primechuck has joined #openstack17:04
fooblooif i lock down glance via policy.json, eg remove delete access for all but admins, users without explicit roles defined in policy.json can still manipulate public images, right?17:04
*** nkrinner has quit IRC17:05
*** KaZeR has joined #openstack17:05
*** lmh has quit IRC17:05
*** rmcall has joined #openstack17:06
*** mpaolino has quit IRC17:06
*** MaxV has quit IRC17:06
*** scheuran has quit IRC17:07
*** thumpba has joined #openstack17:08
*** mpaolino has joined #openstack17:08
*** nivtukcio has quit IRC17:10
*** gashcrumb has quit IRC17:11
*** jagee has joined #openstack17:11
*** jobewan has quit IRC17:11
*** henrynash has quit IRC17:11
*** thumpba has quit IRC17:12
*** martinst is now known as martins-afk17:12
*** Raugturi has joined #openstack17:12
*** stamak has quit IRC17:13
*** gashcrumb has joined #openstack17:13
*** jagee has quit IRC17:14
*** daniel3_ has quit IRC17:14
*** shawnlow1 is now known as shawnlower17:14
*** jagee has joined #openstack17:14
*** vishwanathj has joined #openstack17:15
*** anderbubble has quit IRC17:15
saltlakeanyone with a similar problem ?17:15
*** jang1 has quit IRC17:15
*** Godfath3r has quit IRC17:15
*** gyee has quit IRC17:15
*** surabujin has quit IRC17:15
*** otter768 has joined #openstack17:16
*** georgem1 has quit IRC17:16
*** anderbubble has joined #openstack17:16
*** elo has quit IRC17:17
*** elo has joined #openstack17:17
*** surabujin has joined #openstack17:17
*** bigl0af has quit IRC17:17
*** alesales has quit IRC17:17
*** esheffield has joined #openstack17:17
*** kencjohnston has joined #openstack17:18
*** atmark has joined #openstack17:18
*** daniel3_ has joined #openstack17:18
*** georgem1 has joined #openstack17:18
*** abhi24 has joined #openstack17:18
*** kencjohnston has quit IRC17:18
*** pask81 has quit IRC17:19
*** berserk has joined #openstack17:19
*** jang1 has joined #openstack17:19
*** kupo24z has joined #openstack17:20
*** ghostpl_ has quit IRC17:20
*** signed8bit is now known as signed8bit_ZZZzz17:20
*** otter768 has quit IRC17:20
*** georgem1 has quit IRC17:20
*** Xurong has quit IRC17:21
*** indy21 has quit IRC17:21
*** Marga_ has joined #openstack17:21
*** Xurong has joined #openstack17:21
*** rmoe has joined #openstack17:21
*** stanchan has joined #openstack17:21
*** cemason has quit IRC17:21
*** jasonsb has quit IRC17:22
*** melwitt has joined #openstack17:22
*** jasonsb has joined #openstack17:22
*** jobewan has joined #openstack17:24
*** JuanDRay has quit IRC17:24
*** JuanDRay_ has quit IRC17:24
*** dhritishikhar has quit IRC17:25
*** leeantho has joined #openstack17:25
*** jistr has quit IRC17:25
*** fivmo has joined #openstack17:26
*** ronis has joined #openstack17:26
*** jcoufal has quit IRC17:26
*** daniel3_ has quit IRC17:26
*** jasonsb has quit IRC17:27
*** annashen has joined #openstack17:27
*** georgem1 has joined #openstack17:28
*** koolhead17 has quit IRC17:28
*** daniel3_ has joined #openstack17:29
*** MentalRay has quit IRC17:29
*** jjfall has joined #openstack17:29
*** bvandenh has quit IRC17:30
*** e0ne_ is now known as e0ne17:30
*** gyee has joined #openstack17:30
*** itarchitectkev has quit IRC17:31
*** enrique_ayala has joined #openstack17:31
*** jpich has quit IRC17:31
*** rfernandez has joined #openstack17:32
*** georgem1 has quit IRC17:32
*** DynamiteXXL has quit IRC17:32
*** nicodemos has joined #openstack17:33
*** jtomasek has quit IRC17:33
*** shashankhegde has quit IRC17:34
*** wanjing has joined #openstack17:34
*** daniel3_ has quit IRC17:34
*** daniel3_ has joined #openstack17:34
*** blomquisg has quit IRC17:35
*** rzerda has quit IRC17:35
*** githogori has joined #openstack17:36
*** prad has quit IRC17:36
*** pm90__ has joined #openstack17:36
*** prad has joined #openstack17:36
*** bjornar_ has joined #openstack17:37
*** masco has joined #openstack17:38
rafael__could someone help with Neutron + ml2 plugin in a multi node environment? Specifically, I have 2 routers, one per project. In the first router I can bind the internal network port successfully but in the second router I can't bind the internal network port. The log just say "Failed to bind port on host xxx" and "device xxx not defined on plugin".17:39
*** pm90_ has quit IRC17:39
*** yamamoto has quit IRC17:39
*** ttrifonov is now known as zz_ttrifonov17:39
*** swinn has joined #openstack17:39
*** pdb has quit IRC17:40
*** Nex6 has joined #openstack17:41
*** jjfall has quit IRC17:43
*** pm90__ has quit IRC17:43
*** JimFall has joined #openstack17:43
*** jjfall has joined #openstack17:44
*** abhi24 has quit IRC17:44
*** pm90_ has joined #openstack17:44
*** hdd has quit IRC17:44
*** jehb_ has joined #openstack17:44
*** koolhead17 has joined #openstack17:44
*** tnovacik has joined #openstack17:45
*** spikeheadon has joined #openstack17:46
*** jjfall has quit IRC17:47
*** dulek has quit IRC17:47
*** dulek has joined #openstack17:47
*** DynamiteXXL has joined #openstack17:48
*** Lancien has quit IRC17:50
*** shashankhegde has joined #openstack17:50
*** tier has quit IRC17:50
*** johnbelamaric has joined #openstack17:51
*** tier has joined #openstack17:51
*** johnsterdotcom has quit IRC17:51
*** eghobo has joined #openstack17:51
*** _cjones_ has joined #openstack17:51
*** Gala-G has quit IRC17:51
*** sparky43786 has joined #openstack17:52
*** annegent_ has quit IRC17:53
*** martins-afk is now known as martinst17:53
*** dizquierdo has joined #openstack17:55
*** cemason has joined #openstack17:55
*** johnsterdotcom has joined #openstack17:56
*** vigneshvar has joined #openstack17:56
*** toddnni has joined #openstack17:56
*** coolsvap_ is now known as coolsvap17:57
*** groen692 has joined #openstack17:58
*** rmcall has quit IRC17:58
*** Barker has quit IRC17:58
*** daniel3_ has quit IRC17:59
*** VW_ has quit IRC17:59
*** tier has quit IRC17:59
*** masco has quit IRC18:00
*** Gala-G has joined #openstack18:00
*** SumitNaiksatam has joined #openstack18:01
*** nicodemos has left #openstack18:01
*** tier has joined #openstack18:01
*** rmcall has joined #openstack18:01
*** okrieg has joined #openstack18:01
*** mareklug has quit IRC18:01
*** derekh has quit IRC18:02
*** mikeoutland has joined #openstack18:02
*** DynamiteXXL has quit IRC18:02
*** Barker has joined #openstack18:03
*** geaaru has quit IRC18:03
*** surabujin has quit IRC18:03
*** tkramer has quit IRC18:04
*** geaaru has joined #openstack18:04
*** balajiiyer has joined #openstack18:05
*** okrieg has quit IRC18:06
*** jang1 has quit IRC18:06
*** dgurtner has joined #openstack18:06
*** shashankhegde has quit IRC18:06
*** karimb has quit IRC18:06
*** daniel3_ has joined #openstack18:07
*** jang has joined #openstack18:07
*** daniel3_ has quit IRC18:07
*** daniel3_ has joined #openstack18:08
*** jareddlc has joined #openstack18:08
*** Gala-G has quit IRC18:09
*** hdd has joined #openstack18:09
*** jasonsb has joined #openstack18:09
*** dkingshott has joined #openstack18:11
*** harlowja has joined #openstack18:11
*** stanchan has quit IRC18:11
*** jasondotstar has joined #openstack18:11
*** stanchan has joined #openstack18:11
*** enrique_ayala has quit IRC18:11
*** jlrodriguez has joined #openstack18:11
*** etacsufbo has quit IRC18:11
*** thumpba has joined #openstack18:12
*** daniel3_ has quit IRC18:13
*** swinn has quit IRC18:13
*** daniel3_ has joined #openstack18:13
*** bluex-pl has quit IRC18:13
Sam-I-Amrafael__: sounds like a config issue18:14
*** juanluisrp has quit IRC18:14
*** yamahata has quit IRC18:14
*** jasondotstar has quit IRC18:14
*** thedodd has quit IRC18:14
*** swinn has joined #openstack18:16
*** cemason has quit IRC18:16
*** dizquierdo has quit IRC18:17
*** signed8bit_ZZZzz is now known as signed8bit18:17
*** jlrodriguez has quit IRC18:17
*** ManikM has quit IRC18:20
*** ManikM has joined #openstack18:20
*** coolsvap is now known as coolsvap_18:20
*** DynamiteXXL has joined #openstack18:20
*** georgem1 has joined #openstack18:21
*** gszasz has quit IRC18:22
*** pm90_ has quit IRC18:22
*** mpaolino has quit IRC18:23
*** patrickeast has joined #openstack18:24
*** SweetyDumling has joined #openstack18:24
*** fivmo has quit IRC18:25
*** groen692 has quit IRC18:25
*** blomquisg has joined #openstack18:26
*** bigl0af has joined #openstack18:26
*** jaosorior has quit IRC18:26
*** shashankhegde has joined #openstack18:29
*** wierenga_ has joined #openstack18:29
*** davi has joined #openstack18:30
*** davi has joined #openstack18:30
*** kawa2014 has quit IRC18:30
*** IRTermite has quit IRC18:30
*** Marga_ has quit IRC18:30
*** Marga_ has joined #openstack18:31
*** achanda has joined #openstack18:31
*** Raugturi has quit IRC18:32
*** foobloo has quit IRC18:32
*** larsam has quit IRC18:32
*** humbolt11 has joined #openstack18:32
*** humbolt11 has quit IRC18:32
*** amotoki has quit IRC18:32
*** signed8bit is now known as signed8bit_ZZZzz18:33
*** cemason has joined #openstack18:34
*** bdpayne has joined #openstack18:34
*** cucumber_ has joined #openstack18:34
*** Raugturi has joined #openstack18:34
*** humbolt11 has joined #openstack18:34
*** humbolt11 has quit IRC18:34
*** signed8bit_ZZZzz is now known as signed8bit18:35
*** humbolt1 has quit IRC18:35
*** Raugturi has quit IRC18:37
*** yamahata has joined #openstack18:37
*** jang has quit IRC18:37
*** swinn has quit IRC18:37
*** Raugturi has joined #openstack18:38
*** rushiagr is now known as rushiagr_away18:38
*** wierenga_ has quit IRC18:39
*** elo has quit IRC18:39
*** maveric_amitc_ has joined #openstack18:39
*** sputnik13 has joined #openstack18:39
*** tier has quit IRC18:41
*** e0ne is now known as e0ne_18:41
*** MentalRay has joined #openstack18:41
*** pelix has quit IRC18:42
*** tier has joined #openstack18:42
*** mrieger has joined #openstack18:43
*** sarob has quit IRC18:43
*** gashcrumb has quit IRC18:44
*** anderbubble has quit IRC18:44
*** e0ne_ is now known as e0ne18:45
Sam-I-Amrafael__: how are you building the tenant networks and routers?18:45
*** jang1 has joined #openstack18:45
*** IRTermite has joined #openstack18:45
Sam-I-Amdo you have more than one L3 agent?18:45
*** e0ne is now known as e0ne_18:45
rafael__#Sam-I-Am yes, I have 2 l3-agent18:45
*** DynamiteXXL has quit IRC18:46
*** gashcrumb has joined #openstack18:46
*** gashcrumb has joined #openstack18:46
rafael__@Sam-I-Am  and I they have ports on the external network and  I can ping both ports18:46
*** mcornea has quit IRC18:46
*** e0ne_ is now known as e0ne18:46
*** e0ne is now known as e0ne_18:47
*** e0ne_ is now known as e0ne18:48
*** dgurtner has quit IRC18:48
*** e0ne has quit IRC18:48
Sam-I-Ama tenant network should only bind to one l3 agent18:49
*** jehb_ has quit IRC18:49
*** marius_endian has quit IRC18:49
*** makije has quit IRC18:49
Sam-I-Amtalk in here, not pm18:50
rafael__ok18:50
*** KaZeR has quit IRC18:51
rafael__I have 2 tenants, each tenant has it own internal and external network18:51
*** afazekas has quit IRC18:51
*** mixomathoze has quit IRC18:51
*** jbell18 has joined #openstack18:51
*** humbolt1 has joined #openstack18:51
*** humbolt1 has quit IRC18:51
rafael__in tenant1  I can ping  both routers from the Internet18:51
rafael__ops... I can ping both routers from Internet18:52
*** vozcelik has joined #openstack18:52
rafael__the VMs from tenant1 can ping the  their gateway but the VMs from tenanat2 cant ping their gateway18:52
*** vozcelik has quit IRC18:52
*** JuanDRay has joined #openstack18:53
*** franred has quit IRC18:53
*** andresmujica has quit IRC18:53
*** JuanDRay_ has joined #openstack18:53
rafael__the problem is:  the router from tenant2 can't bind the internal network port18:53
rafael__I think both projects are using the same ml2.ini config file18:54
*** annegent_ has joined #openstack18:54
*** jckasper has quit IRC18:54
*** cemason has quit IRC18:54
*** Gala-G has joined #openstack18:54
*** lborda has quit IRC18:54
*** spikeheadon has quit IRC18:55
*** gary_perkins has quit IRC18:57
*** makije has joined #openstack18:57
*** Marga_ has quit IRC18:58
*** lpax_ has quit IRC18:58
*** Marga_ has joined #openstack18:58
*** annegent_ has quit IRC18:59
*** mixomathoze has joined #openstack18:59
*** geaaru has quit IRC18:59
*** dorftrottel has quit IRC18:59
*** annegent_ has joined #openstack19:00
*** pm90_ has joined #openstack19:00
*** j05h1 has joined #openstack19:01
*** j05h has quit IRC19:01
*** j05h2 has joined #openstack19:01
Sam-I-Amcan you pastebin your ml2 config files?19:02
*** balajiiyer1 has joined #openstack19:02
*** balajiiyer has quit IRC19:03
rafael__ok, just a min19:03
*** pm90_ has quit IRC19:03
*** thesanchez has joined #openstack19:03
*** pm90_ has joined #openstack19:04
*** enykeev has quit IRC19:04
*** brodrigue has quit IRC19:04
*** thedodd has joined #openstack19:05
*** j05h1 has quit IRC19:05
rafael__http://pastebin.com/pzqFGh6g19:05
*** ManikM has quit IRC19:05
*** sarob has joined #openstack19:06
rafael__I am using Juno19:06
*** enykeev has joined #openstack19:06
*** ngoracke has quit IRC19:06
*** bill_az_ has joined #openstack19:07
*** lborda has joined #openstack19:08
*** signed8bit is now known as signed8bit_ZZZzz19:08
Sam-I-Amlooking19:09
*** angdraug has quit IRC19:09
*** ivar-lazzaro has joined #openstack19:09
rafael__ty19:09
*** VW_ has joined #openstack19:10
Sam-I-Amlocal_ip is different for each node, right?19:10
rafael__yes19:10
*** andresmujica has joined #openstack19:10
*** humbolt1 has joined #openstack19:10
rafael__they are diferent19:10
*** humbolt1 has quit IRC19:10
rafael__this file is from the network node19:10
*** jp_at_hp has quit IRC19:11
*** ManikM has joined #openstack19:11
rafael__but in controller and in compute the ml2 files are like this19:11
*** marius_endian has joined #openstack19:11
*** ivar-lazzaro has quit IRC19:11
*** signed8bit_ZZZzz is now known as signed8bit19:11
*** ddmitriev has joined #openstack19:11
*** ivar-lazzaro has joined #openstack19:12
*** githogori has quit IRC19:12
Sam-I-Amthere should be at least one flat/vlan type defined for your external network with a bridge_mapping in [ovs] and an [agent] with tunnel_types19:12
Sam-I-Amhttp://docs.openstack.org/juno/install-guide/install/apt/content/neutron-network-node.html19:12
rafael__I am using GRE tunnels19:12
*** ethX has joined #openstack19:12
*** humbolt1 has joined #openstack19:12
rafael__and it work perfectly in a latter installation19:12
*** humbolt1 has quit IRC19:12
*** marius_endian has quit IRC19:13
*** gaud has joined #openstack19:13
*** EricGonczer_ has joined #openstack19:13
rafael__in a previous installation***19:13
*** berserk has quit IRC19:13
Sam-I-Amwhat was different there?19:13
*** humbolt1 has joined #openstack19:13
*** Barker has quit IRC19:13
*** humbolt1 has quit IRC19:13
rafael__I was using havana19:13
*** berserk has joined #openstack19:13
rafael__and havana use openvswitch-plugin instead ml2 plugin19:14
rafael__but the file is identical19:14
rafael__and in this installation I can pi9ng the VMs fron tenant1 without problems19:14
rafael__but the tenant2's router cant bind the internal network, so my VMs cant reach the internet19:15
gaudHi,   The concept of meta-data and user-data is a bit weird to me..  what is the difference between both?19:15
Sam-I-Amrafael__: some config options have changed with ml219:16
*** yograterol has joined #openstack19:16
*** KaZeR has joined #openstack19:16
Sam-I-Amalso make sure you dont have an ovs_neutron_plugin.ini file overwriting stuff19:16
*** georgem1 has quit IRC19:16
Sam-I-Amthe juno install guide has most of the config you need19:16
*** githogori has joined #openstack19:16
*** humbolt1 has joined #openstack19:17
rafael__I don't have ovs_neutron_plugin because I am using a new server19:17
*** markus_z has quit IRC19:17
*** otter768 has joined #openstack19:17
rafael__I didnt upgrade, I started from zero19:17
*** humbolt1 has quit IRC19:17
RedRathi guys, isn't possible to set gateway from subnet out of cidr range?19:17
*** rajathagasthya has joined #openstack19:17
RedRatexample: neutron subnet-create ext-net --name ext-subnet \19:17
RedRat  --allocation-pool start=46.105.252.216,end=46.105.252.219\19:17
RedRat    --disable-dhcp --gateway 176.31.105.254 46.105.252.216/2419:17
rafael__and I can't see the what config options changed in ml219:17
*** Barker has joined #openstack19:17
*** EricGonczer_ has quit IRC19:18
rafael__do you know what changed from ovs_neutron_plugin to ml2_plugin?19:18
*** humbolt1 has joined #openstack19:18
*** geguileo has quit IRC19:18
*** ethX is now known as eth219:18
*** cdent has quit IRC19:18
*** humbolt1 has quit IRC19:18
*** georgem1 has joined #openstack19:19
Sam-I-AmRedRat: networking doesnt work that way19:19
Sam-I-Amrafael__: for the most part, the ovs/agent config stuff moved to ml2_conf.ini... namely the [agent] and [ovs] sections19:20
*** humbolt1 has joined #openstack19:20
*** dcwilliams_VA has quit IRC19:20
*** humbolt1 has quit IRC19:20
rafael__Sam-I-Am: I read that the [agent] session is not needed  anymore. I tried with and without it with the same result19:21
*** jbell18 has quit IRC19:21
*** otter768 has quit IRC19:21
*** ngoracke has joined #openstack19:21
Sam-I-Amwell, the tunnel stuff moved to [agent] in ml2_conf.ini19:22
Sam-I-Amfrom [ovs] where it was before19:22
*** vilce has quit IRC19:22
Sam-I-Amtunnel_type -> tunnel_types19:22
*** humbolt1 has joined #openstack19:22
Sam-I-Ambut old config options are still mostly supported, so i dont think thats your issue19:22
*** dcwilliams_VA has joined #openstack19:22
*** humbolt1 has quit IRC19:22
RedRatSam-I-Am, I'm trying to associate my neutron to my ripe ip with this example19:23
RedRathttps://dohuyhoang.github.io/openstack/ovh/neutron/2014/07/07/Configure-OpenStack-network-on-OVH.html19:23
rafael__yes, I dont thin too. Because I have one project working perfectly19:23
Sam-I-Amwhy doesnt your network node config have an external network mapping?19:23
*** jobewan has quit IRC19:23
*** shibby has joined #openstack19:23
*** e0ne has joined #openstack19:24
*** rajathagasthya has quit IRC19:24
rafael__I've added the external network by horizon, clicking in the "set gateway" in the router session19:24
*** rajathagasthya has joined #openstack19:24
Sam-I-AmRedRat: this looks like a hack19:24
rafael__and it worked19:24
*** Rajendra has joined #openstack19:25
*** humbolt1 has joined #openstack19:25
rafael__I am pinging the both external networks, from both projects19:25
Sam-I-Ami have to go for a bit19:25
rafael__my problema is the internal port from project219:25
*** humbolt1 has quit IRC19:25
*** rajathagasthya has quit IRC19:25
*** scott__ has joined #openstack19:25
rafael__Sam-I-Am: ok, ty for your help19:26
scott__How would I use openstack metadata inside of the cloud-init configuration?19:26
*** jang1 has quit IRC19:26
scott__Trying to use cloud-init to set the root password.19:26
*** brodrigue has joined #openstack19:27
*** jang1 has joined #openstack19:27
*** Gala-G has quit IRC19:28
*** Rajendra has quit IRC19:29
*** pnavarro has joined #openstack19:30
*** mrjazzcat has quit IRC19:30
*** Arminder- has joined #openstack19:30
*** surabujin has joined #openstack19:31
*** Arminder has quit IRC19:32
*** georgem1 has quit IRC19:33
*** two_oes has joined #openstack19:33
*** cemason has joined #openstack19:34
*** rfolco has quit IRC19:34
larsksscott__: and you are trying to provide a root password in the instance metadata, and then fetch that value from your cloud-init script?19:34
*** cucumber_ has quit IRC19:34
*** achanda has quit IRC19:35
*** dgbaley has quit IRC19:36
scott__larsks, yes19:36
*** georgem1 has joined #openstack19:37
*** vishwanathj has quit IRC19:37
*** annashen has quit IRC19:37
*** _shaps__ has joined #openstack19:38
*** JuanDRay_ has quit IRC19:38
*** annashen has joined #openstack19:38
*** Marga_ has quit IRC19:38
*** Marga_ has joined #openstack19:39
larsksscott__: so, data you provide to --meta is available via http://169.254.169.254/openstack/latest/meta_data.json19:39
larsksssh keys are generally preferred, because there are no shared secrets anywhere.19:40
*** jobewan has joined #openstack19:41
larsksThere is also the option of generating a *random* password inside the image, then passing it back out where it is available via 'nova get-password'19:41
larsksThere is a mechanism for encrypting/descrypting this.19:41
*** upenrc has joined #openstack19:41
*** diegows has quit IRC19:41
*** tkramer has joined #openstack19:41
*** siso has joined #openstack19:42
*** AlanClark has quit IRC19:42
*** jckasper has joined #openstack19:42
*** sivy has quit IRC19:42
larsksscott__: reference for the password generation/retrieval stuff: https://blueprints.launchpad.net/horizon/+spec/decrypt-and-display-vm-generated-password19:43
*** humbolt1 has joined #openstack19:43
*** humbolt1 has quit IRC19:43
upenrcI am unable to either attach a new cinder volume to a nova instance OR BOOT from Image(Create a new volume).... However, creating an empty volume on my V7000 backend works.19:44
*** humbolt1 has joined #openstack19:44
*** humbolt1 has quit IRC19:44
*** achanda has joined #openstack19:45
*** humbolt1 has joined #openstack19:45
*** humbolt1 has quit IRC19:45
scott__thanks, will review all of it19:46
*** siso has quit IRC19:49
*** harlowja is now known as harlowja_away19:50
*** designbybeck has quit IRC19:51
*** jwalcik has quit IRC19:52
*** jprovazn has quit IRC19:52
*** pixelbeat has quit IRC19:52
*** rafael__ has quit IRC19:53
*** EmilienM is now known as EmilienM|afk19:53
*** redbeard has quit IRC19:53
*** balajiiyer1 has quit IRC19:54
*** signed8bit is now known as signed8bit_ZZZzz19:54
*** cemason has quit IRC19:54
*** ZZelle_ has joined #openstack19:54
*** scott__ has quit IRC19:55
*** signed8bit_ZZZzz is now known as signed8bit19:56
*** dcwilliams_VA has quit IRC19:57
*** dkingshott has quit IRC19:58
*** dulek has quit IRC19:58
*** annegent_ has quit IRC19:58
*** anderbubble has joined #openstack19:59
*** nitti_ has joined #openstack19:59
*** VW_ has quit IRC19:59
*** davi has quit IRC19:59
*** diegows has joined #openstack19:59
*** jwalcik has joined #openstack19:59
*** nitti__ has joined #openstack20:00
*** nitti_ has quit IRC20:00
*** rfolco has joined #openstack20:00
*** Raugturi has quit IRC20:00
*** foobloo has joined #openstack20:01
*** annashen has quit IRC20:02
*** nitti has quit IRC20:02
*** barclaac has joined #openstack20:02
*** barclaac|2 has joined #openstack20:02
*** barclaac|2 has quit IRC20:02
*** VW_ has joined #openstack20:02
*** rfernandez has quit IRC20:02
*** AnilV4 has quit IRC20:03
*** cptwease_ has quit IRC20:03
*** rmcall has quit IRC20:03
*** comay has quit IRC20:04
*** annegent_ has joined #openstack20:04
*** rmcall has joined #openstack20:05
*** geoffsullivan has joined #openstack20:05
*** shayneburgess has quit IRC20:06
*** dkingshott has joined #openstack20:06
*** prad has quit IRC20:06
*** saltlake2 has joined #openstack20:07
*** geoffsullivan is now known as sullivg220:07
*** swinn has joined #openstack20:07
*** saltlake has quit IRC20:07
*** thedodd has quit IRC20:07
*** timsim has quit IRC20:08
*** RedRat has quit IRC20:09
*** jareddlc has quit IRC20:09
*** prad has joined #openstack20:10
*** clayb has joined #openstack20:10
*** brokencycle has joined #openstack20:11
*** georgem1 has quit IRC20:12
*** shayneburgess has joined #openstack20:12
*** georgem1 has joined #openstack20:12
*** sarob has quit IRC20:13
*** wanjing has quit IRC20:13
*** Raugturi has joined #openstack20:14
*** wanjing has joined #openstack20:14
*** daniel3_ has quit IRC20:14
*** EricGonczer_ has joined #openstack20:15
*** newbism has quit IRC20:15
*** sarob has joined #openstack20:16
*** jwalcik has quit IRC20:16
*** shayneburgess1 has joined #openstack20:16
*** ddmitriev has quit IRC20:17
*** shayneburgess has quit IRC20:17
*** johnsterdotcom has quit IRC20:18
*** wanjing has quit IRC20:19
*** daniel3_ has joined #openstack20:19
*** perrier has quit IRC20:19
*** perrier has joined #openstack20:19
*** achanda has quit IRC20:20
*** tonybird has joined #openstack20:20
*** ManikM has quit IRC20:21
*** ghostpl has joined #openstack20:21
*** Manny has joined #openstack20:21
*** achanda has joined #openstack20:21
*** shashankhegde has quit IRC20:21
*** shayneburgess1 has quit IRC20:21
*** johnsterdotcom has joined #openstack20:21
*** thedodd has joined #openstack20:21
*** nshah has left #openstack20:22
*** shashankhegde has joined #openstack20:24
*** vishwanathj has joined #openstack20:24
*** muadgib has joined #openstack20:24
*** dgel has joined #openstack20:24
*** cody-somerville has joined #openstack20:24
*** cemason has joined #openstack20:25
*** dgel has quit IRC20:25
*** sullivg2 has quit IRC20:25
*** EricGonczer_ has quit IRC20:25
*** ghostpl has quit IRC20:25
*** EricGonczer_ has joined #openstack20:26
*** nitti has joined #openstack20:26
*** nitti__ has quit IRC20:27
*** koolhead17 has quit IRC20:27
*** cptweasel has joined #openstack20:28
*** lpax_ has joined #openstack20:28
*** tier has quit IRC20:29
*** tier has joined #openstack20:29
*** jehb_ has joined #openstack20:30
*** anderbubble has quit IRC20:31
*** PaulCuzner has quit IRC20:31
*** sarob has quit IRC20:31
*** EricGonczer_ has quit IRC20:31
*** achanda has quit IRC20:32
*** bbcmicrocomputer has quit IRC20:32
*** georgem1 has quit IRC20:32
*** georgem1 has joined #openstack20:33
*** arunkant has quit IRC20:33
*** lucendio has joined #openstack20:33
*** filippos_ has quit IRC20:33
*** harlowja_away is now known as harlowja20:33
*** georgem1 has quit IRC20:33
*** 6A4ABBR4J has quit IRC20:34
*** gnuoy has quit IRC20:34
*** melmoth has quit IRC20:34
*** IlyaE has joined #openstack20:34
*** pm90_ has quit IRC20:34
*** gnuoy has joined #openstack20:34
*** penick has joined #openstack20:35
*** filippos has joined #openstack20:35
*** lcurtis has joined #openstack20:36
*** jwalcik has joined #openstack20:37
*** larsam has joined #openstack20:39
*** achanda has joined #openstack20:40
*** IlyaE has quit IRC20:40
*** IlyaE has joined #openstack20:40
*** KaZeR has quit IRC20:41
*** fnaval_ has joined #openstack20:41
*** baoli has quit IRC20:42
*** nshah has joined #openstack20:42
*** annashen has joined #openstack20:43
*** designbybeck has joined #openstack20:44
*** andresmujica has quit IRC20:44
*** pm90_ has joined #openstack20:44
*** fnaval has quit IRC20:45
*** pm90__ has joined #openstack20:45
*** cemason has quit IRC20:45
*** nshah has left #openstack20:46
*** sullivg2 has joined #openstack20:46
*** dhblaz has quit IRC20:47
*** gashcrumb has quit IRC20:47
*** KaZeR has joined #openstack20:48
*** oro has joined #openstack20:48
*** pm90_ has quit IRC20:49
*** _shaps__ has quit IRC20:50
*** nelsnelson has quit IRC20:51
*** linforpros has joined #openstack20:52
*** georgem1 has joined #openstack20:53
linforprosHello everybody on the channel. Do I understand well? In order to install JUNO on fedora 21 using packstack, I must install https://repos.fedorapeople.org/repos/openstack/openstack-juno/rdo-release-juno-1.noarch.rpm, is this OK?20:53
*** jpena has quit IRC20:53
*** JimFall has quit IRC20:54
*** walterheck has quit IRC20:55
*** timsim__ has joined #openstack20:56
*** githogori has quit IRC20:56
larskslinforpros: that is a fine place to start, yes.  You can obviously choose to install from source or something, but using the packages is easier.20:56
*** MarkBaker has joined #openstack20:56
*** foobloo has left #openstack20:57
*** fnaval_ has quit IRC20:57
*** fnaval has joined #openstack20:57
*** blair has joined #openstack20:58
*** gaud has quit IRC20:58
*** ejat has joined #openstack20:58
*** georgem1 has quit IRC20:58
linforproslarsks: after the installation I am planning to install nova-docker. I can see that my current fodora server has python3-pip, pip is required to install nova-docker, but from what I know already it must be python-pip, not python3-pip. What should I plan to do?20:59
*** georgem1 has joined #openstack21:00
*** ejat has quit IRC21:00
*** ejat has joined #openstack21:00
*** fawadkhaliq has joined #openstack21:00
*** eglynn has quit IRC21:00
*** walterheck has joined #openstack21:01
linforproslarsks: the command pip install .... will not work, unless it is allowable to pip3 install ...., ?I never tried.21:01
*** IlyaE has quit IRC21:02
*** jrvlima has joined #openstack21:02
*** IlyaE has joined #openstack21:02
*** georgem1 has quit IRC21:02
*** tier_ has joined #openstack21:03
*** lblanchard has quit IRC21:03
*** pboros has quit IRC21:03
*** rmartinelli has quit IRC21:03
PhibsI'd use CentOS 721:04
Phibsbut hey :)21:04
*** Phibs has left #openstack21:04
*** MarkBaker has quit IRC21:05
*** tier has quit IRC21:05
*** dmz has quit IRC21:05
*** IlyaE has quit IRC21:06
*** gnuoy has quit IRC21:06
*** Barker has quit IRC21:06
*** gnuoy has joined #openstack21:07
larskslinforpros: I'm not sure I understand your question. The openstack packages all use python2 (not python3) by default, so you shouldn't have any problem install python-pip.21:07
larsksAnd then using it to 'pip install nova-docker'.21:07
*** two_oes has quit IRC21:07
*** zul has quit IRC21:08
*** IlyaE has joined #openstack21:08
*** zul has joined #openstack21:08
*** githogori has joined #openstack21:08
*** kebray has quit IRC21:09
*** tier_ has quit IRC21:09
*** ajo has quit IRC21:09
*** tier has joined #openstack21:09
*** IlyaE has quit IRC21:10
*** annegent_ has quit IRC21:10
*** ajo has joined #openstack21:10
*** ejat has quit IRC21:10
*** haramaki has quit IRC21:10
*** georgem1 has joined #openstack21:11
*** kebray has joined #openstack21:11
*** ejat has joined #openstack21:11
*** ejat has quit IRC21:11
*** ejat has joined #openstack21:11
*** haramaki has joined #openstack21:11
*** Barker has joined #openstack21:12
*** mattgriffin has quit IRC21:13
*** bjornar_ has quit IRC21:14
*** jang1 has quit IRC21:14
*** sivy has joined #openstack21:15
*** mrmartin has quit IRC21:15
*** jang has joined #openstack21:15
*** wanjing has joined #openstack21:15
*** haramaki has quit IRC21:16
*** ChuckC_ is now known as ChuckC21:16
linforproslarsks: I am reading the README.rst that one should do python setup.py install. But INSTALLATION.rst day pip install nova-docker. I am confused. Which one is better?21:16
linforprossay: pip install nova-docker - soryy for typo.21:17
*** mrmartin has joined #openstack21:17
larskslinforpros: 'pip install nova-docker' will actually download and install nova-docker for you. I'm not sure what version you will get.  You probably don't want that.21:17
larsksIf you clone the source repository, you probably first want to check out the stable/juno branch, if you're using nova from juno,21:17
*** otter768 has joined #openstack21:18
larsksand then either "python setup.py install" or "pip install .", both of which will do approximately the same thing.21:18
*** oro has quit IRC21:18
*** thatguy has joined #openstack21:18
*** thedodd has quit IRC21:18
*** mattgriffin has joined #openstack21:18
*** karimb has joined #openstack21:19
*** anderbubble has joined #openstack21:19
thatguywhat if we could issue a nova command that would provide detailed logging? does that make sense? ..instead of changing the log level...21:19
*** mrieger has quit IRC21:19
*** dmz has joined #openstack21:21
*** dmz has joined #openstack21:21
larsksthatguy: What's wrong with changing the log level?21:21
*** BOKALDO has quit IRC21:21
linforprosI am planning to do: packstack --allinone (there will be an error about mariadb but I will fix it). Afterwards I will clone the nova-docker repo and will try to do pip install nova-docker. I tried python setup.py install, but it wrecked my system.21:21
thatguyi had a capacity issue but the scheduler log wasnt showing the true error, so thats why i ask about it. there is apprehension with changing the logging levels21:21
larsksthatguy: And also, why is the log level "special"? What if I want to change my default quotas via the same mechanism?21:21
larsksOr some other arbitrary setting :)21:21
*** IlyaE has joined #openstack21:22
*** mrmartin has quit IRC21:22
larsksI would just change the log level and restart.21:22
*** Maveric7911 has quit IRC21:22
*** otter768 has quit IRC21:22
*** ghostpl has joined #openstack21:22
larskslinforpros: again, highly recommended *not* to use 'pip install nova-docker', because I don't know which version you'll get.21:22
linforprosOK.21:22
larsksIt is unlikely that running 'python setup.py install' wrecked your system.  Can you provide details?21:22
*** upenrc has left #openstack21:23
*** mfalatic has quit IRC21:23
*** stanchan_ has joined #openstack21:23
linforproslarsks: I just reinstalled the system so no logs are available. Enough to say, nova list produced some python errors.21:23
larskslinforpros: note what I said earlier about making sure the version of nova-docker you install matches your installed openstack environment.21:24
thatguyisnt changing the log level likely to impact nova performance as well as change the io of the logging server as well as generate more traffic? we could end up dos'ing ourselves, no?21:24
larsksIf you try installing from the 'master' branch onto Juno, for example, you may end up upgrading some python modules beyond what is supported by your installed environment.21:24
*** JuanDRay has quit IRC21:24
*** siso has joined #openstack21:24
*** joesavak has joined #openstack21:24
*** RedRat has joined #openstack21:25
*** Networkn3rd has quit IRC21:25
larsksthatguy: I...guess?  If you had a really active environment and had not planned your logging infrastructure appropriately? Otherwise that is not something I have ever worried about.21:26
*** siso has quit IRC21:26
*** stanchan has quit IRC21:26
*** SweetyDumling has quit IRC21:28
*** kebray has quit IRC21:28
*** rfolco has quit IRC21:28
*** siso has joined #openstack21:28
*** kebray has joined #openstack21:28
thatguylarsks: changing the logging level in a well-planned, large and active production site with customers seems like a high risk decision21:29
*** lpax_ has quit IRC21:30
larsksthatguy: You would certainly know your environment better than I!21:30
*** antons has joined #openstack21:30
*** IlyaE has quit IRC21:30
*** packet has quit IRC21:30
thatguylarsks: thanks, have a good day!21:30
*** toddnni_ has joined #openstack21:31
linforproslarsks: thank you for baering with me.21:31
*** lionel has quit IRC21:31
linforproslarsks: Is this the only way to properly setup nova-docker on fedora 21? http://bderzhavets.blogspot.com/2015/01/set-up-nova-docker-on-openstack-rdo.html21:31
*** rfolco has joined #openstack21:32
linforproslarsks: the reason I ask is that it is my third atttempt to do that an a fedora2121:32
larskslinforpros: I am running nova-docker on fedora 21.21:32
*** sarob has joined #openstack21:32
larsksI haven't seen that particular link before.  You shouldn't need to build your own systemd packages!  That seems crazy.21:32
*** toddnni has quit IRC21:33
*** toddnni_ is now known as toddnni21:33
linforprosthen how did you do that?21:33
larsksI grabbed the source code, ran "git checkout stable/juno" and then "python setup.py install".21:33
*** pm90__ has quit IRC21:33
*** achanda has quit IRC21:33
larsksYou *may* need an updated systemd, but you can get that with 'yum --enablerepo=updates-testing install systemd"21:33
*** Marga_ has quit IRC21:33
*** pm90_ has joined #openstack21:34
larsks...and then followed the README at https://github.com/stackforge/nova-docker for configuring nova.21:34
larsksAnd glance.21:34
*** Marga_ has joined #openstack21:34
*** IlyaE has joined #openstack21:34
larskslinforpros: if you do run into issues, note that there is a #nova-docker channel, although it's pretty quiet.21:35
linforprosthe configuraion part I did once. And glance was working with docker images. nova-compute though could not start21:35
linforprosYes, it is quiet.21:35
thatguylarsks: ok, what about this: use a whitelist to force nova debug logging on specific flavors? crazy?21:35
*** IlyaE has quit IRC21:36
*** thedodd has joined #openstack21:36
linforproslarsks: systemd-216-17.fc21.x86_64 already installed and latest version21:36
thatguylarsks: i have a situation where a flavor has been added but its not working...and we dont want to turn on debug logging everywhere21:36
larsksthatguy: I...huh.  I don't know.  Isn't it already possible to control specific *subsystems* with some granularity?  The 'default_log_levels' setting.  Does that help at all?21:36
larskslinforpros: sorry, when I said, "updates-testing" I meant "rawhide".  yum --enablerepo=rawhide install systemd21:37
thatguylarsks: no im just wondering about it because this software is evolving all the time and i dont know all the different situation people run into and, well, troubleshooting these issues is often convoluted21:37
*** lionel has joined #openstack21:38
*** baoli has joined #openstack21:38
*** achanda has joined #openstack21:38
thatguylarsks: so if i had the same struggle to get a flavor working and understand the root cause of why there is an error in the scheduler log, i would consider that a need for a feature or enhancement of some kind21:38
*** blairo has joined #openstack21:38
thatguylarsks: perhaps im in the wrong channel?21:39
*** balajiiyer has joined #openstack21:39
larsksthatguy: you could absolutely ask the devs in #openstack-nova.  Or you could actually code up the feature and submit it has a change proposal...21:39
*** balajiiyer has quit IRC21:39
*** JRobinson__ has joined #openstack21:39
*** balajiiyer has joined #openstack21:39
*** Freekie has quit IRC21:40
*** balajiiyer has quit IRC21:40
*** balajiiyer has joined #openstack21:40
*** sullivg2 has quit IRC21:40
*** ronis has quit IRC21:41
*** blair has quit IRC21:41
*** Freekie has joined #openstack21:42
*** toddnni has quit IRC21:42
*** diogogmt has joined #openstack21:42
*** diogogmt has quit IRC21:43
*** toddnni has joined #openstack21:43
*** shanlar has quit IRC21:43
*** sergef has quit IRC21:43
*** lborda has quit IRC21:44
*** julim has quit IRC21:45
*** EmilienM|afk is now known as EmilienM21:45
*** shanlar has joined #openstack21:46
linforproslarsks: What version of systemd do you run on the host where you installed nova-docker?21:46
larsksI am currently running systemd-218-3.fc22.x86_64, installed from the 'rawhide' repository.21:47
linforprosNow if you disable rawhide, will it get downgraded to what is available in a regular fedora, updates?21:48
*** d34dh0r53 is now known as blarnath21:48
*** arunkant has joined #openstack21:48
larskslinforpros: yum will never downgrade packages (unless you run "yum downgrade").21:48
*** toddnni has quit IRC21:48
*** belmoreira has joined #openstack21:48
linforprosOk. because the command you quoted doesn not work here, should I then do: yum install fedora-repos-rawhide yum-utils21:49
*** toddnni has joined #openstack21:49
*** SweetyDumling has joined #openstack21:50
larsksI'm curious, do you not already have the 'rawhide' repository defined but disabled? I thought that was the default.21:51
larsksMaybe it's not.  Your suggestion sounds reasonable.21:51
*** dyasny has quit IRC21:51
*** Barker has quit IRC21:52
*** stanchan has joined #openstack21:52
larsksYou shouldn't need yum-utils for this (you're only enabling rawhide for a single command, not persistently)21:52
*** pnavarro has quit IRC21:52
linforproswhen I do this: yum --enablerepo=rawhide install systemd21:52
larsksRight, you will need to install fedora-repos-rawhide first if you don't already the rawhide repository available.21:53
linforprosI get this: Error getting repository data for rawhide, repository not found. And it is a prestine fedora server installation21:53
larsksRight.  I was saying "yes" to installing fedora-repos-rawhide, "no" to installing yum-utils.  Unless you want it; it's useful.  Just not necessary.21:53
linforprosgot it.21:54
*** mrieger has joined #openstack21:54
*** shashankhegde has quit IRC21:54
*** sarob has quit IRC21:54
*** stanchan_ has quit IRC21:55
*** rbowen has quit IRC21:55
*** dooshtuRabbit1 has quit IRC21:55
*** KaZeR has quit IRC21:55
*** hhuang has quit IRC21:56
*** RedRat_ has joined #openstack21:56
*** hhuang has joined #openstack21:56
*** kebray has quit IRC21:56
*** KaZeR has joined #openstack21:56
*** comay has joined #openstack21:56
*** Raugturi has quit IRC21:57
*** thangp has quit IRC21:57
*** Reyu is now known as ReyuAway21:57
*** bradjones has quit IRC21:57
*** rbowen has joined #openstack21:58
*** MasterPiece has quit IRC21:58
*** RedRat has quit IRC21:58
*** KaZeR has quit IRC21:59
*** KaZeR has joined #openstack21:59
*** shashankhegde has joined #openstack21:59
linforprosI ran yum install systemd with rawhide enabled. Can I safely disable the rawhide repo, without future repercussions?22:00
*** IlyaE has joined #openstack22:00
*** enterprisedc has quit IRC22:00
*** bradjones has joined #openstack22:01
*** karimb has quit IRC22:02
*** Raugturi has joined #openstack22:02
*** Vdash has joined #openstack22:03
*** annegent_ has joined #openstack22:04
*** enterprisedc has joined #openstack22:04
linforprosOk never mind about the rawhide. I am running systemd 218 right now.22:04
*** siso has quit IRC22:04
*** martinst is now known as martins-afk22:04
*** siso has joined #openstack22:04
*** blarnath is now known as d34dh0r5322:05
*** annegent_ has quit IRC22:05
*** joesavak has quit IRC22:05
*** tier has quit IRC22:05
*** tonybird has quit IRC22:06
*** siso_ has joined #openstack22:06
*** pjnaik1990__ has joined #openstack22:06
linforprosI launched packstack and I am waiting for the error bout mariadb. It always come up.22:06
pjnaik1990__ Hello, I am a newbie to Openstack. I found it very interesting and a good platform to learn. I read about the Congress project and would like to contribute towards it. Could anybody help me with any idea or a small part where I could contribute.22:06
*** daniel3_ has quit IRC22:07
*** achanda has quit IRC22:08
*** IlyaE has quit IRC22:08
*** avagi has joined #openstack22:09
*** Raugturi has quit IRC22:10
*** siso has quit IRC22:10
*** siso_ is now known as siso22:10
*** nicasio has joined #openstack22:11
*** avagi has left #openstack22:11
nicasiodeploy network node, is possible in virtual machine?22:11
*** jroberts235 has joined #openstack22:14
swinnnicasio: yes it can be deployed in a vm22:14
*** kowens12 has joined #openstack22:14
jroberts235Does anyone here know how to turn off security groups temporily?22:15
swinnpjnaik1990__: https://wiki.openstack.org/wiki/How_To_Contribute22:15
*** kevinbenton_ is now known as kevinbenton22:15
*** epcim has joined #openstack22:16
jroberts235can I use iptable -F  on the compute nodes?22:17
*** vigneshvar has quit IRC22:17
*** rdaly2 has quit IRC22:17
*** gildub has joined #openstack22:18
*** ejat- has joined #openstack22:19
*** shayneburgess has joined #openstack22:19
jroberts235asssuming the default rules are allow?22:19
*** ejat has quit IRC22:19
*** pixelbeat has joined #openstack22:19
*** jecarey has quit IRC22:20
*** lcurtis has quit IRC22:20
*** Lee1092 has quit IRC22:20
*** thedodd has quit IRC22:21
*** Manny has quit IRC22:21
*** siso has quit IRC22:21
*** ManikM has joined #openstack22:21
*** tkramer has quit IRC22:22
*** ejat has joined #openstack22:22
*** ejat has joined #openstack22:22
*** georgem1 has quit IRC22:22
jroberts235I am ultimately trying to use multicast accross VLAN provider networks.  I know that at the compute node level it works, so it must be  iptables blocking it.22:23
*** JimFall has joined #openstack22:23
larsksjroberts235: maybe add some LOG rules to your iptables to find out what is getting blocked, and then add explicit ACCEPT rules?22:23
*** ejat- has quit IRC22:23
larsksnova-compute relies on iptables for things like implementing security groups.  Flushing the rules completely may result in weird behavior.22:23
*** dulek has joined #openstack22:24
*** joeg has joined #openstack22:24
jroberts235If I turn off security groups all together, can they be re-instated after my tests?22:25
jroberts235ie. will the rules still be in the DB?22:25
*** kowens12 has quit IRC22:25
jroberts235NM that question22:26
*** nicasio has quit IRC22:26
jroberts235A better question is, what is  the easiest way to disable security groups?22:26
*** daniel3_ has joined #openstack22:26
jroberts235I don’t really care if I can get the rules back.22:26
*** Xurong has quit IRC22:28
jroberts235This is Grizzly - BTW22:28
*** dulek has quit IRC22:29
*** Acidnerd has quit IRC22:29
*** Barker has joined #openstack22:29
*** thedodd has joined #openstack22:29
*** georgem1 has joined #openstack22:29
*** ejat has quit IRC22:30
*** sushils has quit IRC22:31
*** saltlake2 has quit IRC22:31
*** zz_gondoi is now known as gondoi22:31
*** GeoKM has joined #openstack22:33
*** sushils has joined #openstack22:33
*** balajiiyer has left #openstack22:33
*** ejat has joined #openstack22:33
*** balajiiyer1 has joined #openstack22:34
*** ejat has quit IRC22:34
*** ejat has joined #openstack22:34
*** Xurong has joined #openstack22:34
*** Xurong has quit IRC22:34
linforprosyum -d 0 -e 0 -y install openstack-nova-console. RDO installation ends with "no mirrors to try". Should I just rerun packstack with answer-file?22:34
*** balajiiyer1 has quit IRC22:34
*** GeoKM has quit IRC22:35
*** nicasio has joined #openstack22:36
*** sinh has quit IRC22:37
*** gaughen has joined #openstack22:37
*** sinh has joined #openstack22:38
*** mfink__ has quit IRC22:39
*** GeoKM has joined #openstack22:39
*** nicasio has quit IRC22:40
*** jobewan has quit IRC22:40
linforprosError: sysctl -p /etc/sysctl.conf returned 255 instead of one of [0]. This comes up during packstack --allinone. Anyone knows what to do? It is about neutron_pp22:40
*** georgem1 has quit IRC22:41
*** johnbelamaric has quit IRC22:43
*** Barker has quit IRC22:43
*** fawadkhaliq has quit IRC22:44
*** ejat- has joined #openstack22:44
*** weshay has quit IRC22:44
*** weshay_ has quit IRC22:44
*** rtheis_ has quit IRC22:44
*** MentalRay has quit IRC22:45
*** ejat has quit IRC22:47
*** mjturek has quit IRC22:48
*** nitti has quit IRC22:48
*** pjnaik1990__ has quit IRC22:49
*** githogori has quit IRC22:51
*** blairo has quit IRC22:51
*** githogori_ has joined #openstack22:51
*** anderbubble has quit IRC22:51
*** cptwease_ has joined #openstack22:52
linforprosIf anyone else gets it, then I learned that rebooting before running "packstack --answer-file="file.txt" helped to go through.22:52
*** RangerBob has joined #openstack22:53
*** SweetyDumling has quit IRC22:53
*** cptweasel has quit IRC22:54
*** jobewan has joined #openstack22:54
*** timsim__ has quit IRC22:54
*** gondoi is now known as zz_gondoi22:55
*** SweetyDumling has joined #openstack22:55
*** nelsnelson has joined #openstack22:57
*** dims_ has quit IRC22:57
*** cemason has joined #openstack22:58
*** esheffield has quit IRC23:00
*** ajo has quit IRC23:00
*** jaypipes has quit IRC23:00
*** holms has joined #openstack23:00
*** holms has left #openstack23:00
*** jwalcik has quit IRC23:01
*** j05h2 has quit IRC23:02
*** IlyaE has joined #openstack23:02
*** ghostpl has quit IRC23:02
*** mattgriffin has quit IRC23:02
*** designbybeck has quit IRC23:03
*** kbringard has quit IRC23:03
*** blair has joined #openstack23:04
*** ppradhan has quit IRC23:04
*** antons has quit IRC23:05
*** IlyaE has quit IRC23:05
*** j05h has joined #openstack23:06
*** jcarter2 has quit IRC23:06
*** gigawhat has quit IRC23:06
*** georgem1 has joined #openstack23:06
*** signed8bit has quit IRC23:07
*** achanda has joined #openstack23:08
*** blair has quit IRC23:09
*** cpschult has quit IRC23:09
*** prad has quit IRC23:10
*** IlyaE has joined #openstack23:10
*** sushils has quit IRC23:12
*** rdaly2 has joined #openstack23:12
*** abhirc has joined #openstack23:12
*** cptwease_ has quit IRC23:12
*** qhartman has joined #openstack23:13
*** rdaly2 has quit IRC23:13
*** luflores has quit IRC23:13
*** penick has quit IRC23:13
qhartmanAnyone in here a fog user? I'm haveing trouble creating a volume from an image. I can create empty images just fine, but my imageRef option seems to be getting ignored.23:14
*** rdaly2 has joined #openstack23:14
*** noslzzp has joined #openstack23:14
*** achanda has quit IRC23:15
*** klamath has quit IRC23:15
*** henrynash has joined #openstack23:15
*** mrieger has quit IRC23:16
*** sushils has joined #openstack23:16
*** thatguy has quit IRC23:16
*** Komanda has joined #openstack23:16
Komandahow do i run openstack on top of ec2?23:16
*** ghostpl has joined #openstack23:17
Komandawhat's the best guide to get it running on a t2 micro?23:17
*** sushils has quit IRC23:17
*** penick has joined #openstack23:17
*** dhblaz has joined #openstack23:17
*** EricGonczer_ has joined #openstack23:18
*** g4rg4m3|_ has quit IRC23:18
*** JRobinson__ has quit IRC23:18
*** otter768 has joined #openstack23:19
*** jasondotstar has joined #openstack23:19
*** cemason has quit IRC23:19
*** EricGonczer_ has quit IRC23:19
*** m3h has joined #openstack23:19
*** IlyaE has quit IRC23:19
*** VManiac16 has quit IRC23:19
*** sushils has joined #openstack23:20
*** epcim has quit IRC23:20
*** brodrigue has quit IRC23:20
*** belmoreira has quit IRC23:20
*** dudy has quit IRC23:20
*** pilotkfd has joined #openstack23:20
j05hKomanda: t2.micro, there is no way that would work.23:21
Komandaj05h: why not?23:21
j05hdevstack, lots of ram and cores23:21
j05h1GB ram is nothing23:22
j05h1 core wont' work either23:22
*** badon has quit IRC23:22
*** ghostpl has quit IRC23:22
*** annashen has quit IRC23:22
*** georgem1 has left #openstack23:22
*** cemason has joined #openstack23:22
j05hKomanda: http://docs.openstack.org/developer/devstack/guides/single-vm.html23:22
alopbeat me to it23:22
*** IlyaE has joined #openstack23:22
*** pilotkfd has quit IRC23:23
j05hbeat you to a hoppy beer as well.23:23
*** pilotkfd has joined #openstack23:23
j05hoh wait, this is a stout23:23
*** otter768 has quit IRC23:23
Komandaj05h: uhu23:23
alopyeah, well, it's only 3:23 out here23:23
Komandaso how would i get this running on ec223:23
Komandawith a bigger instance23:24
*** jasonsb has quit IRC23:24
*** e0ne has quit IRC23:24
*** reed has quit IRC23:24
Komandawich ami should i use as starting point ?23:24
j05hinstructions are in that link23:24
alopKomanda: Fedora 20 or Ubuntu 14.0423:24
*** jasonsb has joined #openstack23:24
*** hichihara has joined #openstack23:24
alopthere's a quick start guide http://docs.openstack.org/developer/devstack/23:25
alopbasically, launch fedora 20 or ubuntu 14.04, git clone devstack, cd devstack, ./stack.sh23:25
*** ZZelle_ has quit IRC23:25
*** aimonb has joined #openstack23:26
*** aimonb has quit IRC23:26
*** aimon has quit IRC23:26
*** primechuck has quit IRC23:26
*** aimon_ has joined #openstack23:26
*** davelowe has quit IRC23:26
Komandaubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-20150123 - ami-9a562df223:26
*** nicasio has joined #openstack23:26
Komandasuitable ami?23:26
KomandaRoot device type: ebs Virtualization type: hvm23:27
*** primechuck has joined #openstack23:27
*** primechuck has quit IRC23:27
*** thedodd has quit IRC23:28
*** shayneburgess has quit IRC23:28
alopKomanda: just curious as to why it has to be on ec2, why not do local virtualization like virtualbox?23:28
*** sgordon has quit IRC23:28
Komandahdd full23:28
Komandaec2 easiest to play with23:28
alophahah, ok23:29
*** blomquisg has quit IRC23:29
alopKomanda: may also want to checkout http://trystack.org23:29
*** fnaval has quit IRC23:29
*** steveg` has joined #openstack23:31
*** ghostpl has joined #openstack23:31
*** FunnyLookinHat has quit IRC23:31
*** ejat has joined #openstack23:32
*** ejat has quit IRC23:32
*** ejat has joined #openstack23:32
KomandaThe program 'git' is currently not installed.23:32
*** pilotkfd has quit IRC23:32
Komandalol23:32
*** siso has joined #openstack23:33
linforprosHello, neutron plugin.ini is showing just vxlan for type_drivers. Is this enough for br-ex to be connected to ethernet eth0? Shouldn't type_driver be of type vlan instead?23:33
*** sputnik13 has quit IRC23:34
Komandabefore i run cd devstack; ./stack.sh23:35
Komandawhat needs to be changed in the configuration files23:35
Komandato get this running on ec2 properly?23:35
*** ejat- has quit IRC23:35
*** JRobinson__ has joined #openstack23:35
*** surabujin has quit IRC23:35
*** achanda has joined #openstack23:37
*** jwalcik has joined #openstack23:38
*** jwalcik has quit IRC23:38
*** dulek has joined #openstack23:39
Komandawhere do i find local.conf ?23:39
*** baoli has quit IRC23:39
*** Nex6 has quit IRC23:39
*** steveg` has quit IRC23:40
*** dims__ has joined #openstack23:40
*** tochi has joined #openstack23:41
*** rdaly2_ has joined #openstack23:41
*** ghostpl has quit IRC23:41
Komandai made a changes to the local.conf in the samples directory23:41
Komandawhen  i run cd devstack; ./stack.sh23:41
Komandait gives me the same error23:41
*** dims_ has joined #openstack23:41
Komandalooks like the config file didn't propegate23:42
*** cemason has quit IRC23:43
*** rdaly2 has quit IRC23:43
Komandaappearantly it has to be in the root directory23:43
*** Zack_Deee has quit IRC23:43
Komandaseems to be installing now23:43
*** steveg` has joined #openstack23:43
*** dims__ has quit IRC23:46
*** jobewan has quit IRC23:47
*** badon has joined #openstack23:47
*** RangerBob has quit IRC23:47
*** gildub has quit IRC23:51
*** haramaki has joined #openstack23:53
*** Woodie has quit IRC23:54
Komandahome/ubuntu/devstack/functions-common:535 Failure retrieving TENANT_ID for demo23:55
*** adalbas has quit IRC23:55
*** annegent_ has joined #openstack23:55
*** kebray has joined #openstack23:55
*** markvoelker has quit IRC23:56
*** rm_work is now known as rm_work|away23:56
*** rdaly2_ has quit IRC23:57
*** antons has joined #openstack23:58
*** lcurtis has joined #openstack23:59
*** SweetyDumling has quit IRC23:59

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