Friday, 2016-08-19

*** faiz89 has quit IRC00:00
*** faiz89 has joined #openstack00:00
cr0wrxI did a packet capture on qbr### and qvb#### and saw the response on qbr, but not qvb. I'm not sure how the two are actually connected though (hard to find docs on qvb...all the tutorials and charts seem to leave that one out)00:00
*** faiz89 has quit IRC00:01
*** finisherr has quit IRC00:01
*** Son_Goku has joined #openstack00:01
jidardon't feel bad, it's black magic00:01
*** ezobn has joined #openstack00:01
*** om has joined #openstack00:02
cr0wrxwell that part confuses me..I'm not sure I have ever tracked it down. I can see how linux bridge stuff is configured, and I can see how ovs has ports configured....but at least on the compute node, I have no clue how the linux bridge connects over to ovs ports00:03
*** om has quit IRC00:03
*** mlupton has joined #openstack00:03
cr0wrxat least on neutron node, I thought there was a port in ovs on one of the bridges that lined up with something on linux bridge side, but I don't see that on compute node00:03
jidarusually, as I understand it through tap ports00:03
jidarwhich you may see with either a series of `ovs-vsctl show` commands and ifconfig/ip a, commands looking through the various bits00:04
*** om has joined #openstack00:04
*** castlemilk has quit IRC00:05
*** wcriswell has joined #openstack00:05
*** bwallis has quit IRC00:05
cr0wrxanyone happen to know of any scripts or tools that make debugging and following the path of this stuff any easier than a series of manual commands :D00:06
jidarhah00:06
cr0wrxI recall one of the talks in austin someone saying they wrote a tool, and they would release it00:06
cr0wrxhaven't seen anything though :(00:06
*** stanchan has quit IRC00:06
cr0wrxmakes my head hurt too much00:07
*** ezobn has quit IRC00:07
*** githogori has quit IRC00:07
jidarI've been working through some neutron issues for a few days and I'm constantly feeling lost00:08
*** om has quit IRC00:08
*** MikeG451 has joined #openstack00:08
cr0wrxso on the compute node I see tap# which my understanding is right after eth0 for the instance. tap# -> qbr (linux bridge) + qvb ? -> ?????00:08
cr0wrxovs picks up with the qvo terminology and then you can follow that off compute node and whatnot it seems to neutron node00:09
*** om has joined #openstack00:09
jidarcould be qvo0XXX00:09
jidarif it's on a br-int00:09
cr0wrxbut there is a gap I don't understand around the qbr/qvb/qvo series00:09
jidarso a tap is what connects to the VM usually00:09
jidaror in all of the diagrams I see, what KVM is using to match up its port00:10
cr0wrxyea, say tap1234500:10
jidartaps can be hooked up to bridges00:10
*** woodard has quit IRC00:10
jidarand a bridge can be on eth0 for instance00:10
jidarovs plus all the other qvb/qvo stuff I'm not as sure about00:10
*** thorst_ has joined #openstack00:10
Sam-I-Amthe networking guide shows you how all this stuff works00:10
*** woodard has joined #openstack00:11
*** minnesotags has joined #openstack00:11
*** comay has quit IRC00:11
cr0wrxthe networking guide leaves out qvb00:11
cr0wrxthat's my issue00:11
*** ezobn has joined #openstack00:11
cr0wrxwell I mean, it's there00:12
cr0wrxvisually00:12
cr0wrxI see eth0 -> tap -> iptables -> qvb -> qvo -> br-int00:12
cr0wrxbut at a technical level, I don't see how qvb -> qvo00:12
Sam-I-Amits just the linux bridge side of the veth pair between ovs and the linux bridge that implements sec groups00:12
jidartake a look at your ovs-ofctl show <bridge>00:12
Sam-I-Amqvo is the ovs side of the veth pair00:13
cr0wrxwhich do I plug in for <bridge> on ovs-ofctl show?00:13
Sam-I-Ambr-int at that point00:14
*** Son_Goku has quit IRC00:14
*** GenteelBen has quit IRC00:14
cr0wrxyea, and that outputs the qvo ports00:14
cr0wrxbut what I wonder is how do I check / see the mapping of qvb12345 -> qvo1234500:15
jidarthat should show up in your `ovs-vsctl show` iirc00:15
cr0wrxnope00:15
*** stewie925 has joined #openstack00:15
Sam-I-Amthe numbers should be the same in the pair00:15
Sam-I-Amits just a veth pair00:15
cr0wrxqvb isn't listed anywhere in ovs-vsctl show00:15
*** admin0 has quit IRC00:15
jidaroh!00:16
Sam-I-Amthats because ovs doesnt know what qvb is00:16
Sam-I-Amits a veth pair00:16
Sam-I-Amit just sees the end plugged into it (qvo)00:16
*** rama_y has quit IRC00:16
cr0wrxyea, so how do I list existing veth pairs? Maybe00:16
jidaryou know, you kept saying that and it just now clicked00:16
cr0wrxis that a thing00:16
*** rama_y has joined #openstack00:16
Sam-I-Amthey'll show up in 'ip link show'00:16
*** thorst__ has joined #openstack00:17
cr0wrxah, found a way to prove they connect00:20
cr0wrxso ip link show will list them all but doesn't show who peer is from what I can tell00:20
cr0wrxbut ethtool -S qvo### will show index of the other00:20
cr0wrxwhich you can then find with ip link show00:20
Sam-I-Amyeah, you'd have to use the ifindex00:20
*** thorst_ has quit IRC00:20
Sam-I-Ami thought they use the same numbers in the interface name00:21
cr0wrxI mean they do00:21
cr0wrxbut that's just a policy / style thing00:21
*** smccarthy has quit IRC00:21
*** mrBen2k2k2k has quit IRC00:21
cr0wrxwhat I've been wondering for a while is HOW they actually moved packets between them (and could run a command to show they were connected somehow)00:22
Sam-I-Ampackets go in one end of the veth pair and come out the other00:22
*** yamahata has quit IRC00:22
Sam-I-Amits like a virtual patch cable00:23
jidarSam-I-Am: is this the network guide you mentioned earlier: http://docs.openstack.org/mitaka/networking-guide/00:23
Sam-I-Amthe layer-3 agent is a bit different though00:23
Sam-I-Amit does something tricky00:23
Sam-I-Amjidar: yeah00:23
*** Son_Goku has joined #openstack00:23
Sam-I-Amjidar: i wrote most of that00:23
*** thorst__ has quit IRC00:23
jidarre: veth pair, seriously you've been saying that for a while and it just clicked a minute ago00:23
Sam-I-Amin fact, i'm updating it now00:23
cr0wrxlike ovs side of things you have patches and interfaces and flows with tags and you can follow it (with effort). And linux bridges you can run brctl show and see how things are bridged there...but I was missing how to show veth pairs00:23
*** ezobn has quit IRC00:24
cr0wrxthe veth pair thing is what seems to connect the two worlds00:24
Sam-I-Amin mitaka+ and the appropriate kernel/ovs version, you can do secgroups in ovs rather than needing a separate linux bridge and iptables00:24
*** Suyi has quit IRC00:24
cr0wrxat least in my mind00:24
jidarnice00:24
*** hfu has joined #openstack00:25
jidarso I really like "Learning Openstack Networking (Neutron) - Second Edition" for the diagrams and explanations of the various commands that help track that stuff down00:25
*** sticker has quit IRC00:27
Sam-I-Amproblem with dead tree is they're relevant for about 6 months in openstack00:27
Sam-I-Ambut the concepts mostly stay the same00:27
jidarso true00:27
Sam-I-Amso the networking guide is the continually-updated version00:27
Sam-I-Amor updates as often as possible00:27
*** raunak has quit IRC00:29
cr0wrxyea I read the earlier part of that book and it helped me understand at least some of basic concepts for neutron and how it's handled. It was good for me because it goes into more details on linux bridges and ovs and things that are sort of pre-req for the networking guide online00:29
*** mrBen2k2k2k has joined #openstack00:29
cr0wrxThis is my first time really working with any of these sdn concepts00:29
Sam-I-Ami'm trying to improve the intro content in the networking guide00:30
cr0wrxand luckily it's still pretty current in that book for core pieces. Other stuff I'm sure is more dated (like later chapters on vpn/lbaas/etc)00:30
Sam-I-Amits just a lot of work... and its mostly just me00:30
jidaryea, I'm more interested in it for the core concepts than how vpn/lbaas/firewalling works today00:30
*** cdub has quit IRC00:30
cr0wrxthanks sam :) It's actually a good guide, just requires a bit of understanding of things up front...It's a good reference anyways, I always find myself searching for how networking works and re-reading parts of the networking guide00:31
cr0wrxlike once a week, haha00:31
*** yamahata has joined #openstack00:31
jidaryea, seriously thanks for all of your hard work on this Sam-I-Am00:31
jidarI must have thanked you 100 times by now hahah00:31
Sam-I-Amheh00:31
*** castlemilk has joined #openstack00:31
Sam-I-Ami'm reorganizing the networking guide to use a building blocks structure00:31
cr0wrxok now time to figure out what this allowed address things is all about :/ hope it's not hard cuz it would be awesome to get this working tonight00:32
Sam-I-Ampick a mechanism driver (ovs or lb), start with provider nets, add self-service nets, add HA of some sort.00:32
Sam-I-Amless repetition of content is one upside00:32
*** bwallis has joined #openstack00:32
cr0wrxoh I know I've asked this before in here but never got very far - are you familiar with provider nets? I added a couple more but there are some really strange things with them :/ On both liberty and mitaka00:33
Sam-I-Am"strange"00:33
cr0wrxI added a couple more provider networks and it all works fine, but I wanted them to be private or restricted to a single tenant00:33
cr0wrxthey aren't00:33
cr0wrxfor a provider network you set the network as external00:34
cr0wrxbut as soon as you do that, any tenant can set it as the gateway for a router00:34
*** anush_ has quit IRC00:34
*** vishwanathj has joined #openstack00:34
cr0wrxeven if you create the network / assign it to a specific tenant00:34
Sam-I-Amif you don't include --shared it wont00:34
cr0wrxno, it does00:35
cr0wrxthat's the strange part00:35
cr0wrxboth liberty and mitaka, having same issue00:35
cr0wrxit's external, not shared00:35
cr0wrxassigned to tenantA00:35
cr0wrxtenantB can set it as a gateway00:35
Sam-I-Amwell, it technically doesnt need router:external00:35
Sam-I-Amthen routers cant plug into it00:35
Sam-I-Amtake off --shared and router:external and it should act as a network for a single project00:36
cr0wrxwell, I thought you had to set external to get floating ips from it00:36
Sam-I-Amprovider nets dont have floating ips00:36
Sam-I-Amthey're just layer-200:36
Sam-I-Amthe router:external flag enables self-service routers to plug into the network, and those routers actually implement fips00:37
cr0wrxI thought floating pool comes from them? So if you have a provider on 10.0.5.0/24, tenantA and tenantB can both allocate from same pool00:37
Sam-I-Amthe floating ip allocation resides on the provider network to which the router attaches, but the router actually implements the fip bits.00:38
Sam-I-Aminstances connected directly to a provider network don't use fips, they directly consume ips from the provider net allocation00:39
cr0wrxI'll have to play around and try with not setting router:external00:39
cr0wrxit's definitely not shared though, never has been00:39
Sam-I-Am(the same allocation that would be fips if those instances were on a self-service network)00:39
cr0wrxbut marking external essentially makes it shared :/ Because all someone has to do is spin up their own router, set it's gateway, and attach their own networks to their own router00:39
*** ezobn has joined #openstack00:41
*** lbrune has joined #openstack00:41
*** limao has joined #openstack00:41
*** castlemilk has quit IRC00:41
Sam-I-Amif you want to limit who can attach routers to a router:external net, you can use rbac00:42
*** smoser has quit IRC00:42
cr0wrxand the other weirdness, but this may just be a horizon thing, is when you go to allocate an IP, it gives you all the provider nets  to choose from, even if the instance doesn't have connectivity to that network (again, because it's marked external I think). It seems like it would be better to just show ones that will work. They may not have that provider network set as a gateway but it's still always in the drop down00:42
*** castlemilk has joined #openstack00:43
Sam-I-Aminterestingly, nova (compute) has no idea which networks reside on which nodes00:44
*** woodard has quit IRC00:44
Sam-I-Amthe assumption is that a provider network is available everywhere unless you use availability zones or something of that sort00:44
cr0wrxor in my case only want it restricted to specific tenant :D00:45
Sam-I-Ami think there's some work going on to make compute a bit more aware of network availability.00:45
cr0wrxbasically I use them to get separate floating ip pool ranges for prod/dev/research/etc...00:45
*** ezobn has quit IRC00:46
*** JRobinson__ is now known as JRobinson__afk00:46
Sam-I-Amfips are sort of meh00:46
*** castlemilk has quit IRC00:47
cr0wrxwell, kinda a big deal though right :D I mean, you almost always gotta have plenty of them and use them unless everything you do is in openstack00:47
*** su_zhang has quit IRC00:47
Sam-I-Amprovider nets00:47
cr0wrxand for us, openstack is just one piece of a massive internal network and we have to interact with all of it. It's a nightmare00:47
cr0wrxand I don't have a clue what I'm doing00:48
Sam-I-Amif you want your instances to talk directly to a 'real' network, you can just use provider nets00:48
Sam-I-Ameliminate the l3 agent bottleneck00:48
cr0wrxmaybe you and I aren't speaking the same thing when we talk about provider nets00:48
cr0wrxso I imagine I'm wrong00:48
*** gyee has quit IRC00:48
Sam-I-Amhave you used vmware?00:48
*** sticker has joined #openstack00:49
cr0wrxI've used workstation and vsphere and all, I haven't done much with their products from a management perspective..just user00:49
*** m3_del has joined #openstack00:49
*** castlemilk has joined #openstack00:49
Sam-I-Amwell, the networks you create in vmware (vswitches, etc) are provider networks00:49
Sam-I-Amthey're just layer-2 and use vlan tagging00:49
Sam-I-Amall vmware does is extend those layer-2 networks into virtual land where your instances run00:50
*** Ephur has joined #openstack00:50
Sam-I-Amgranted, provider nets arent very 'cloudy' because your projects/tenants can't manage them, but they're simple.00:51
*** ezobn has joined #openstack00:51
cr0wrxwell, they shouldn't manage them anyways? They should manage their cloudy networks...00:51
cr0wrxidk, maybe I only halfway get provider nets00:51
Sam-I-Amthey manage self-service networks, which are entirely virtual00:52
cr0wrxyes00:52
cr0wrxbut they can overlap, and you can't do that with real network external to openstack00:52
Sam-I-Amwell, nothing says you can't have two layer-2 networks using the same IP range00:53
Sam-I-Amhow you handle that on the back end gets interesting, but its entirely possible00:53
jidaryea, that's not a cloud thing at all00:53
cr0wrxso for us, I added bridge mappings and bridges and interfaces and whatnot to create new openstack external networks, each of those has a subset of the larger "real" cidr exposed to openstack cluster outside of openstack00:53
jidarjust different broadcast domains (or l2) segments and you can overlap IPs00:53
jidarrouting on the other hand :P00:53
Sam-I-Amdifference is, an administrator has to choose those ranges and do all the foot work. with self-service networks, tenants can choose arbitrary ip ranges and you dont have to think about it, or care.00:53
*** castlemilk has quit IRC00:54
jidaroften in provider networks you have external hardware (like a switch) doing routing, so you'll have to set that up first00:54
*** furlongm has quit IRC00:55
*** furlongm has joined #openstack00:55
*** rchavik has joined #openstack00:55
Sam-I-Amprovider nets essentially rely on physical infrastructure for routing00:56
jidarso lots of that self service stuff goes out the window :P00:56
cr0wrxwell yes, I get that, and we have an external switch00:56
Sam-I-Amyou can mix provider and self-service networks00:57
cr0wrxbut, it sounded like it does that without needing fip in openstack00:57
jidarfip + provider networks hardly makes sense00:57
cr0wrxbut I thought fip is how you take one of those IPs from that external physical infrastructure routing (mapped from some vlan or however it's handled) and map it to an instance in openstack00:57
Sam-I-Amfips do one thing - they enable outside connectivity to instances on self-service networks that use arbitrary (and often rfc1918) ip addresses.00:57
jidaryea, ^ it's good for overlay networks00:57
jidarlike I'm using vxlan and I need to get that network outside00:58
Sam-I-Amits essentially dnat happening on the router00:58
jidarso I'll connect a fip to that instance and let him do his thing00:58
*** stanchan has joined #openstack00:58
jidars/get that network outside/expose that ip outside00:58
Sam-I-Amalternatively, you can just boot an instance directly on the provider network and give it what would otherwise have been a floating IP. no router. no mess.00:58
*** ezobn has quit IRC00:58
jidarhence, fip and provider networks don't make sense00:58
*** jamesdenton has joined #openstack00:59
cr0wrxWell, I gotta find some more articles to read or something because I'm still lost. Your last alternatively part I'm not sure how that is done00:59
jidartogether anyhow00:59
Sam-I-Ambooting an instance on a provider net would pull from the same ip pool as a fip would00:59
jidar*could you mean00:59
*** stanchan has quit IRC00:59
cr0wrxmaybe I just need to go try it and see what happens, ha00:59
*** jamesdenton has quit IRC00:59
Sam-I-Amtake a look at the provider net scenario in the networking guide01:00
jidarI just think of it this way, provider networks are about as close as you can get to droping a VM on a vlan and letting it take care of it's thing01:00
cr0wrxif they are tagged as external you can't spin up a VM directly on it, and I thought we had to have external when creating these things01:00
cr0wrxbut from all the talk tonight, it sounds like maybe I can just drop the external flag, forget using the self service router, and just attach that same provider network directly to an instance01:00
cr0wrxand maybe it would just work01:00
jidaryou can spin one up, I bet you there just isn't a dhcp agent / whatever running on it though01:01
*** mrBen2k2k2k has quit IRC01:01
jidarand that's likely the issue01:01
Sam-I-Amwell, you dont have to disable dhcp on a provider net01:01
Sam-I-Amjust make sure it wont be conflicting with a dhcp server elsewhere01:01
*** stanchan has joined #openstack01:01
Sam-I-Amwhen you create the subnet, dont use --disable-dhcp01:01
Sam-I-Amand if it will conflict, you can use other ways to assign ip addresses01:01
*** phileas has quit IRC01:02
jidarI assume it's the --router:external that's tripping him up01:02
cr0wrxI'm gonna have to play with that tomorrow or this weekend01:02
Sam-I-Amworking on weekends = bad01:02
cr0wrxif its doable it may make my life easier01:02
cr0wrxworking on weekends is the only time I get to learn :/ during the week I gotta (try) to make magic happen01:03
*** exedore6 has joined #openstack01:03
jidarspeaking of, I need to take off - it's too late for me to be working :P01:03
jidarthanks for the chat guys01:03
*** mlupton has quit IRC01:03
*** caowei has joined #openstack01:04
Sam-I-Amyeah, i'm about to split too01:04
Sam-I-Ammust locate food01:04
cr0wrxlike now, gotta get this vpn nat thing figured out...then I can dive back into fixing all my past mistakes for provider network :P That would be nice though because the way I do it now users have to create a floating ip basically for every instance (they don't care about cloudy networks for the most part...they just want an IP to SSH to and access to things)01:04
*** JRobinson__afk is now known as JRobinson__01:04
cr0wrxthanks!01:04
Sam-I-Amyeah, you can probably eliminate fips01:04
Sam-I-Ami'll be around tomorrow01:05
cr0wrxyou shouldn't have told me that01:05
cr0wrxhaha01:05
cr0wrxI'll be back I'm sure01:05
*** phileas has joined #openstack01:07
*** castlemilk has joined #openstack01:07
*** ivar-lazzaro has quit IRC01:08
*** exedore6 has left #openstack01:08
*** ivar-lazzaro has joined #openstack01:08
*** smccarthy has joined #openstack01:08
*** mrBen2k2k2k has joined #openstack01:09
*** mikeoutland has joined #openstack01:09
*** kbaegis has quit IRC01:10
*** smoser has joined #openstack01:11
*** mlupton has joined #openstack01:11
*** smccarthy has quit IRC01:13
*** baoli has joined #openstack01:14
*** salv-orlando has joined #openstack01:15
*** ezobn has joined #openstack01:15
*** salv-orlando has quit IRC01:15
*** salv-orlando has joined #openstack01:16
*** salv-orl_ has quit IRC01:17
*** tbarron|afk is now known as tbarron01:18
*** spzala has joined #openstack01:18
*** xemdetia has quit IRC01:19
*** ezobn has quit IRC01:19
*** achampion has joined #openstack01:20
*** johnny_ has quit IRC01:20
*** cyberworm54 has quit IRC01:20
*** erkules_ has joined #openstack01:20
cr0wrxAH HA! Not too bad, if you are there still Sam-I-Am, thanks again. allowed-address-pairs seems to have solved the problem I spent half the day on with no progress. Seems to work, will have to verify closer tomorrow but setting to allow 0.0.0.0/0 seems to have done it (whether that will cause issues somehow, idk)01:20
*** salv-orlando has quit IRC01:21
*** stanchan has quit IRC01:22
*** spzala has quit IRC01:23
*** Helio- has quit IRC01:23
*** erkules has quit IRC01:23
*** cdub has joined #openstack01:23
campeehi01:24
*** chlong has joined #openstack01:24
campeeanyone want to answer some newb questions about cinder and iscsi?01:25
*** ashw has joined #openstack01:25
*** eMperror has quit IRC01:26
*** AtumT has quit IRC01:26
*** castlemilk has quit IRC01:31
*** code-R has joined #openstack01:31
*** donghao has joined #openstack01:35
*** ivar-lazzaro has quit IRC01:35
*** ashw has quit IRC01:37
*** mikeoutl_ has joined #openstack01:38
*** mikeoutland has quit IRC01:38
*** mikeoutl_ has quit IRC01:39
*** vijaykakkar has joined #openstack01:40
*** vijaykakkar has quit IRC01:40
*** mikeoutland has joined #openstack01:40
*** vinaypotluri has quit IRC01:41
*** mtanino has quit IRC01:42
*** mrBen2k2k2k has quit IRC01:43
*** manous has quit IRC01:43
*** cdub has quit IRC01:44
*** mikeoutland has quit IRC01:44
*** mikeoutland has joined #openstack01:44
*** castlemilk has joined #openstack01:46
*** raunak has joined #openstack01:48
*** smccarthy has joined #openstack01:50
*** newmember has joined #openstack01:50
*** donghao has quit IRC01:51
*** vinaypotluri has joined #openstack01:51
*** namnh has joined #openstack01:51
*** mrBen2k2k2k has joined #openstack01:51
*** thetrav has quit IRC01:52
JerryOpenixquit01:52
*** JerryOpenix has quit IRC01:52
*** yamahata has quit IRC01:53
*** donghao has joined #openstack01:54
*** thorst_ has joined #openstack01:56
*** faiz89 has joined #openstack01:56
*** lbrune has quit IRC01:58
*** prateek_ has joined #openstack01:58
*** castlemilk has quit IRC01:58
*** thorst_ has quit IRC01:59
*** castlemilk has joined #openstack02:00
*** diogogmt has quit IRC02:00
*** parora has quit IRC02:02
*** parora has joined #openstack02:02
*** cemason has joined #openstack02:03
*** cemason has left #openstack02:03
*** toscalix_ has quit IRC02:04
*** stewie925_ has quit IRC02:04
Sam-I-Amcr0wrx: cool02:05
*** castlemilk has quit IRC02:05
*** prateek_ has quit IRC02:06
*** namnh has quit IRC02:08
*** VW has joined #openstack02:08
*** code-R_ has joined #openstack02:10
*** astrozyk has quit IRC02:10
*** saschpe has quit IRC02:11
*** saschpe has joined #openstack02:12
*** jckasper has joined #openstack02:12
*** code-R has quit IRC02:13
*** jckasper_ has joined #openstack02:15
*** jovon has quit IRC02:15
*** mikeoutland has quit IRC02:16
*** ezobn has joined #openstack02:16
*** jckasper has quit IRC02:16
*** `Calvin has quit IRC02:18
*** jckasper_ has quit IRC02:20
*** VW has quit IRC02:20
*** ezobn has quit IRC02:20
*** VW has joined #openstack02:21
*** valw has joined #openstack02:22
*** Helio- has joined #openstack02:22
*** gli has joined #openstack02:25
*** rfolco has quit IRC02:25
*** Ryjedo_ has joined #openstack02:25
*** `Calvin has joined #openstack02:26
*** Ryjedo has quit IRC02:27
*** Ryjedo_ is now known as Ryjedo02:27
*** mrBen2k2k2k has quit IRC02:27
*** chlong has quit IRC02:29
*** trananhkma has joined #openstack02:30
*** lbrune has joined #openstack02:32
*** faiz891 has joined #openstack02:32
*** faiz89 has quit IRC02:35
*** akulshin has joined #openstack02:35
*** ezobn has joined #openstack02:36
*** mrBen2k2k2k has joined #openstack02:37
*** elo has quit IRC02:38
*** parinasr has quit IRC02:38
*** mikeoutland has joined #openstack02:39
*** adreznec has left #openstack02:39
*** akulshin has quit IRC02:39
*** aeperezt has quit IRC02:40
*** ezobn has quit IRC02:41
*** valw has quit IRC02:42
*** ivar-lazzaro has joined #openstack02:43
*** elo has joined #openstack02:43
*** mikeoutland has quit IRC02:46
*** chlong has joined #openstack02:46
*** spzala has joined #openstack02:51
*** valw has joined #openstack02:52
*** cemason has joined #openstack02:52
*** cemason has quit IRC02:52
*** cemason has joined #openstack02:52
*** smccarthy has quit IRC02:54
*** bandarji has quit IRC02:55
*** elo has quit IRC02:57
*** johefernan has joined #openstack03:00
*** stlbigdog has joined #openstack03:00
*** elo has joined #openstack03:01
*** code-R_ has quit IRC03:01
*** code-R has joined #openstack03:01
*** jperry has joined #openstack03:01
*** elo has quit IRC03:02
*** thetrav has joined #openstack03:03
*** adreznec has joined #openstack03:04
*** stlbigdog has quit IRC03:05
*** stlbigdog has joined #openstack03:05
*** m3_del has quit IRC03:06
*** m3_del has joined #openstack03:06
*** Lee1092 has joined #openstack03:06
*** castlemilk has joined #openstack03:06
*** m3_del has quit IRC03:07
*** m3_del has joined #openstack03:07
*** m3_del has quit IRC03:08
*** castlemilk has quit IRC03:08
*** m3_del has joined #openstack03:08
*** m3_del has quit IRC03:08
*** m3_del has joined #openstack03:09
*** m3_del has quit IRC03:09
*** m3_del has joined #openstack03:09
*** faiz891 has quit IRC03:09
*** m3_del has quit IRC03:10
*** m3_del has joined #openstack03:10
*** m3_del has quit IRC03:11
*** m3_del has joined #openstack03:11
*** aeperezt has joined #openstack03:12
*** m3_del has quit IRC03:12
*** m3_del has joined #openstack03:12
*** m3_del has quit IRC03:12
*** m3_del has joined #openstack03:13
*** coolsvap has joined #openstack03:13
*** valw_ has joined #openstack03:13
*** m3_del has quit IRC03:13
*** achampion has quit IRC03:14
*** ivan_mironov has joined #openstack03:14
*** stlbigdog has quit IRC03:14
*** mrBen2k2k2k has quit IRC03:14
*** elo has joined #openstack03:14
*** VW has quit IRC03:15
*** smccarthy has joined #openstack03:15
*** valw has quit IRC03:16
*** raunak has quit IRC03:17
*** finisherr has joined #openstack03:18
*** salv-orlando has joined #openstack03:19
*** elo has quit IRC03:20
*** valw_ is now known as valw03:21
*** ayoung has quit IRC03:22
*** raunak has joined #openstack03:23
*** mrBen2k2k2k has joined #openstack03:24
*** elo has joined #openstack03:25
*** tochi has quit IRC03:26
*** salv-orlando has quit IRC03:27
*** raunak has quit IRC03:27
*** pravins has joined #openstack03:28
*** raunak has joined #openstack03:29
*** eandersson_ has joined #openstack03:30
*** elo has quit IRC03:30
*** aholler_ has joined #openstack03:31
*** achampion has joined #openstack03:32
*** spzala has quit IRC03:34
*** aholler has quit IRC03:35
*** baoli has quit IRC03:35
*** woodard has joined #openstack03:36
*** eandersson_ has quit IRC03:37
*** ezobn has joined #openstack03:37
*** chlong has quit IRC03:39
*** code-R has quit IRC03:40
*** VW has joined #openstack03:42
*** ezobn has quit IRC03:42
*** m3_del has joined #openstack03:44
*** mikeoutland has joined #openstack03:47
*** vimal has joined #openstack03:48
*** code-R has joined #openstack03:48
*** m3_del has quit IRC03:48
*** su_zhang has joined #openstack03:49
*** achampion has quit IRC03:51
*** chlong has joined #openstack03:53
*** Son_Goku has quit IRC03:54
*** aastha has joined #openstack03:54
*** TheFueley has joined #openstack03:56
TheFueleyHello, I don't suppose there's anyone that could help me with this neutron error:03:56
TheFueley(OperationalError) no such table: ml2_gre_allocations u'SELECT ml2_gre_allocations.gre_id AS ml2_gre_allocations_gre_id, ml2_gre_allocations.allocated AS ml2_gre_allocations_allocated \nFROM ml2_gre_allocations' ()03:56
*** fragatina has quit IRC03:56
*** ezobn has joined #openstack03:58
*** mikeoutland has quit IRC04:00
*** tochi has joined #openstack04:00
*** vinaypotluri has quit IRC04:01
*** faiz89 has joined #openstack04:02
TheFueleyHello, I don't suppose there's anyone that could help me with this neutron error:04:02
TheFueley(OperationalError) no such table: ml2_gre_allocations u'SELECT ml2_gre_allocations.gre_id AS ml2_gre_allocations_gre_id, ml2_gre_allocations.allocated AS ml2_gre_allocations_allocated \nFROM ml2_gre_allocations' ()04:02
*** djan_ has joined #openstack04:02
*** djan has quit IRC04:02
*** ezobn has quit IRC04:03
*** mrBen2k2k2k has quit IRC04:03
*** ivar-lazzaro has quit IRC04:03
*** VW has quit IRC04:05
*** germs has quit IRC04:05
*** marst has quit IRC04:07
*** `Calvin has quit IRC04:07
*** castlemilk has joined #openstack04:08
*** mkovarik has joined #openstack04:09
*** `Calvin has joined #openstack04:09
*** smccarthy has quit IRC04:10
*** chlong has quit IRC04:10
*** smccarthy has joined #openstack04:10
*** ivar-lazzaro has joined #openstack04:12
*** raunak has quit IRC04:12
*** castlemilk has quit IRC04:13
*** raunak has joined #openstack04:13
*** mrBen2k2k2k has joined #openstack04:13
*** cdub has joined #openstack04:13
*** `Calvin has quit IRC04:14
*** m3_del has joined #openstack04:14
*** vimal has quit IRC04:14
*** `Calvin has joined #openstack04:15
*** links has joined #openstack04:15
*** aeperezt has quit IRC04:16
*** TheFueley has quit IRC04:17
*** TheFueley2 has joined #openstack04:20
*** abelur_ has quit IRC04:20
*** TheFueley2 has quit IRC04:21
*** AbstractArtist has joined #openstack04:21
*** Ichthys has joined #openstack04:21
*** elo has joined #openstack04:22
*** chlong has joined #openstack04:23
*** Ichthys has quit IRC04:24
*** TheFueley has joined #openstack04:25
*** mlupton has quit IRC04:25
*** code-R has quit IRC04:26
*** abelur_ has joined #openstack04:28
*** martines has quit IRC04:28
*** m3_del has quit IRC04:29
Sam-I-AmTheFueley: sounds like you didn't populate the db properly04:31
Sam-I-Amor its not the correct version04:31
*** parora has quit IRC04:31
Sam-I-Amthere's a neutron db manage command04:31
Sam-I-Amanyway, i'm off to bed04:31
*** ivar-lazzaro has quit IRC04:32
*** salv-orlando has joined #openstack04:32
TheFueleySam-I-Am, well, this server has been running juno for a long time now. We had to shutdown some instances today and now we cant reach them04:32
*** AbstractArtist has quit IRC04:36
*** vimal has joined #openstack04:36
*** salv-orlando has quit IRC04:39
*** abelur_ has quit IRC04:39
*** hybridpollo has quit IRC04:40
*** martines has joined #openstack04:41
*** Mudpuppy_ has quit IRC04:44
*** kdas__ has joined #openstack04:44
*** Mudpuppy has joined #openstack04:44
*** prateek has joined #openstack04:45
*** code-R has joined #openstack04:46
*** ivar-lazzaro has joined #openstack04:47
*** kdas__ is now known as kushal04:47
*** kushal has joined #openstack04:47
*** om has quit IRC04:49
*** Mudpuppy has quit IRC04:50
*** awayne_ has joined #openstack04:50
*** awayne has quit IRC04:50
*** awayne_ is now known as awayne04:50
*** ivan_mironov has quit IRC04:52
*** mrBen2k2k2k has quit IRC04:52
*** abelur_ has joined #openstack04:52
*** ivan_mironov has joined #openstack04:53
*** stlbigdog has joined #openstack04:54
*** m3_del has joined #openstack04:55
*** abelur_ has quit IRC04:56
*** groen692 has joined #openstack04:57
*** abelur_ has joined #openstack04:58
*** TheFueley has quit IRC04:59
*** abelur_ has quit IRC05:00
*** prateek has quit IRC05:02
*** smccarth_ has joined #openstack05:02
*** prateek has joined #openstack05:02
*** abelur_ has joined #openstack05:02
*** BrightStar has quit IRC05:03
*** abelur_ has quit IRC05:04
*** smccarthy has quit IRC05:05
*** rdas has joined #openstack05:05
*** mrBen2k2k2k has joined #openstack05:05
*** djan_ has quit IRC05:05
*** mikeoutland has joined #openstack05:05
*** stlbigdog has quit IRC05:05
*** djan has joined #openstack05:06
*** SteffanW has joined #openstack05:08
*** BrightStar has joined #openstack05:10
*** chlong has quit IRC05:12
*** mikeoutland has quit IRC05:12
*** m3_del has quit IRC05:12
*** BrightStar has quit IRC05:14
*** Mudpuppy has joined #openstack05:15
*** code-R_ has joined #openstack05:16
*** rgogunskiy has joined #openstack05:16
*** nmagnezi has joined #openstack05:16
*** valw has quit IRC05:18
*** valw_ has joined #openstack05:18
*** ganeshnalawade has joined #openstack05:18
*** djan has quit IRC05:19
*** code-R has quit IRC05:19
*** djan has joined #openstack05:19
*** Mudpuppy has quit IRC05:20
*** ezobn has joined #openstack05:20
*** mikeoutland has joined #openstack05:20
*** someara2_ has quit IRC05:22
*** Son_Goku has joined #openstack05:22
*** JRobinson__ is now known as JRobinson__afk05:23
*** faiz89 has quit IRC05:24
*** ezobn has quit IRC05:25
*** chlong has joined #openstack05:26
*** Son_Goku has quit IRC05:29
*** ivan_mironov has quit IRC05:29
*** bvandenh has joined #openstack05:31
*** ganeshnalawade has quit IRC05:31
*** ivan_mironov has joined #openstack05:32
*** 7GHABT6P1 has joined #openstack05:33
*** 7JTABKTM0 has joined #openstack05:33
*** `Calvin has quit IRC05:33
*** githogori has joined #openstack05:34
*** Ephur has quit IRC05:34
*** Ephur has joined #openstack05:34
*** `Calvin has joined #openstack05:35
*** `Calvin has joined #openstack05:35
*** mikeoutland has quit IRC05:36
*** salv-orlando has joined #openstack05:38
*** valw_ has quit IRC05:38
*** Ephur has quit IRC05:39
*** m3_del has joined #openstack05:39
*** bvandenh has quit IRC05:39
*** 7JTABKTM0 has quit IRC05:39
*** 7GHABT6P1 has quit IRC05:39
*** psachin has joined #openstack05:43
*** zackf has quit IRC05:44
*** pbandark has joined #openstack05:46
*** Ryjedo_ has joined #openstack05:47
*** abelur has joined #openstack05:47
*** mrBen2k2k2k has quit IRC05:47
*** ivan_mironov has quit IRC05:48
*** dmueller-evoila has joined #openstack05:48
*** Ryjedo has quit IRC05:48
*** Ryjedo_ is now known as Ryjedo05:48
*** om has joined #openstack05:49
*** ivar-lazzaro has quit IRC05:50
*** ivar-lazzaro has joined #openstack05:50
*** johefernan has quit IRC05:51
*** ivan_mironov has joined #openstack05:52
*** chlong has quit IRC05:52
*** stuh84 has joined #openstack05:52
*** Son_Goku has joined #openstack05:52
*** ezobn has joined #openstack05:53
*** lbrune has joined #openstack05:54
*** Son_Goku has quit IRC05:55
*** aimon has joined #openstack05:56
*** dmueller-evoila has quit IRC05:56
*** Son_Goku has joined #openstack05:56
*** m3_del has quit IRC05:56
*** abelur has quit IRC05:58
*** e0ne has joined #openstack05:59
*** Son_Goku has quit IRC05:59
*** JRobinson__afk is now known as JRobinson__06:00
*** ivan_mironov has quit IRC06:01
*** rama_y has quit IRC06:01
*** lbrune has joined #openstack06:01
*** Son_Goku has joined #openstack06:01
*** lbrune has joined #openstack06:03
*** ivan_mironov has joined #openstack06:03
*** mrBen2k2k2k has joined #openstack06:03
*** Son_Goku has quit IRC06:03
*** Son_Goku has joined #openstack06:04
*** su_zhang has quit IRC06:05
*** Son_Goku has quit IRC06:05
*** SteffanW has quit IRC06:06
*** Son_Goku has joined #openstack06:06
*** e0ne has quit IRC06:07
*** e0ne has joined #openstack06:07
*** Son_Goku has quit IRC06:08
*** smccarth_ has quit IRC06:08
*** Son_Goku has joined #openstack06:09
*** Son_Goku has quit IRC06:11
*** ivan_mironov has quit IRC06:11
*** Son_Goku has joined #openstack06:12
*** `Calvin has quit IRC06:13
*** stuh84 has quit IRC06:13
*** ivar-lazzaro has quit IRC06:13
*** e0ne_ has joined #openstack06:14
*** ivan_mironov has joined #openstack06:14
*** Son_Goku has quit IRC06:14
*** e0ne has quit IRC06:15
*** `Calvin has joined #openstack06:15
*** `Calvin has joined #openstack06:15
*** fragatina has joined #openstack06:15
*** Son_Goku has joined #openstack06:15
*** fragatina has quit IRC06:16
*** jprovazn has joined #openstack06:17
*** caowei has quit IRC06:17
*** raunak has quit IRC06:17
*** fragatina has joined #openstack06:17
*** Son_Goku has quit IRC06:17
*** Son_Goku has joined #openstack06:18
*** ivan_mironov has quit IRC06:18
*** Son_Goku has quit IRC06:19
*** `Calvin has quit IRC06:20
*** Son_Goku has joined #openstack06:20
*** jperry has quit IRC06:20
*** `Calvin has joined #openstack06:21
*** `Calvin has joined #openstack06:21
*** Son_Goku has quit IRC06:21
*** AndChat574464 has joined #openstack06:21
*** LotharKAtt has joined #openstack06:22
*** chlong has joined #openstack06:22
*** Son_Goku has joined #openstack06:22
*** ivan_mironov has joined #openstack06:22
*** dmueller-evoila has joined #openstack06:23
*** m3_del has joined #openstack06:23
*** Son_Goku has quit IRC06:24
*** ogny has joined #openstack06:24
*** e0ne_ has quit IRC06:24
*** Son_Goku has joined #openstack06:25
*** aolwas has joined #openstack06:25
*** Son_Goku has quit IRC06:26
*** sticker has quit IRC06:26
*** BrightStar has joined #openstack06:28
*** abelur_ has joined #openstack06:28
*** thetrav has quit IRC06:29
*** hieulq has quit IRC06:30
*** yamamoto has quit IRC06:31
*** dmueller-evoila has quit IRC06:32
*** castlemilk has joined #openstack06:33
*** hieulq has joined #openstack06:33
*** adriant has quit IRC06:35
*** psachin has quit IRC06:35
*** akulshin has joined #openstack06:36
*** woodard has quit IRC06:36
*** lbrune has quit IRC06:38
*** aolwas is now known as aolwas_06:39
*** akulshin has quit IRC06:41
*** rcernin has joined #openstack06:41
*** m3_del has quit IRC06:41
*** aolwas_ is now known as aolwas06:41
*** skazi has joined #openstack06:42
*** LotharKAtt has quit IRC06:42
*** someara2 has joined #openstack06:44
*** arecknag has joined #openstack06:45
*** swatson__ has quit IRC06:45
*** bocaneri has joined #openstack06:47
*** mrBen2k2k2k has quit IRC06:47
*** AbstractArtist has joined #openstack06:48
*** fredrik has joined #openstack06:48
*** bvandenh has joined #openstack06:48
*** `Calvin has quit IRC06:49
*** `Calvin has joined #openstack06:50
*** JustinHitla has joined #openstack06:50
JustinHitlawhat is this channel about ?06:51
JustinHitlawhat is openstack ?06:51
*** zackf has joined #openstack06:51
KpuCko:-))06:52
KpuCkoJustinHitla are you living in 21 century?06:53
JustinHitlayes06:53
KpuCkohttps://www.openstack.org/06:53
JustinHitlaI don't have free screen windows to open that link in lynx06:53
KpuCkoyou can open that link in lynx06:54
JustinHitlaI don't have free screen windows06:54
KpuCkouse firefox ;>06:54
JustinHitlano06:54
JustinHitlasomething telling me you are Bulgarian06:54
KpuCkoso what?06:54
JustinHitlanothing06:55
KpuCkoi understand, you just need somebody to chat06:55
*** `Calvin has quit IRC06:55
*** e0ne has joined #openstack06:55
*** castlemilk has quit IRC06:55
*** ade_b has joined #openstack06:56
*** zackf has quit IRC06:56
*** LotharKAtt has joined #openstack06:56
*** tesseract- has joined #openstack06:56
*** Cyberg has joined #openstack06:57
*** Cyberg has quit IRC06:58
*** lbrune has joined #openstack06:59
*** aolwas has quit IRC06:59
*** yamahata has joined #openstack07:00
*** lbrune has left #openstack07:00
JustinHitlareally07:00
JustinHitlaJustinHitla: what are they talking about, I don't need anyone to chat, am I right07:01
JustinHitlaJustinHitla: you always right07:01
JustinHitlaJustinHitla: do you know what openstack is ?07:02
JustinHitlaJustinHitla: no never heard of it07:02
*** rchavik has quit IRC07:06
*** jwitko has joined #openstack07:06
*** trananhkma has quit IRC07:07
*** jeblair has quit IRC07:07
*** aolwas has joined #openstack07:07
*** mrBen2k2k2k has joined #openstack07:08
*** m3_del has joined #openstack07:08
*** cu5 has quit IRC07:09
*** dsariel has quit IRC07:11
*** jeblair has joined #openstack07:15
*** rads has joined #openstack07:15
*** salv-orl_ has joined #openstack07:16
*** KarlchenK has joined #openstack07:16
*** lbrune has joined #openstack07:17
*** lbrune has left #openstack07:17
*** kushal has quit IRC07:18
*** salv-orlando has quit IRC07:19
*** mosulica has joined #openstack07:20
*** salv-orl_ has quit IRC07:20
*** foxhunt_away is now known as foxhunt7207:22
*** Shengping has joined #openstack07:22
*** kester___ has joined #openstack07:23
*** cu5 has joined #openstack07:24
*** msimonin has joined #openstack07:24
Shengpinghello friend is any irc for devstack ?07:24
*** msimonin has quit IRC07:25
*** jpich has joined #openstack07:25
*** smccarthy has joined #openstack07:26
*** Shengping has left #openstack07:27
*** m3_del has quit IRC07:28
*** Na3iL has joined #openstack07:29
*** castlemilk has joined #openstack07:29
*** rads_ has joined #openstack07:30
*** rads_ has quit IRC07:31
*** Serlex has joined #openstack07:31
*** Shengping has joined #openstack07:31
*** smccarthy has quit IRC07:31
*** rads_ has joined #openstack07:31
*** abehl has joined #openstack07:32
*** rads_ has quit IRC07:32
*** rads has quit IRC07:33
*** castlemilk has quit IRC07:33
*** Shengping has left #openstack07:33
*** chan20 has joined #openstack07:33
*** castlemilk has joined #openstack07:33
*** Shengping has joined #openstack07:34
*** Shengping has quit IRC07:37
*** dmueller-evoila has joined #openstack07:41
*** Chr1st1an has joined #openstack07:41
*** pnavarro has joined #openstack07:42
*** AbstractArtist has quit IRC07:42
*** msimonin has joined #openstack07:43
*** castlemilk has quit IRC07:43
*** thetrav has joined #openstack07:43
*** castlemilk has joined #openstack07:43
*** bvandenh has quit IRC07:44
*** aolwas has quit IRC07:44
*** foexle has joined #openstack07:47
*** SteffanW has joined #openstack07:47
*** aolwas has joined #openstack07:47
*** vishwanathj has quit IRC07:51
*** rtheis has joined #openstack07:51
*** amotoki has joined #openstack07:53
*** wgao has quit IRC07:53
*** mrBen2k2k2k has quit IRC07:54
*** m3_del has joined #openstack07:55
*** dmueller-evoila has quit IRC07:55
*** dmueller-evoila has joined #openstack07:55
*** amotoki_ has joined #openstack07:57
*** dmueller-evoila has quit IRC07:58
*** amotoki has quit IRC07:59
*** SteffanW has quit IRC08:01
*** TMM has quit IRC08:01
*** yamahata has quit IRC08:03
*** AbstractArtist has joined #openstack08:03
*** Poornima has joined #openstack08:05
*** joyee has joined #openstack08:09
*** JRobinson__ has quit IRC08:11
*** wgao has joined #openstack08:11
*** brokencycle has joined #openstack08:12
*** iranzo has joined #openstack08:12
*** chan20 has quit IRC08:13
*** mrBen2k2k2k has joined #openstack08:14
*** mhickey has joined #openstack08:14
*** vishwanathj has joined #openstack08:14
*** `Calvin has joined #openstack08:14
*** e0ne has quit IRC08:14
*** dspd has joined #openstack08:14
*** gfidente has joined #openstack08:15
*** m3_del has quit IRC08:15
*** bvandenh has joined #openstack08:16
dspdHello Stackers, I have a query that I'm hoping to get your advise on.. I'm trying to use the nova API to 'GET' details of a server by matching its name.. things are fine as long as there aren't special characters in the name. but I am unable to query for names containing '(' or ')'08:16
dspde.g. : <url>servers?name=abc is fine, but fails for name=inst_1_(test)_os08:17
*** xHans has quit IRC08:18
dspdI tried url encoding the name, but that returns empty results.. has anyone been able to get around this?08:18
*** ezobn has quit IRC08:18
*** ggnel_t has quit IRC08:18
*** castlemilk has quit IRC08:19
*** skatebard_ has joined #openstack08:22
*** joyee has quit IRC08:22
*** brokencycle has quit IRC08:23
*** ezobn has joined #openstack08:27
*** AbstractArtist has quit IRC08:29
*** brokencycle has joined #openstack08:29
*** markvoelker has quit IRC08:30
*** xHans has joined #openstack08:31
*** castlemilk has joined #openstack08:31
*** ganeshnalawade has joined #openstack08:31
*** ezobn has quit IRC08:31
*** ade_b has quit IRC08:33
*** chan20 has joined #openstack08:34
*** castlemilk has quit IRC08:35
*** rtheis_ has joined #openstack08:35
*** zenoway has joined #openstack08:37
*** neoark has quit IRC08:37
*** ganeshnalawade has quit IRC08:37
*** rtheis__ has joined #openstack08:37
*** ganeshnalawade has joined #openstack08:38
*** rtheis has quit IRC08:39
*** Trixboxer has quit IRC08:40
*** geaaru has quit IRC08:40
*** ade_b has joined #openstack08:40
*** ade_b has quit IRC08:40
*** eandersson_ has joined #openstack08:41
*** ade_b has joined #openstack08:41
*** rtheis_ has quit IRC08:41
*** ganeshnalawade has quit IRC08:42
*** abelur_ has quit IRC08:42
*** m3_del has joined #openstack08:42
*** finisherr has quit IRC08:43
*** ganeshnalawade has joined #openstack08:43
*** hoonetorg has quit IRC08:43
*** ganeshnalawade has quit IRC08:44
*** ganeshnalawade has joined #openstack08:45
*** ezobn has joined #openstack08:47
*** ganeshnalawade has quit IRC08:47
*** TMM has joined #openstack08:47
*** finisherr has joined #openstack08:48
*** jtomasek has joined #openstack08:48
*** finisherr has quit IRC08:48
*** LotharKAtt has quit IRC08:49
*** ganeshnalawade has joined #openstack08:51
*** ganeshnalawade has quit IRC08:52
*** Bhaskarakiran has joined #openstack08:53
*** hoonetorg has joined #openstack08:53
*** abelur_ has joined #openstack08:54
*** djan has quit IRC08:56
*** ganeshnalawade has joined #openstack08:59
*** ezobn has quit IRC08:59
*** tochi has quit IRC08:59
*** AbstractArtist has joined #openstack08:59
*** nmagnezi has quit IRC08:59
*** hvprash has joined #openstack09:00
*** jsheeren has joined #openstack09:00
*** hvprash_ has quit IRC09:01
*** mrBen2k2k2k has quit IRC09:02
*** limao has quit IRC09:03
*** chlong has quit IRC09:03
*** m3_del has quit IRC09:03
*** abelur_ has quit IRC09:04
*** electrofelix has joined #openstack09:04
*** LotharKAtt has joined #openstack09:04
*** lbrune has joined #openstack09:05
*** lbrune has left #openstack09:05
*** ganeshnalawade has quit IRC09:05
*** salv-orlando has joined #openstack09:06
*** ganeshnalawade has joined #openstack09:06
*** limao has joined #openstack09:07
*** ganeshnalawade has quit IRC09:08
*** iranzo has quit IRC09:09
*** AbstractArtist has quit IRC09:11
*** iranzo has joined #openstack09:12
*** LotharKAtt has quit IRC09:13
*** vishwanathj is now known as vishwanathj_zzz09:15
*** v3nd3tta is now known as v3nd3tta``09:16
*** Mudpuppy has joined #openstack09:16
*** egonzalez90 has joined #openstack09:16
*** abelur_ has joined #openstack09:17
*** ganeshnalawade has joined #openstack09:17
*** adun153 has joined #openstack09:19
*** ganeshnalawade has quit IRC09:20
*** ganeshnalawade has joined #openstack09:20
*** kbaegis has joined #openstack09:20
*** Mudpuppy has quit IRC09:21
*** mrBen2k2k2k has joined #openstack09:25
*** ganeshnalawade has quit IRC09:26
*** Darcidride has joined #openstack09:26
*** ganeshnalawade has joined #openstack09:26
*** LotharKAtt has joined #openstack09:27
*** abelur_ has quit IRC09:27
*** ganeshnalawade has quit IRC09:28
*** om has quit IRC09:28
*** m3_del has joined #openstack09:30
*** e0ne has joined #openstack09:31
*** markvoelker has joined #openstack09:31
*** kester___ has quit IRC09:31
*** ju5t has joined #openstack09:33
*** lucendio has joined #openstack09:34
*** gli has quit IRC09:34
*** markvoelker has quit IRC09:36
*** LotharKAtt has quit IRC09:36
*** cyborg-one has joined #openstack09:37
*** ju5t has left #openstack09:38
*** dgurtner has joined #openstack09:39
*** abelur_ has joined #openstack09:40
*** AnilV4 has joined #openstack09:41
*** ggnel_t has joined #openstack09:43
*** lbrune has joined #openstack09:44
*** lbrune has left #openstack09:44
*** SteffanW has joined #openstack09:45
*** jtomasek has quit IRC09:46
*** ianychoi has quit IRC09:47
*** jtomasek has joined #openstack09:47
*** ganeshnalawade has joined #openstack09:47
*** badon has quit IRC09:49
*** donghao has quit IRC09:49
*** geaaru has joined #openstack09:49
*** Chr1st1an has quit IRC09:50
*** LotharKAtt has joined #openstack09:52
*** manous has joined #openstack09:52
*** leanderthal|afk is now known as leanderthal09:53
*** m3_del has quit IRC09:53
*** lbrune has joined #openstack09:53
*** lbrune has left #openstack09:55
*** ganeshnalawade has quit IRC09:55
*** hfu has quit IRC09:57
*** castlemilk has joined #openstack09:57
*** abelur_ has quit IRC09:58
*** someara2 has quit IRC09:58
*** geaaru has quit IRC09:58
*** M-shine has quit IRC09:59
*** roubix has quit IRC10:01
*** castlemilk has quit IRC10:02
*** someara2 has joined #openstack10:03
*** efoley has joined #openstack10:04
*** aastha has quit IRC10:07
*** ksobkowiak has quit IRC10:07
*** jtomasek has quit IRC10:08
*** abelur_ has joined #openstack10:10
*** Son_Goku has joined #openstack10:10
*** geaaru has joined #openstack10:11
*** limao has quit IRC10:12
*** AbstractArtist has joined #openstack10:14
*** mrBen2k2k2k has quit IRC10:15
*** geaaru has quit IRC10:17
*** AfroThundr has joined #openstack10:17
*** geaaru has joined #openstack10:19
*** abelur_ has quit IRC10:19
*** m3_del has joined #openstack10:20
*** Son_Goku has quit IRC10:22
*** geaaru has quit IRC10:23
*** brokencycle has quit IRC10:24
*** xarg has quit IRC10:27
*** xarg has joined #openstack10:28
*** dsecuma has joined #openstack10:29
*** psanchez has quit IRC10:29
*** dbrandon has quit IRC10:29
*** chan20 has quit IRC10:29
*** TinkerTyper has quit IRC10:30
*** abelur_ has joined #openstack10:31
*** psanchez has joined #openstack10:31
*** TinkerTyper has joined #openstack10:31
*** markvoelker has joined #openstack10:32
*** dbrandon has joined #openstack10:32
*** dsecuma has left #openstack10:33
nexusguy59Good morning everyone10:35
nexusguy59I have a perplexing issue10:35
*** geaaru has joined #openstack10:36
*** abelur_ has quit IRC10:36
*** markvoelker has quit IRC10:36
*** zackf has joined #openstack10:36
*** M-shine has joined #openstack10:37
nexusguy59When I launch an instance with OenStack it's not detecking the disk that I choose with the flavor (ex: small) should create a 20 gb disk and install it on the disk however the os is not detecting the disk. Where do I look to see what's going on and how do I fix it10:37
*** zenoway has quit IRC10:37
*** zenoway has joined #openstack10:38
*** SteffanW has quit IRC10:38
*** jperry has joined #openstack10:38
*** mrBen2k2k2k has joined #openstack10:39
nexusguy59not detecking * detecting10:40
*** zackf has quit IRC10:41
*** thetrav has quit IRC10:42
*** m3_del has quit IRC10:44
*** gildub has quit IRC10:45
*** gildub_ has quit IRC10:45
*** zenoway has quit IRC10:46
*** thetrav has joined #openstack10:46
*** zenoway has joined #openstack10:48
*** abelur_ has joined #openstack10:49
*** thetrav has quit IRC10:50
*** mosulica has quit IRC10:52
*** abelur_ has quit IRC10:54
*** hoobaman has quit IRC10:54
*** yamamoto has joined #openstack10:58
*** ogny has quit IRC10:59
*** rdas has quit IRC11:02
*** jsheeren has quit IRC11:03
*** ogny has joined #openstack11:04
*** GenteelBen has joined #openstack11:05
*** abelur_ has joined #openstack11:07
prateeknexusguy59, go to /var/lib/nova/instances/, that is where you can find the disk for your instance11:09
*** korutsu has quit IRC11:10
prateeknexusguy59, also what do you mean the os is not detecting the disk11:10
prateeknexusguy59, the images are qcow2 images and you would not see full 20 gigs as the disk11:11
*** korutsu has joined #openstack11:11
*** m3_del has joined #openstack11:11
*** apahim has quit IRC11:11
nexusguy59Well I am trying to install Ubuntu 16.04, it scans for disks then asks me for a driver for the disk my assumption is if it's asking for a driver it doesn't see the disk'11:12
prateekyou are trying to install ubuntu on a VM you created using openstack ?11:13
nexusguy59YEs I Am lauching an instance with the Ubuntu Cloaud image attached to it11:13
*** bvanhav has joined #openstack11:14
nexusguy59Oops sorry for the typo cloaud is Cloud11:14
*** Son_Goku has joined #openstack11:15
-openstackstatus- NOTICE: Precise tests on OSIC provider are currently failing, please stop your checks until the issue is resolved.11:15
*** BrightStar has quit IRC11:16
*** BrightStar has joined #openstack11:17
nexusguy59I Am very new to OpenStack so please forgive my stupidty whnen asking questions11:18
nexusguy59whnen * when11:19
*** bvandenh has quit IRC11:20
-openstackstatus- NOTICE: DSVM jobs on OSIC currently failing because of IP collisions, fix is in the gate - https://review.openstack.org/#/c/357764/ - please hold rechecks until merged11:20
*** manous has quit IRC11:21
*** Connir has quit IRC11:22
*** Connir has joined #openstack11:22
prateeknexusguy59, can you paste the command you are using to launch the instance ?11:23
*** King_InuYasha has joined #openstack11:23
*** donghao has joined #openstack11:24
*** psanchez has quit IRC11:26
*** SotK has quit IRC11:26
*** pkoniszewski has quit IRC11:26
*** dbecker has quit IRC11:26
*** lbrune has joined #openstack11:26
*** Son_Goku has quit IRC11:26
*** dbecker has joined #openstack11:26
*** dmueller-evoila has joined #openstack11:26
*** lbrune has left #openstack11:26
*** SotK has joined #openstack11:27
*** psanchez has joined #openstack11:27
*** pkoniszewski has joined #openstack11:27
*** code-R_ has quit IRC11:28
*** jsheeren has joined #openstack11:28
*** Connir has quit IRC11:29
*** someara2 has quit IRC11:31
*** mrBen2k2k2k has quit IRC11:31
*** rtheis__ is now known as rtheis11:31
*** Na3iL has quit IRC11:32
*** markvoelker has joined #openstack11:32
*** Yarboa has joined #openstack11:33
*** abelur_ has quit IRC11:33
*** manous has joined #openstack11:33
*** kmohan_ has joined #openstack11:33
*** dmueller-evoila has quit IRC11:35
*** BrightStar has quit IRC11:36
*** kmARC_ has joined #openstack11:37
*** markvoelker has quit IRC11:37
*** someara2 has joined #openstack11:38
*** Yarboa has quit IRC11:38
*** m3_del has quit IRC11:38
*** Na3iL has joined #openstack11:39
*** chan20 has joined #openstack11:39
*** kmohan__ has joined #openstack11:39
*** Yarboa has joined #openstack11:40
*** kmARC_ has quit IRC11:41
*** hvprash_ has joined #openstack11:42
*** cdelatte has joined #openstack11:42
*** baoli has joined #openstack11:42
*** mosulica has joined #openstack11:43
*** kmohan_ has quit IRC11:43
*** thorst_ has joined #openstack11:43
*** hvprash has quit IRC11:45
*** abelur_ has joined #openstack11:45
*** smccarthy has joined #openstack11:46
*** King_InuYasha is now known as Son_Goku11:47
*** dizquierdo has joined #openstack11:47
-openstackstatus- NOTICE: OSIC has burned through the problematic IP range with failures, things should be back to normal now.11:48
*** Krast has quit IRC11:48
*** lbrune has joined #openstack11:49
*** lbrune has left #openstack11:49
nexusguy59prateek, not launching from cli, I am launching from WebUI11:50
*** pravins has quit IRC11:50
*** smccarthy has quit IRC11:50
nexusguy59And the instance is stored on a compute node I was able to find the instance11:52
*** lbrune has joined #openstack11:53
prateeknexusguy59, ideally the qcow2 image you are using would have the things required for the instance to boot11:53
*** abelur_ has quit IRC11:53
prateeknexusguy59, and if you see the instance then it has booted11:53
*** lbrune has left #openstack11:53
nexusguy59Yes sir I agree, I am working on it, I am just trying to get s little help to get me there lol11:53
*** mrBen2k2k2k has joined #openstack11:56
*** Poornima has quit IRC11:56
*** morazi has joined #openstack11:57
*** julim has quit IRC11:57
*** wgao has quit IRC11:57
nexusguy59Yes now it is a matter of the correct keypair assigned to it so I can ssh into it11:57
*** amoralej is now known as amoralej|lunch11:58
*** dmellado is now known as dmellado|lunch12:02
*** dmellado|lunch is now known as dmellado12:02
*** mfedosin has joined #openstack12:02
*** hippiepete has joined #openstack12:03
*** retreved has joined #openstack12:04
*** m3_del has joined #openstack12:05
*** yamamoto has quit IRC12:05
*** jpena is now known as jpena|lunch12:05
*** yamamoto has joined #openstack12:06
*** rodrigods has quit IRC12:08
*** rodrigods has joined #openstack12:08
*** adun153 has quit IRC12:10
*** rfolco has joined #openstack12:10
*** yamamoto has quit IRC12:11
*** admin0 has joined #openstack12:11
*** Yarboa has quit IRC12:11
*** wgao has joined #openstack12:13
*** smccarthy has joined #openstack12:14
*** AndChat574464 has quit IRC12:15
*** thrash|g0ne is now known as thrash12:15
*** tpsilva has joined #openstack12:16
*** kmohan_ has joined #openstack12:17
*** code-R has joined #openstack12:17
*** smccarthy has quit IRC12:19
*** castlemilk has joined #openstack12:19
*** schlitzer has joined #openstack12:20
*** kmohan__ has quit IRC12:20
*** woodard has joined #openstack12:21
*** kmohan_ has quit IRC12:21
*** pradk has joined #openstack12:22
*** joeg has joined #openstack12:27
nexusguy59Well shucks I created a keypair and applied and still won;t let me login12:27
nexusguy59won't even12:27
*** joeg has left #openstack12:28
*** rgogunskiy has quit IRC12:31
*** abehl has quit IRC12:32
*** m3_del has quit IRC12:32
*** abehl has joined #openstack12:32
*** steveg_afk has quit IRC12:32
*** markvoelker has joined #openstack12:33
*** dmueller-evoila has joined #openstack12:34
*** Pavo has quit IRC12:34
*** yamamoto has joined #openstack12:36
*** egonzalez90 has quit IRC12:36
*** hola has joined #openstack12:36
*** markvoelker has quit IRC12:38
*** Pavo has joined #openstack12:38
*** apahim has joined #openstack12:39
*** valeech has quit IRC12:39
*** AnilV4 has quit IRC12:39
*** dmueller-evoila has quit IRC12:40
*** AtumT has joined #openstack12:41
*** admin0 has quit IRC12:44
*** LotharKAtt has quit IRC12:44
*** greyl has quit IRC12:45
*** RootJ has joined #openstack12:45
RootJHi i have a question12:46
RootJif anyone i swilling to help12:46
*** valw has joined #openstack12:46
RootJwith the murano aplication catalog12:46
QlawyWhere I can set migration timeout for instance?12:47
Qlawyit seems to be 150 or 180 sec however copying 22G disk takes a bit longer :/12:47
*** jtomasek has joined #openstack12:48
Sam-I-AmQlawy: might be a good idea to use shared storage12:49
RootJOk so.....12:49
RootJmy question is this12:49
*** markvoelker has joined #openstack12:49
*** prateek has quit IRC12:49
RootJbecause im doing the murano project as my thesis12:49
*** manous has quit IRC12:49
*** mrBen2k2k2k has quit IRC12:50
RootJIf im running the project under my virtual machine (+ all the slaves) and when i want to deploy an application or multiple, where does the application save too, on the image or in 1 image ect ect...?12:50
nexusguy59Hmmm why is my ketpairs not working, I still get prompted for login creds12:51
Sam-I-Amnexusguy59: probably because metadata isnt working12:51
*** baoli has quit IRC12:51
*** diogogmt has joined #openstack12:51
nexusguy59Great okay of to google land I go then lol12:51
RootJor in real life if we have a legit server where they have the OpenStack horizon working on ...12:51
nexusguy59Sam-I-Am, Thanks man this is starting to be a full time job hehehe12:52
*** jcarter2 has joined #openstack12:52
*** bobh has joined #openstack12:54
*** lbrune has joined #openstack12:55
*** ganeshnalawade has joined #openstack12:55
Sam-I-Amnexusguy59: welcome to my world since 201312:55
RootJso Sam can you explain that to me if its possible?12:55
RootJsorry for bugging into your conversation12:55
*** kushal has joined #openstack12:56
*** ganeshnalawade has quit IRC12:56
*** vhoward has joined #openstack12:56
*** jamesdenton has joined #openstack12:56
*** salv-orlando has quit IRC12:57
*** LotharKAtt has joined #openstack12:57
*** lbrune has quit IRC12:57
*** vhoward has quit IRC12:58
*** ganeshnalawade has joined #openstack12:58
*** m3_del has joined #openstack12:58
*** vhoward has joined #openstack12:58
Sam-I-AmRootJ: i havent used murano13:00
RootJohhh13:00
nexusguy59Wonderful Sam-I-Am, it appears metadata is not loading  for the glance images, I believe there in lies my problem13:00
*** ganeshnalawade has quit IRC13:01
Sam-I-Amnexusguy59: they're booting, but not getting md via neutron, or some other way isnt working?13:01
*** bvandenh has joined #openstack13:01
nexusguy59<- lol That's my next project to tackle how to add the App Catalog, Oh Boy13:01
Jehanehi, I'm trying to setup multi-domains and ldap and we are struggling with groups13:01
*** steveg_afk has joined #openstack13:01
Jehaneanyone here use ldap groupOfMembers ?13:01
*** kushal has quit IRC13:01
*** Jerin_ has joined #openstack13:02
nexusguy59Sam-I-Am, got ya well dang now I have to really search and resolve this is driving me nuts lol'13:02
*** bobh has quit IRC13:03
*** baoli has joined #openstack13:03
nexusguy59Nothing is as easy as it appears is i? Lord Have Mercy13:03
*** ceddybu__ has joined #openstack13:03
*** lucendio has quit IRC13:03
RootJnexus: well as i see it, installing murano and then basically installing the horizon dashboard , as i see on a virtual computer the DHCP is *auto* thx to Neutron and then from there on you make an environment put the apps in and your kinda good to go as I see it if you want to test it out13:03
*** dizquierdo has quit IRC13:03
*** kxseven has quit IRC13:04
RootJwhats the server name and port for the mIRC , because i want to go to the murano channel...13:04
*** Serlex has quit IRC13:04
*** kushal has joined #openstack13:04
nexusguy59I will give it a shot after i tackle this first problem I am having, of course my install has no App Catalog at all so I may have to start from scratch again lol13:04
Sam-I-Amthere might be a #openstack-murano13:04
Sam-I-Ambut its likely for developers, not users13:05
*** andymaier has joined #openstack13:05
nexusguy59I think there is as well as #opnstach-appcatalog13:05
nexusguy59oops #openstack-appcatalog13:05
RootJyes but i need the serve rinfo13:05
RootJinfo*13:05
*** d-ops has joined #openstack13:05
nexusguy59wait it's openstack-app-catalog13:06
*** lbrune has joined #openstack13:06
*** Na3iL has quit IRC13:06
RootJi know chat.freenode.net is the server but the port?13:06
Sam-I-Amits the same server info as this channel13:06
*** nmagnezi has joined #openstack13:06
lastmikoiReading up on the possibility for me to deploy a singlenode openstack for personal use, seems like the deployment solutions are either >=2 nodes (TripleO) or non-production-ready (Packstack, Devstack). Is there a "production-ready" (read: as stable as possible) way of deploying a single-node openstack ?13:06
nexusguy59I don;t have a clue prolly 677713:06
*** skatebard_ has quit IRC13:06
Sam-I-Amlastmikoi: no one uses a single node in production13:07
*** geaaru has quit IRC13:07
Sam-I-Amthus, no13:07
SketchRootJ: you're already on freenode... but generally 666713:07
*** fifieldt has quit IRC13:07
nexusguy59port 6667 my bad13:07
Sam-I-Amsingle-node envs are usually for development/testing13:07
*** TheFueley has joined #openstack13:08
RootJSketch: I'm currently on this channel thru the website not the official program13:08
Sam-I-Amlastmikoi: you might look at openstack-ansible. it has a single node option.13:08
*** coolsvap is now known as _coolsvap_13:08
lastmikoiSam-I-Am: Will look into it, thanks.13:09
RootJfound it! thank you13:10
nexusguy59lastmikoi, http://www.linuxtechi.com/single-node-openstack-liberty-installation-centos-7/ <- THis one worked but I liked Ubuntu so I used this one -> http://serenity-networks.com/installing-ubuntu-openstack-on-a-single-machine-instead-of-7/, But this was so I could get familiar with it13:10
*** jpena|lunch is now known as jpena13:10
*** 92AABFQCG has joined #openstack13:10
*** 1JTAA19BH has joined #openstack13:10
*** valw has quit IRC13:10
*** jtomasek has quit IRC13:11
TheFueleyAnyone know why I would be able to ping my neutron router but it doesn't pass traffic into the guest network side? I have all ports open in security group13:11
nexusguy59<- Is always messing with stuff 4 servers in my Mini-DataCenter homelab13:11
*** LotharKAtt has quit IRC13:11
*** castlemilk has quit IRC13:11
*** Pavo has quit IRC13:12
*** amoralej|lunch is now known as amoralej13:12
*** 92AABFQCG has quit IRC13:12
*** 1JTAA19BH has quit IRC13:12
*** kushal has quit IRC13:12
lastmikoinexusguy59: Seems like the centos7 guide uses packstack, which would hint at a reasonable stability :) Thanks.13:12
nexusguy59No Problem lastmikoi glad I could help13:12
*** geaaru has joined #openstack13:13
*** mtanino has joined #openstack13:13
*** paatalaBhairavi has joined #openstack13:14
*** jperry has quit IRC13:14
*** leflore has joined #openstack13:15
*** jcarter2 has quit IRC13:16
*** lbrune has quit IRC13:17
*** jcarter2 has joined #openstack13:17
*** mohsentux has joined #openstack13:17
*** fifieldt has joined #openstack13:18
*** kylek3h has joined #openstack13:18
*** manous has joined #openstack13:18
*** hfu has joined #openstack13:19
*** kylek3h has quit IRC13:20
*** kushal has joined #openstack13:21
*** Jerin_ has quit IRC13:21
*** skazi has quit IRC13:21
*** mtanino has quit IRC13:21
*** kylek3h has joined #openstack13:23
*** erkules_ is now known as erkules13:26
*** m3_del has quit IRC13:28
*** ayoung has joined #openstack13:28
*** mrBen2k2k2k has joined #openstack13:29
*** hvprash_ has quit IRC13:29
*** hvprash has joined #openstack13:29
*** aconole has joined #openstack13:30
pabutHey all ... still having problems with my "textbook" install of mitaka on Trusty .... nova image-list thows an exception while glance image-list or openstack image-list work fine .... works check and rechecked the config ... nova.conf ... glance-registry.conf ... glance-api.conf ....13:30
pabutfrom glance-api.log:13:30
pabut2016-08-18 20:59:14.188 16900 INFO eventlet.wsgi.server [req-f1766a2b-aa06-4528-a917-b99edbbc3336 b7629dd96f98477cb006a2469dda8234 21a9f73fa5f34d4d81eac8122b13090a - - -] 192.168.22.49 - - [18/Aug/2016 20:59:14] "GET /v1/images/detail?is_public=none&limit=20 HTTP/1.1" 500 454 0.82097113:30
*** jheroux has joined #openstack13:31
*** julim has joined #openstack13:31
*** kushal has quit IRC13:31
*** bobh has joined #openstack13:33
*** warriorforGod has joined #openstack13:34
pabutwhen I google I see LOTS of people with the problem but no solutions .... is there something missing in the documentation??13:34
*** johnmilton has quit IRC13:34
*** raunak has joined #openstack13:34
*** baoli has quit IRC13:34
*** egonzalez90 has joined #openstack13:35
*** rbak has joined #openstack13:35
*** lbrune has joined #openstack13:35
*** mkovarik has quit IRC13:37
*** mkovarik has joined #openstack13:38
*** warriorforGod has quit IRC13:39
*** lbrune has quit IRC13:39
*** faiz89 has joined #openstack13:40
*** pbandark has quit IRC13:42
*** jperry has joined #openstack13:42
*** foexle has quit IRC13:43
*** mkovarik has quit IRC13:43
*** castlemilk has joined #openstack13:44
*** foexle has joined #openstack13:45
*** zul has quit IRC13:46
*** baoli has joined #openstack13:47
*** nmagnezi has quit IRC13:47
*** donghao has quit IRC13:48
*** janzian has joined #openstack13:48
*** paatalaBhairavi has quit IRC13:48
*** castlemilk has quit IRC13:48
*** dansmith is now known as superdan13:48
*** ranjithd1 has joined #openstack13:48
*** ranjithd has quit IRC13:49
*** johnmilton has joined #openstack13:50
*** johnmilton has quit IRC13:51
*** hvprash_ has joined #openstack13:51
*** Na3iL has joined #openstack13:52
*** edleafe is now known as figleaf13:52
*** johnmilton has joined #openstack13:52
*** zul has joined #openstack13:53
*** valeech has joined #openstack13:53
*** pravins has joined #openstack13:53
*** hvprash has quit IRC13:54
*** catintheroof has joined #openstack13:54
*** m3_del has joined #openstack13:55
*** e0ne_ has joined #openstack13:55
*** burgerk has joined #openstack13:55
*** e0ne has quit IRC13:55
*** KLevenstein has joined #openstack13:56
*** pkennedy has joined #openstack13:56
*** jsheeren has quit IRC13:56
*** piet has joined #openstack13:57
*** KLevenstein_ has joined #openstack13:57
*** mrBen2k2k2k has quit IRC13:57
*** slaweq_ has quit IRC13:57
*** Bhaskarakiran has quit IRC13:58
*** LotharKAtt has joined #openstack13:58
*** abehl has quit IRC13:58
*** Mudpuppy has joined #openstack13:59
*** andymaier has quit IRC13:59
*** anush_ has joined #openstack14:00
*** grmontpetit has joined #openstack14:00
*** KLevenstein has quit IRC14:00
*** KLevenstein_ is now known as KLevenstein14:00
*** catintheroof has quit IRC14:01
*** Son_Goku has quit IRC14:01
*** zenoway has quit IRC14:02
*** zenoway has joined #openstack14:02
*** diogogmt has quit IRC14:03
*** Mudpuppy has quit IRC14:04
*** chan20 has quit IRC14:04
*** diogogmt has joined #openstack14:04
*** crose has joined #openstack14:06
*** Mudpuppy has joined #openstack14:06
*** zenoway has quit IRC14:07
*** woodard has quit IRC14:07
*** zenoway has joined #openstack14:07
*** brian_price has quit IRC14:07
*** eandersson_ has quit IRC14:07
*** prateek has joined #openstack14:07
*** eandersson_ has joined #openstack14:08
*** kur1j has joined #openstack14:08
*** brian_price has joined #openstack14:09
*** matjazp has joined #openstack14:09
kur1jCan someone tell me if they have been able to successfully get the "Resize" option to work when going from a larger VM instance to a smaller instance (with a smaller drive) in the lastest stable version of OS Nova?14:10
*** brian_price has quit IRC14:12
*** chlong has joined #openstack14:13
*** hola has left #openstack14:14
*** xemdetia has joined #openstack14:15
*** crose has quit IRC14:15
*** hjanssen-hpe has joined #openstack14:17
*** hpe-hj has joined #openstack14:17
*** yamahata has joined #openstack14:18
*** kbringard has joined #openstack14:19
*** raunak has quit IRC14:21
*** Pavo has joined #openstack14:21
*** raunak has joined #openstack14:22
*** leanderthal is now known as leanderthal|afk14:22
*** annegentle has joined #openstack14:22
*** aeperezt has joined #openstack14:23
*** someara2 has quit IRC14:23
*** someara2_ has joined #openstack14:23
*** spotz_zzz is now known as spotz14:24
*** eMperror has joined #openstack14:24
*** donghao has joined #openstack14:24
*** JoseMello has joined #openstack14:25
*** syjulian_ has joined #openstack14:25
*** Benj_ has joined #openstack14:26
*** minnesotags has quit IRC14:26
*** zsais has quit IRC14:26
*** matjazp has quit IRC14:26
*** zsais has joined #openstack14:27
*** jtomasek has joined #openstack14:27
*** matjazp has joined #openstack14:28
*** mohsentux has quit IRC14:28
*** RootJ has quit IRC14:28
*** jtomasek has quit IRC14:28
*** mtanino has joined #openstack14:28
*** mohsentux has joined #openstack14:28
*** jtomasek has joined #openstack14:29
*** raunak has quit IRC14:29
*** ppradhan has joined #openstack14:29
*** brian_price has joined #openstack14:31
*** admin0 has joined #openstack14:31
*** Benj_ has quit IRC14:32
*** swatson__ has joined #openstack14:34
*** apahim has quit IRC14:36
*** michauds has joined #openstack14:36
*** arecknag has quit IRC14:36
*** matjazp has quit IRC14:38
*** blinky42 has quit IRC14:38
*** dlan has quit IRC14:39
*** dlan has joined #openstack14:39
*** zackf has joined #openstack14:40
*** blinky42 has joined #openstack14:40
*** pravins has quit IRC14:40
*** matjazp has joined #openstack14:40
*** slaweq_ has joined #openstack14:41
*** jcarter2_ has joined #openstack14:41
*** syjulian has joined #openstack14:41
*** donghao has quit IRC14:42
*** jcarter2 has quit IRC14:42
*** minnesotags has joined #openstack14:42
*** someara2 has joined #openstack14:42
*** foexle has quit IRC14:43
*** stuh84 has joined #openstack14:43
*** kbringard has quit IRC14:43
*** Lee1092 has quit IRC14:43
*** whenry has joined #openstack14:44
*** VW has joined #openstack14:44
*** someara2_ has quit IRC14:46
*** lbrune has joined #openstack14:48
*** lbrune has left #openstack14:48
*** KpuCko has left #openstack14:49
*** valeech has quit IRC14:50
*** valeech has joined #openstack14:51
*** matjazp has quit IRC14:51
*** mrBen2k2k2k has joined #openstack14:52
*** rrecio has joined #openstack14:54
*** ade_b has quit IRC14:54
*** burgerk has quit IRC14:54
*** ade_b has joined #openstack14:54
*** rrecio_ has joined #openstack14:55
*** vinaypotluri has joined #openstack14:56
*** slaweq_ has quit IRC14:57
*** rrecio has quit IRC14:59
*** knangia has joined #openstack14:59
*** hockeynut has joined #openstack15:00
*** salv-orlando has joined #openstack15:01
*** rama_y has joined #openstack15:01
*** blackboxsw has quit IRC15:01
*** lborda has joined #openstack15:02
*** hockeynut has quit IRC15:02
*** valeech_ has joined #openstack15:05
*** valeech has quit IRC15:05
*** valeech_ is now known as valeech15:05
*** su_zhang has joined #openstack15:06
*** prateek_ has joined #openstack15:07
*** blackboxsw has joined #openstack15:08
*** salv-orlando has quit IRC15:08
*** skapunker has joined #openstack15:08
*** prateek has quit IRC15:10
*** minnesotags has quit IRC15:11
*** brahama has quit IRC15:11
*** valw has joined #openstack15:13
*** pmathews has quit IRC15:13
*** valw_ has joined #openstack15:15
*** irated has quit IRC15:15
*** valw_ has quit IRC15:16
*** valw_ has joined #openstack15:16
*** valw_ has quit IRC15:16
*** mrBen2k2k2k has quit IRC15:17
*** lborda_ has joined #openstack15:17
*** Ephur has joined #openstack15:17
*** valw_ has joined #openstack15:18
*** valw has quit IRC15:18
*** netsinn has joined #openstack15:18
*** valw_ is now known as valw15:18
*** Serlex has joined #openstack15:18
*** lborda has quit IRC15:19
*** fredrik has quit IRC15:21
*** netsin has quit IRC15:21
*** dgurtner has quit IRC15:23
*** rcernin has quit IRC15:24
*** mosulica has quit IRC15:24
*** faiz89 has quit IRC15:24
*** piet has quit IRC15:24
*** zenoway has quit IRC15:24
*** lborda_ has quit IRC15:24
*** zenoway has joined #openstack15:25
*** zenoway has quit IRC15:25
*** zenoway has joined #openstack15:25
*** zenoway has quit IRC15:25
*** zenoway has joined #openstack15:26
*** pcaruana has quit IRC15:26
*** tumble has quit IRC15:27
*** Benj_ has joined #openstack15:27
*** LotharKAtt has quit IRC15:27
*** minnesotags has joined #openstack15:28
*** dslevin has joined #openstack15:29
*** zenoway has quit IRC15:30
*** blomquisg_gone is now known as blomquisg15:31
*** irated has joined #openstack15:31
*** gyee has joined #openstack15:31
*** jovon has joined #openstack15:32
*** VW has quit IRC15:32
*** VW has joined #openstack15:33
*** faiz89 has joined #openstack15:34
*** iranzo has quit IRC15:34
*** haplo37__ has joined #openstack15:34
*** stlbigdog has joined #openstack15:36
*** iranzo has joined #openstack15:38
*** iranzo has quit IRC15:38
*** iranzo has joined #openstack15:38
*** jelllove has joined #openstack15:39
*** ayoung has quit IRC15:39
*** e0ne_ has quit IRC15:39
*** m3_del has quit IRC15:39
*** valeech has quit IRC15:41
*** jelllove has quit IRC15:41
*** _coolsvap_ is now known as coolsvap15:42
*** rtheis has quit IRC15:42
*** foxhunt72 is now known as foxhunt_away15:43
*** eMperror has quit IRC15:43
*** VW has quit IRC15:43
*** VW has joined #openstack15:44
*** mlupton has joined #openstack15:44
*** iranzo has quit IRC15:44
*** salv-orlando has joined #openstack15:45
*** warriorforGod has joined #openstack15:45
*** LotharKAtt has joined #openstack15:46
*** yamamoto has quit IRC15:47
*** efoley has quit IRC15:47
*** iranzo has joined #openstack15:47
*** valeech has joined #openstack15:49
*** links has quit IRC15:49
*** jtomasek has quit IRC15:50
*** yamamoto has joined #openstack15:50
*** code-R_ has joined #openstack15:51
*** dronshaw has quit IRC15:52
*** TMM has quit IRC15:52
*** badon has joined #openstack15:52
*** rama_y has quit IRC15:53
*** code-R has quit IRC15:53
*** annegentle has quit IRC15:54
QlawySam-I-Am: I know shared storage would be the best but there is no really good solution for this15:54
*** pmathews has joined #openstack15:54
*** krypto has joined #openstack15:54
*** rtheis has joined #openstack15:54
*** rtheis has quit IRC15:54
QlawySam-I-Am: NFS is slow and I cannot use benefits from having SAN (over FC)15:54
JustinHitlasamba ?15:55
QlawySam-I-Am: I tried ocfs2 but it is very ... well tricky.15:55
QlawyJustinHitla: same problem as with NFS :( no benefits from having SAN :(15:55
*** valeech has quit IRC15:56
Qlawyglusterfs seemes to not be "production ready" or those were (ibm) GPFS fanboys telling this15:56
Qlawyand I read, somewhere, that having shared storage is not cloudish ;)15:57
Qlawyhttps://thornelabs.net/2014/06/14/do-not-use-shared-storage-for-openstack-instances.html maybe that was this article15:58
*** mdenny has joined #openstack15:58
*** bobh has quit IRC15:58
*** valeech has joined #openstack15:59
*** KarlchenK has quit IRC15:59
*** yamamoto has quit IRC15:59
*** smccarthy has joined #openstack16:00
*** AbstractArtist has quit IRC16:00
*** groen692 has quit IRC16:01
*** yamamoto has joined #openstack16:02
*** SiCiLiAnO has joined #openstack16:03
SiCiLiAnO 1 Abbraccio  A TuTTi . . . .  Ciao AmiCi Di >>>  #openstack <<<  SoNo CoN Voi   16:03
SiCiLiAnOhallo16:03
*** bvandenh has quit IRC16:03
*** smccarthy has quit IRC16:05
*** Darcidride has quit IRC16:05
*** su_zhang has quit IRC16:05
Sam-I-AmQlawy: there might be a misunderstanding between shared storage and what cinder does16:05
*** su_zhang has joined #openstack16:06
Sam-I-Amshared storage might imply that all instances share storage that can be a single point of failure16:06
Sam-I-Amthe point of cinder is enabling you to move an instance and having it reconnect to storage rather than copying the whole thing over16:06
*** bobh has joined #openstack16:07
Sam-I-Amcinder can use a number of different backends that instances dont need to know the details about16:07
QlawySam-I-Am: we are using cinder now, but.. my users want snapshots :/16:07
*** raunak has joined #openstack16:08
Qlawyand possiblity to restore them16:08
*** yamamoto has quit IRC16:08
Qlawyrebuilding instance from volume is "in progress" state16:08
Sam-I-Amsnapshot the cinder volumes?16:08
Qlawygreat, but how to revert? ;)16:08
QlawyI know how to deploy new one16:08
Qlawyin normal software there is no problem but... it is WebSphere :/16:09
*** mrBen2k2k2k has joined #openstack16:09
Sam-I-Amyou can boot from a snapshot cant you?16:09
*** ronis has joined #openstack16:09
*** bvanhav has quit IRC16:09
Qlawybut with different hostname16:09
Qlawybtw: my users are blind for other solutions than vmware style snapshots and I hate it :/16:09
*** leeantho has joined #openstack16:10
Sam-I-Amwell, that's not an openstack problem16:10
*** valeech has quit IRC16:10
Qlawyagree ;)16:10
Sam-I-Amopenstack is not vmware16:10
*** vimal has quit IRC16:10
*** su_zhang has quit IRC16:10
Sam-I-Amsame with people who expect live migration. also not a cloudy thing.16:10
Qlawyall I need is: how can I change timeout for migration16:10
QlawySam-I-Am: yeah :(16:10
SketchSam-I-Am: live migration seems to work pretty well with openstack16:10
QlawySketch: it is16:10
Sam-I-Amyou shouldn't have 22 gb vms that live entirely on compute nodes16:10
Sketchor do people expect automatic live migration16:11
Sam-I-Amthat's just a recipe for disaster16:11
Sketchit works pretty well with some form of shared storage anyway ;)16:11
Qlawyagree as hell16:11
Sam-I-AmSketch: it works, but its not cloudy.16:11
Sam-I-Amthe idea of cloud is that instances (and compute nodes) can come and go, and your application (and its users) don't notice anything16:11
Sam-I-Aminstances also come up nearly instantly (which means they arent huge)16:12
Qlawyclue of problem is: application16:12
Qlawyor ... oldstyle applocation16:12
Qlawybut as I said: I agree with anything you told16:13
*** faiz89 has quit IRC16:13
*** warriorforGod has quit IRC16:14
*** germs has joined #openstack16:14
Sam-I-Amis it nova or libvirt that's timing out?16:14
*** egonzalez90 has quit IRC16:14
Sam-I-Ami think this might be a libvirt option you need to pass16:14
Qlawylet me show you16:14
Sam-I-Amwell, i gotta run for a bit... probably back in an hour16:15
QlawyMigration running for 30 secs, memory 100% remaining; (bytes processed=0, remaining=0, total=0)16:15
TheFueleyanyone know how to troubleshoot why an instance router won't pass traffic to guest network? security group rules are wide open too16:15
Qlawythis is from nova16:15
QlawyINFO nova.virt.libvirt.driver16:15
Qlawyafter 150 it tels me that it failed16:16
Qlawybut I was looking for copied files16:16
Qlawyit just did not finish copy on time16:16
Qlawyand it why it timed out16:16
QlawyTheFueley: can you ping router IP from both sides?16:16
TheFueleyI can ping it from the public side. I can try from the internal side16:17
*** Serlex has quit IRC16:17
QlawyTheFueley: try to do it16:17
QlawyTheFueley: last time I had such problem I just forgot to add inetfrace from guest/internal network to router16:17
TheFueleyQlawy, I can ping internal side this way: ip netns exec qrouter-33c3dc4b-2e9e-484e-949c-0f2372dc089c ping -c 2 10.10.1.116:18
*** erkules_ has joined #openstack16:18
*** Lee1092 has joined #openstack16:18
TheFueleyQlawy, I can't reach the guest VM's so i had to do it that way16:18
Qlawyqrouter-33c3dc4b-2e9e-484e-949c-0f2372dc089c is your router namespace?16:19
QlawyI guess so16:19
TheFueleyQlawy, Yes.16:19
Qlawyand 10.10.1.1 is not your VM ip, but your router IP, isnt it?16:20
*** foexle has joined #openstack16:20
TheFueleyQlawy, correct16:20
*** coolsvap is now known as _coolsvap_16:20
TheFueleythe guest VMs all have floating IPs on provider network but I can't ping them16:20
*** germs has quit IRC16:20
*** erkules has quit IRC16:20
*** dig1tal has joined #openstack16:21
*** amotoki_ has quit IRC16:22
*** fragatina has quit IRC16:22
Qlawytry to ping VM ip from that namespace16:23
*** VW has quit IRC16:24
*** foexle has quit IRC16:24
Qlawybtw, are you sure they have fixed ips properly assigned? I mean try (vnc) console or get logs from vm and check if they received IPs16:24
*** VW has joined #openstack16:24
*** jdurgin1 has quit IRC16:26
*** exedore6 has joined #openstack16:26
*** castlemilk has joined #openstack16:26
*** stlbigdog has quit IRC16:27
TheFueleyQlawy, hmm. no responses from there16:27
*** jpich has quit IRC16:28
*** `Calvin has quit IRC16:28
QlawyTheFueley: so, problem is somewhere here :)16:28
*** bvanhav has joined #openstack16:28
QlawySam-I-Am: ha! live_migration_progress_timeout = 15016:29
*** VW has quit IRC16:29
*** mfedosin has quit IRC16:29
QlawyTheFueley: confirm ip assignement by getting console dump from VM16:30
TheFueleyQlawy, alright16:30
QlawyTheFueley: nova console-log16:30
*** stlbigdog has joined #openstack16:31
TheFueleyQlawy, hmm. empty output nova console-log VMname16:31
*** castlemilk has quit IRC16:31
Qlawywhat hypervisor are you using?16:31
*** gargola has joined #openstack16:32
*** VW has joined #openstack16:33
*** germs has joined #openstack16:36
*** m3_del has joined #openstack16:36
*** stlbigdog has quit IRC16:37
*** yamahata has quit IRC16:38
*** ogny has quit IRC16:38
*** rama_y has joined #openstack16:39
*** Suyi has joined #openstack16:41
*** mfedosin has joined #openstack16:41
*** synegi has joined #openstack16:42
*** warriorforGod has joined #openstack16:44
*** ayoung has joined #openstack16:44
*** ivar-lazzaro has joined #openstack16:44
*** woodard has joined #openstack16:45
*** fragatina has joined #openstack16:45
*** mrBen2k2k2k has quit IRC16:45
*** synegy34 has quit IRC16:45
*** brahama has joined #openstack16:47
*** trevormc has joined #openstack16:47
*** JustinHi1la has joined #openstack16:48
*** skapunker has quit IRC16:49
*** aimon_ has joined #openstack16:49
*** JustinHitla has quit IRC16:50
*** JustinHi1la is now known as JustinHitla16:51
*** smccarthy has joined #openstack16:51
*** fragatina has quit IRC16:51
*** annegentle has joined #openstack16:52
*** aimon has quit IRC16:52
*** SiCiLiAnO has left #openstack16:52
*** fragatina has joined #openstack16:52
*** tesseract- has quit IRC16:53
trevormcHi I'm trying to install devstack but I can't get past this error: "++lib/keystone:create_keystone_accounts:383  openstack project show admin -f value -c id Discovering versions from the identity service failed when creating the password plugin. Attempting to determine version from URL."16:53
trevormcit's related to this question https://ask.openstack.org/en/question/86071/devstack-installation-failure/16:53
*** gnstk has quit IRC16:55
*** amotoki has joined #openstack16:55
trevormcOther answers like http://askubuntu.com/questions/720967/internal-server-error-http-500-when-issuing-an-authentication-token-for-openst say to open openstack-dashboard and rename local_path but no such file exists for me. I'm using the trove-integration project which makes me local.conf look like this http://paste.openstack.org/show/561436/16:56
*** julim has quit IRC16:56
*** acidrainfall has joined #openstack16:57
*** skapunker has joined #openstack16:58
*** msimonin has quit IRC16:58
*** mmalik4 has joined #openstack16:58
*** swatson__ has quit IRC16:58
*** dmueller-evoila has joined #openstack17:01
*** pravins has joined #openstack17:01
jidarwhen I create an instance the neutron port doesn't get a veth (qvo/qvb) port created on the br-int, I'm fairly sure this is the issue so what defines this specific function?17:02
*** anush_ has quit IRC17:02
*** Ephur has quit IRC17:03
*** jathan has joined #openstack17:05
*** su_zhang has joined #openstack17:06
*** mhickey has quit IRC17:08
*** _AmitGalitz has joined #openstack17:09
*** kstev has quit IRC17:09
*** m3_del has quit IRC17:10
*** kstev has joined #openstack17:10
*** metachr0n has joined #openstack17:11
*** yamahata has joined #openstack17:12
*** _AmitGalitz_ has quit IRC17:12
*** johnny_ has joined #openstack17:13
*** steveg_afk has quit IRC17:14
dspdHello Stackers, I have a query that I'm hoping to get your advise on.. I'm trying to use the nova API to 'GET' details of a server by matching its name.. things are fine as long as there aren't special characters in the name. but I am unable to query for names containing '(' or ')' e.g. : <url>servers?name=abc is fine, but fails for name=inst_1_(test)_os  I tried url encoding the name, but that returns empty results.. has anyone been17:15
*** mhickey has joined #openstack17:19
*** ivar-lazzaro has quit IRC17:21
*** newmember has quit IRC17:23
*** synegi has quit IRC17:23
*** mikeoutland has joined #openstack17:24
*** electrofelix has quit IRC17:24
*** synegi has joined #openstack17:24
*** Ephur has joined #openstack17:25
*** KLevenstein has quit IRC17:26
*** mlupton has quit IRC17:26
*** mlupton_ has joined #openstack17:26
*** steveg_afk has joined #openstack17:27
*** stewie925_ has joined #openstack17:27
*** baoli has quit IRC17:29
*** baoli has joined #openstack17:30
*** stewie925 has quit IRC17:30
*** stewie925_ is now known as stewie92517:30
*** kstev has quit IRC17:30
*** mlupton has joined #openstack17:31
*** mlupton_ has quit IRC17:31
*** mlupton has quit IRC17:33
*** mlupton has joined #openstack17:34
*** Gorian|work has joined #openstack17:34
*** blackboxsw has quit IRC17:36
*** m3_del has joined #openstack17:36
*** ivar-lazzaro has joined #openstack17:36
*** blackboxsw has joined #openstack17:36
*** Na3iL has quit IRC17:37
*** mlupton_ has joined #openstack17:38
*** mlupton has quit IRC17:38
*** amoralej is now known as amoralej|pto17:39
*** valeech has joined #openstack17:39
*** baoli has quit IRC17:40
*** mlupton_ has quit IRC17:42
*** mlupton has joined #openstack17:43
*** ade_b has quit IRC17:44
*** mhickey has quit IRC17:44
*** terje has joined #openstack17:44
*** su_zhang has quit IRC17:45
*** mlupton_ has joined #openstack17:46
*** mlupton has quit IRC17:46
*** baoli has joined #openstack17:46
*** su_zhang has joined #openstack17:46
*** yamamoto has joined #openstack17:47
*** leflore has quit IRC17:48
*** su_zhang has quit IRC17:49
*** su_zhang has joined #openstack17:49
*** hfu has quit IRC17:49
*** mfedosin has quit IRC17:49
*** julim has joined #openstack17:50
*** yamamoto has quit IRC17:52
*** annegentle has quit IRC17:53
*** albertcard has joined #openstack17:54
*** janzian has quit IRC17:55
*** e0ne has joined #openstack17:55
*** m3_del has quit IRC17:56
*** baoli has quit IRC17:56
*** subho has joined #openstack17:56
*** baoli has joined #openstack17:56
*** ms8 has joined #openstack17:57
*** Anarchemist has quit IRC18:00
*** psachin has joined #openstack18:01
*** nixhed has left #openstack18:03
*** krypto has quit IRC18:03
*** krypto has joined #openstack18:04
*** Anarchemist has joined #openstack18:05
*** ivan_mironov has quit IRC18:07
*** leflore has joined #openstack18:09
*** yaume has joined #openstack18:09
*** parora has joined #openstack18:09
*** faiz89 has joined #openstack18:09
*** pravins has quit IRC18:11
*** prateek_ has quit IRC18:12
*** gargola has quit IRC18:12
*** prateek has joined #openstack18:12
*** parora has quit IRC18:15
*** szhem has joined #openstack18:16
*** stewie925 has quit IRC18:16
*** amotoki has quit IRC18:16
*** yaume has quit IRC18:17
*** krypto has quit IRC18:20
*** krypto has joined #openstack18:20
*** baoli has quit IRC18:21
*** m3_del has joined #openstack18:22
*** e0ne has quit IRC18:23
*** vishwanathj_zzz is now known as vishwanathj18:23
*** newmember has joined #openstack18:24
*** KarlchenK has joined #openstack18:24
*** bocaneri has quit IRC18:25
*** baoli has joined #openstack18:26
*** x220_ has joined #openstack18:26
*** warriorforGod has quit IRC18:26
*** KLevenstein has joined #openstack18:27
*** erlon has joined #openstack18:28
*** figleaf has quit IRC18:28
*** mlekkas has quit IRC18:28
*** Mudpuppy has quit IRC18:29
*** exedore6 has left #openstack18:29
*** ronis has quit IRC18:29
*** newmember has quit IRC18:29
*** code-R_ has quit IRC18:30
*** edleafe has joined #openstack18:32
*** yamamoto has joined #openstack18:32
*** hvprash has joined #openstack18:33
*** baoli has quit IRC18:33
*** acidrainfall has quit IRC18:36
*** baoli has joined #openstack18:36
*** hvprash_ has quit IRC18:36
*** VW has quit IRC18:37
*** leflore has quit IRC18:37
*** VW has joined #openstack18:37
*** yamamoto has quit IRC18:38
*** manous has quit IRC18:38
*** smoser has quit IRC18:38
*** krypto has quit IRC18:39
*** m3_del has quit IRC18:40
*** VW has quit IRC18:42
*** msimonin has joined #openstack18:42
*** paw has joined #openstack18:44
*** paw_ has joined #openstack18:44
*** arch-nemesis has quit IRC18:45
*** amotoki has joined #openstack18:47
jidaris this a REST call? and you said you tried encoding, I don't recall () being special characters for that18:47
*** lborda has joined #openstack18:47
*** VW has joined #openstack18:47
*** subho has quit IRC18:48
*** johnmilton has quit IRC18:49
*** mlupton_ has quit IRC18:49
*** hfu has joined #openstack18:50
*** amotoki has quit IRC18:50
*** mlupton has joined #openstack18:50
*** acidrainfall has joined #openstack18:51
*** VW has quit IRC18:51
*** hvprash_ has joined #openstack18:51
*** VW_ has joined #openstack18:51
*** mlupton has quit IRC18:52
*** mlupton has joined #openstack18:53
*** su_zhang has quit IRC18:54
*** hfu has quit IRC18:54
*** hvprash has quit IRC18:54
*** mlupton has quit IRC18:55
*** mlupton has joined #openstack18:56
*** amotoki has joined #openstack18:56
*** mlupton_ has joined #openstack18:58
*** mlupton has quit IRC18:58
*** aorourke has quit IRC18:58
*** blomquisg is now known as blomquisg_gone18:59
*** egonzalez90 has joined #openstack18:59
*** blomquisg_gone is now known as blomquisg18:59
*** hybridpollo has joined #openstack18:59
*** annegentle has joined #openstack19:01
*** retreved has quit IRC19:02
*** johnmilton has joined #openstack19:02
*** mlupton_ has quit IRC19:02
*** mlupton has joined #openstack19:03
*** ivar-lazzaro has quit IRC19:03
*** alberkman has joined #openstack19:03
*** burgerk has joined #openstack19:04
*** amotoki has quit IRC19:04
*** mlupton has quit IRC19:05
*** jovon has quit IRC19:05
*** mlupton has joined #openstack19:06
*** lbrune has joined #openstack19:06
*** lbrune has quit IRC19:06
*** AndChat574464 has joined #openstack19:06
*** lborda has quit IRC19:07
*** fifieldt has quit IRC19:07
*** m3_del has joined #openstack19:07
*** dsariel has joined #openstack19:07
*** AndyBotwin has quit IRC19:07
*** ms8 has quit IRC19:08
*** AndyBotwin has joined #openstack19:08
*** warriorforGod has joined #openstack19:09
*** vhoward has quit IRC19:10
*** castlemilk has joined #openstack19:10
*** mlupton_ has joined #openstack19:10
*** pkennedy has quit IRC19:10
*** mlupton has quit IRC19:11
*** bad_ip has quit IRC19:11
*** bad_ip has joined #openstack19:11
*** bad_ip has joined #openstack19:11
*** murrdoc has joined #openstack19:11
*** murrdoc has quit IRC19:12
*** Mudpuppy has joined #openstack19:12
*** hybridpollo has quit IRC19:13
*** mlupton has joined #openstack19:13
*** mlupton_ has quit IRC19:14
*** warriorforGod has quit IRC19:14
*** salv-orl_ has joined #openstack19:15
*** rama_y has quit IRC19:15
*** eandersson has joined #openstack19:15
*** castlemilk has quit IRC19:15
*** Mudpuppy has quit IRC19:17
*** salv-orlando has quit IRC19:17
*** yamamoto has joined #openstack19:18
*** Mudpuppy has joined #openstack19:18
*** gfidente has quit IRC19:18
*** jaimguer has joined #openstack19:18
*** edleafe- has joined #openstack19:18
*** egonzalez90 has quit IRC19:18
*** mlupton has quit IRC19:18
*** mlupton has joined #openstack19:18
*** dslevin has left #openstack19:19
*** fifieldt has joined #openstack19:19
*** edleafe has quit IRC19:19
*** hvprash_ has quit IRC19:19
*** bvanhav has quit IRC19:19
*** hybridpollo has joined #openstack19:19
*** hvprash has joined #openstack19:20
*** om has joined #openstack19:20
*** m3_del has quit IRC19:20
*** yamamoto has quit IRC19:22
*** su_zhang has joined #openstack19:24
*** hvprash has quit IRC19:25
*** salv-orl_ has quit IRC19:26
*** salv-orlando has joined #openstack19:27
*** spotz is now known as spotz_zzz19:27
*** spzala has joined #openstack19:28
*** raunak has quit IRC19:28
*** erkules_ is now known as erkules19:28
*** su_zhang has quit IRC19:29
*** mohsentux has left #openstack19:32
*** hvprash has joined #openstack19:33
*** szhem has quit IRC19:35
*** szhem has joined #openstack19:37
*** naw is now known as naw_19:40
*** pnavarro has quit IRC19:41
*** piet has joined #openstack19:42
*** hpe-hj has quit IRC19:42
*** hjanssen-hpe has quit IRC19:42
*** morazi has quit IRC19:45
*** m3_del has joined #openstack19:48
*** yamamoto has joined #openstack19:48
*** shivansh has joined #openstack19:50
*** Suyi has quit IRC19:51
*** Suyi has joined #openstack19:51
*** yamamoto has quit IRC19:52
*** Suyi has quit IRC19:53
*** janki has joined #openstack19:54
*** jprovazn has quit IRC19:55
*** rfolco has quit IRC19:57
*** acidrainfall has quit IRC20:00
*** knangia has quit IRC20:01
*** m3_del has quit IRC20:01
*** vinaypotluri has quit IRC20:01
*** KLevenstein has quit IRC20:03
*** burgerk has quit IRC20:03
*** ivar-lazzaro has joined #openstack20:04
*** jathan has quit IRC20:06
*** comay has joined #openstack20:07
*** ivar-lazzaro has quit IRC20:09
*** mtanino has quit IRC20:10
larsksdspd: does the nova or openstack cli work correctly?   You can run it in debug mode to see exactly what url it is requesting...20:10
*** jchhatbar has joined #openstack20:10
*** janki has quit IRC20:10
*** dsariel has quit IRC20:11
*** VW_ has quit IRC20:11
*** mlupton has quit IRC20:11
*** VW has joined #openstack20:11
*** raunak has joined #openstack20:13
*** Lee1092 has quit IRC20:13
*** VW has quit IRC20:15
*** salv-orlando has quit IRC20:16
*** su_zhang has joined #openstack20:16
*** baoli has quit IRC20:17
*** mlupton has joined #openstack20:18
*** mrBen2k2k2k has joined #openstack20:19
*** rootJ has joined #openstack20:23
rootJhi everyone20:23
rootJi have a question about deploying an environment20:24
*** cdelatte has quit IRC20:24
*** jchhatbar is now known as janki20:25
* larsks attempts telepathy20:25
*** spotz_zzz is now known as spotz20:25
*** pfallenop has quit IRC20:26
*** m3_del has joined #openstack20:28
*** rama_y has joined #openstack20:28
cr0wrxanyone around familiar with provider network stuff? I thought I had it working, but for some reason only seems to be working on one compute host, not others20:29
*** jheroux has quit IRC20:29
larsks61969920:30
larsks54899920:30
larsksWow, sorry, yubikey babbling.20:30
*** faiz89 has left #openstack20:31
*** retreved has joined #openstack20:31
*** pfallenop has joined #openstack20:32
*** retreved has quit IRC20:32
*** yamamoto has joined #openstack20:32
*** LotharKAtt has quit IRC20:33
Sam-I-Amcr0wrx: still hacking at it?20:33
cr0wrxyes sir20:34
cr0wrxso based on your suggestions last night, I created a network that is not router:external20:35
*** ivar-lazzaro has joined #openstack20:35
cr0wrxI spun up an instance, and it got an IP from the subnet allocation range as expected, all was good20:35
cr0wrxI just spun up another node, came up on another compute host, can't hit it20:35
cr0wrxI'm not sure what's different.20:35
cr0wrxOn each compute node I created interfaces same way (essentially bridge to vlan 40 and then ovs side brings up a bridge with a patch to br-int)20:36
*** VW has joined #openstack20:37
Sam-I-Amis vlan 40 making it there? is it in the bridge mapping?20:37
rootJwhy can't i deploy a instance20:37
*** m3_del has quit IRC20:37
*** yamamoto has quit IRC20:37
*** ppradhan1 has joined #openstack20:38
cr0wrxyes I updated bridge mapping on all compute nodes and restarted openvswitch agent20:38
rootJNo valid host was found, there are not enough hotst avaliable20:38
cr0wrxand vlan 40 should be making it there, I would think....on the physical switch all ports are set to trunk 4020:38
cr0wrxhowever, when I run tcpdump -i eno####.40 icmp on the vlan on compute hosts, I don't see any requests coming in - should i?20:39
Sam-I-Amwait... the switch tags vlan 40, yet you have a enoXXX.40 on the compute node?20:39
*** ppradhan has quit IRC20:40
cr0wrxno the switch should just pass vlan 4020:40
cr0wrxto appropriate switch ports20:40
*** TheFueley has quit IRC20:41
Sam-I-Amwhats the ovs bridge name?20:41
cr0wrxbr-dev20:41
Sam-I-Amwhat interface is plugged into br-dev? and what's the provider network type?20:41
*** VW has quit IRC20:41
cr0wrxprovider network type is flat20:41
cr0wrxbasically I have several provider networks all set as type flat, with a linux bridge that joins the ovs interface to eno12345.4020:42
*** pfallenop has quit IRC20:43
Sam-I-Amwhy doesnt .40 plug directly into br-xxx ?20:43
Sam-I-Amwhats the linux bridge doing?20:43
*** paw has quit IRC20:43
rootJSam20:43
cr0wrxis there a way I can verify the packet is actually arriving to the compute host? I'm wondering if it's a caching issue somewhere or something? Again, tcpdump -i eno12345.40 icmp doesn't show anything coming in if I am trying to hit the new provider network20:44
rootJcan you help me out with the OpenStack Instance so i can deploy Aplications?20:44
*** mrBen2k2k2k has quit IRC20:44
*** arch-nemesis has joined #openstack20:45
cr0wrxbr-ex has interfaces eno12345.40 and also the new dev ovs interface, and also the old p_ff798dba-0 interface (from floating IPs)20:45
*** oncall-pokemon has joined #openstack20:45
Sam-I-Amyou can only have 1 flat network per ovs bridge and per physical interface20:46
oncall-pokemonHey I was wondering if anybody knew of a way with fog to ensure an api call goes to and works with the compute process on hypervisor?20:46
cr0wrxsure. Hence I have different "physical" interfaces (all connected to br-ex)20:46
cr0wrxit's worked up until now anyways :/20:47
cr0wrxand it's working on one compute host20:47
cr0wrxjust not the others20:47
Sam-I-AmrootJ: does nova service-list show the compute node?20:47
*** spzala has quit IRC20:47
rootJam.. one second20:47
Sam-I-Amcr0wrx: something doesn't sound right here20:47
*** spzala has joined #openstack20:48
*** gargola has joined #openstack20:48
rootJSam: I'm sorry where can i even find that out, its working from virtualbox20:49
awayneWhat's the appropriate process for updating an existing gerrit review? --amend and git review to update the patch set?20:49
Sam-I-AmrootJ: a terminal session on the controller node (or whatever node has the apis)20:49
Sam-I-Amawayne: do you have the branch locally?20:49
awayneYeah, the change is in a separate branch.20:50
Sam-I-Amshould just be able to make your change, then git commit -a --amend, then git review20:50
rootJsam: I can't really locate it under the dashboard in nodes20:51
*** spzala has quit IRC20:51
*** spzala has joined #openstack20:51
Sam-I-AmrootJ: its a command-line thing, not the dashboard20:51
Sam-I-Amthe dashboard only works when openstack works. for troubleshooting openstack, you need to use the command line.20:51
Sam-I-Amcr0wrx: can you sort of diagram the order in which things are plugged in?20:52
*** hfu has joined #openstack20:52
rootJthe thing is i never used the command line on openstack yet still new to the system20:52
Sam-I-Ammultiple provider nets should use vlan segmentation, in which case you'd have ethX -> ovs br-provider -> instances20:52
cr0wrxeno12345 -> eno12345.40, brctl show has br-ex with interfaces dev, prod, p_ff78, eno12345.40.20:53
Sam-I-Amor if you want to make them flat, you can move the tagging to linux and have multiple ovs bridges, each with a port on the subint, like eth0.123 and eth0.23420:53
*** manous has joined #openstack20:53
*** shivansh has quit IRC20:53
cr0wrxdev, prod, and p_ff78 are all ovs ports on different ovs bridges (br-floating, br-dev, br-prod), and each of those ovs bridges has a patch to br-int20:54
cr0wrxbridge_mappings=physnet-prod:br-prod,physnet1:br-floating, physnet-dev:br-dev20:54
awayneSam-I-Am: Awesome. Anything I need to do to have the Jenkins jobs run again? I posted a recheck comment.20:54
cr0wrxso from an openstack side of things, each neutron network is linked to physnet-*, which are different physical interfaces20:55
*** pfallenop has joined #openstack20:55
*** pmathews has quit IRC20:55
cr0wrxwell, physical in a sense. They all go out same NIC and are all tagged with vlan 4020:56
Sam-I-Amawayne: updating the patch would trigger jenkins20:56
awaynek20:56
Sam-I-Amyou dont need to use recheck unless a job fails for reasons outside of your patch20:56
rootJSam: But i also found a weird error hitting my Slave1 is that maybe the reason why i cant install the instance?20:56
rootJSam: ext4-fs error20:56
*** hfu has quit IRC20:56
Sam-I-AmrootJ: that's an odd one. ssh into the node and look at dmesg?20:56
Sam-I-Amcr0wrx: so you're essentially bridging a bunch of layer-2 nets together and tagging them as vlan 40?20:57
*** manous has quit IRC20:58
*** jovon has joined #openstack20:58
rootJcan i copy and pase the image link here?20:58
rootJi think my 1 slave is making this error+ its running on a virtualbox20:59
Sam-I-Amyou can paste links here. text should go to something like paste.openstack.org20:59
cr0wrxer maybe?20:59
Sam-I-Amcr0wrx: so, vlan 40 has more than one ip network on it?21:00
*** fragatin_ has joined #openstack21:00
rootJthis is the picture of the Slave1-node21:00
rootJhttp://shrani.si/f/1k/u/3laNwe7Y/140453201015506095253468.jpg21:00
Sam-I-AmrootJ: looks like your disk is bad21:01
rootJhm...21:01
Sam-I-AmrootJ: either the vbox disk is corrupt, or the underlying device is bad,21:01
cr0wrxall are set as 172.16.128.0/20 with gateway 172.16.128.1 which is configured upstream. The only difference between networks in OS is the subnet allocation range - those don't overlap21:01
*** pfallenop has quit IRC21:01
rootJso.. its about the space?21:01
Sam-I-Amits about a filesystem failure21:01
*** _coolsvap_ has quit IRC21:01
*** pnavarro has joined #openstack21:01
*** manous has joined #openstack21:02
rootJSam: any way to fix it without compromising everything?21:02
Sam-I-AmrootJ: probably have to figure out why that filesystem corrupted, and rebuild.21:02
Sam-I-Amor fix the underlying problem21:02
rootJSam: I think its because of the space... its very very low on space21:02
rootJthats for sure21:02
Sam-I-Amcr0wrx: that's not a usable config21:03
Sam-I-Ami mean, it might work... sometimes.21:03
Sam-I-Ambut you're essentially bridging 4 ip networks together, so all the broadcasts are going to go everywhere.21:04
*** fragatina has quit IRC21:04
cr0wrxwell that's the thing, it seems like they aren't21:04
lastmikoiTrying to set up a NFS backend for my new glance installation, followed http://docs.openstack.org/mitaka/config-reference/block-storage/drivers/nfs-volume-driver.html (with one NFS Server), but getting an error with the following logs whenever I'm trying to create a volume: http://paste.openstack.org/show/v1CgOh2ngFZkrZl9R5JN/.21:04
*** VW has joined #openstack21:04
*** rbowen has quit IRC21:04
lastmikoiI do think something's wrong with my NFS setup but how could I diagnose it from cinder's "point of view" ?21:04
cr0wrxeverything works fine on compute3, across different networks living on it21:04
cr0wrxbut I don't see any incoming traffic to compute1 or compute2 on eno12345.40 for the new provider network I'm testing, although the other networks still work21:05
Sam-I-Amlastmikoi: sounds like your volume node(s) isnt checking in with the controller?21:05
*** jamesdenton has quit IRC21:06
lastmikoiin this setup both the controller and the volume are on the same machine21:06
Sam-I-Amthere's a possibility you created a switching loop and your switch has blocked traffic21:06
cr0wrxfor provider networks, it doesn't need to go through neutron node does it? Shouldn't I be able to see pings broadcast to all .40 interfaces on all compute nodes? Or would I not due to issues upstream like arp caching or something else21:06
lastmikoiooh.21:06
*** rhagarty has joined #openstack21:06
*** manous has quit IRC21:06
lastmikoiWill try using the loopback device then21:06
*** yamamoto has joined #openstack21:07
Sam-I-Amcr0wrx: does the .40 interface have an ip?21:07
Sam-I-Amit doesnt *need* one if its only being used for instances21:07
cr0wrxno21:07
cr0wrxit does not21:07
*** pfallenop has joined #openstack21:08
Sam-I-Amyou can try adding one on the question node21:08
*** manous has joined #openstack21:08
Sam-I-Ambut i'm pretty sure your network arch is fundamentally broken21:08
cr0wrxso what is the regular simple way of doing it?21:08
cr0wrxShould each provider network get its own vlan id (still use network type flat?)21:09
*** VW has quit IRC21:09
cr0wrxand each use separate netblock on upstream router with own gateways, etc.?21:09
Sam-I-Amyou should have one ovs provider bridge (the one you create, not br-int) with a port on one underlying network interface.21:09
Sam-I-Amthen each provider network should use a vlan tag21:09
*** annegentle has quit IRC21:10
Sam-I-Amif you want to split allocations on a layer-2 network, you'd create 1 provider network and multiple subnets on it21:10
Sam-I-Amsubnets are a layer-3 construct, networks are a layer-2 construct21:10
cr0wrxdo my ovs provider bridges need to patch to br-int? That seems to be created automatically after editing bridge_mappings21:10
Sam-I-Amneutron handles patches from br-int to br-whatever21:10
Sam-I-Amthe only thing you need to do is create a mapping to the br-whatever, neutron does the rest21:11
*** yamamoto has quit IRC21:11
*** xinliang has quit IRC21:11
*** su_zhang has quit IRC21:12
Sam-I-Amwith provider nets, you have a physical router interface on each vlan21:12
*** manous has quit IRC21:13
*** kylek3h has quit IRC21:13
*** hvprash has quit IRC21:13
cr0wrxand I need to add br-whatever and all this on all nodes? the compute nodes? the neutron node?21:13
*** hvprash has joined #openstack21:14
*** ivar-lazzaro has quit IRC21:14
cr0wrxwith the floating ip method, most was all on neutron node. the compute nodes didn't have much for ovs21:14
Sam-I-Amprovider nets mostly eliminate the network node21:14
*** manous has joined #openstack21:14
cr0wrxok so each compute node needs the above configuration21:14
Sam-I-Amhowever, if you still want to support self-service nets, you'll want to keep some layer-3 agents around.21:14
Sam-I-Amany node with neutron agents should have br-provider (or whatever you call it)21:15
cr0wrxok21:15
Sam-I-Amand in the ovs agent config, a mapping to that bridge for some network name21:15
cr0wrxso compute + network node21:15
Sam-I-Amthere's config for this in the networking guide, at least the basics21:16
cr0wrxwell part of it is I am also trying to work based on existing configs because I deployed with fuel and I didn't want to break it's stuff either...but now I'm starting to modify a lot of how the network stuff works (fuel doesn't really allow these changes after deployment)21:17
*** tummy has joined #openstack21:18
Sam-I-Amoh, fuel... does... things. :/21:18
Sam-I-Amit has its own idea of how networking should work, and uses ovs for a bunch of host-level stuff21:18
*** haplo37__ has quit IRC21:19
*** manous has quit IRC21:19
*** x220_ has quit IRC21:20
*** manous has joined #openstack21:21
*** warriorforGod has joined #openstack21:21
cr0wrxso the way it's deployed now is br-ex (brctl show) has interfaces that map to ovs side of things21:21
cr0wrxDo I need to add my new vlan interface there to br-ex for provider network?21:22
*** ivar-lazzaro has joined #openstack21:22
Sam-I-Amso...21:23
Sam-I-Ambrctl doesnt show ovs bridges, so br-ex must be a linux bridge?21:23
cr0wrxyes21:23
cr0wrxit's a linux bridge set up by fuel21:23
*** xinliang has joined #openstack21:23
Sam-I-Ambleh21:24
Sam-I-Amhow many of those are there?21:24
cr0wrxthat has interfaces to the vlan physical interface, and then things like p_ff78 (which is one end of veth pair to ovs, and maps over to br-floating I think)21:24
Sam-I-Amfuel makes my head hurt21:24
*** msimonin has quit IRC21:24
cr0wrxlinux bridges on compute are br-aux, br-ex, br-fw-admin, br-mgmt, br-storage, and a handful of qbr*21:25
cr0wrxall of this makes my head hurt21:25
kur1jSam-I-Am: haha you and me both21:25
kur1jcr0wrx: my experience too :)21:25
*** alberkman has quit IRC21:26
kur1jfinally got the system I was deploying working...scared to touch it...21:26
cr0wrxeasiest thing I think would be to add p_provider to br-ex on linux bridge side, and the other end of p_provider goes to br-provider in ovs21:26
cr0wrxif that would work21:26
Sam-I-Amfuel adds an extra layer of 'stuff' to make deployment easier ("easier") ... which arguably limits what you can do with it.21:26
cr0wrxthen br-ex just joins a bunch of things, no?21:26
*** manous has quit IRC21:26
Sam-I-Ambridges connected to bridges are a bad idea21:26
Sam-I-Amwhich seems to be whats going on there21:27
Sam-I-Amwhat ports are on br-provider in ovs?21:27
cr0wrxwell for provider network stuff, I don't have to do that, if it's all different anyways21:27
Sam-I-Amor whatever bridges exist21:27
cr0wrxnothing yet, but if I copy the config similar to how fuel set up br-floating it will just create a patch to br-int and a port for the other end of veth pair that comes from linux bridge (br-ex)21:27
cr0wrxwell one thing that stands out is in ifcfg-br-ex it has address and gateway set, which is a different netblock than what br-provider will have21:28
*** aconole has quit IRC21:29
*** manous has joined #openstack21:29
Sam-I-Amyou might consider deploying something less... complex.21:29
Sam-I-Amprovider nets are super easy, except when you put a bunch of cruft in the way21:29
Sam-I-Ami dont know if fuel supports them out of the box21:29
cr0wrxwell not really, hence this work21:30
*** VW has joined #openstack21:30
cr0wrxbut problem is we can't redeploy cluster :/21:30
cr0wrxfuel supports custom network stuff, but only if you do it before deploying the cluster. post-deploy, you can't21:30
*** michauds has quit IRC21:30
Sam-I-Amwell, the normal way to do this is in the networking guide21:31
cr0wrxso we are actually losing out a bit on the benefits of fuel to some extent I guess, because we can easily add new nodes, but then I have to go run post-deploy ansible scripts to bring newly deployed nodes up to speed with these post-deploy changes21:31
Sam-I-Ami cant be much use to integrate it with the fuel stuff21:31
*** ppradhan1 has quit IRC21:31
*** hvprash has quit IRC21:32
cr0wrxso in networking guide you have ovs-vsctl add-port br-provider PROVIDER_INTERFACE21:32
cr0wrxcan I just use eno12345.40 for PROVIDER_INTERFACE21:32
cr0wrxand that's that? that avoids all the fuel specifics21:32
*** hvprash has joined #openstack21:33
*** ppradhan has joined #openstack21:33
*** ppradhan has left #openstack21:33
Sam-I-Amthat .40 interface would strip vlan 40 from frames before passing them to br-provider21:33
Sam-I-Amin which case neutron would expect to use a flat network, not a vlan network21:34
*** dsneddon has quit IRC21:34
cr0wrxsimple enough21:34
*** nmagnezi has joined #openstack21:34
Sam-I-Amif you plug eno12345 into it, you can use vlan networks21:34
cr0wrxok so eno12345 as is, don't need to configure .40 interface on host, and follow networking guide to the T21:35
Sam-I-Amyes. then your network would be vlan type, using vlan id 4021:36
*** AndChat574464 has quit IRC21:36
*** hvprash has quit IRC21:36
*** hvprash has joined #openstack21:36
*** AndChat574464 has joined #openstack21:37
*** yaume has joined #openstack21:38
*** fragatin_ has quit IRC21:39
*** thorst_ has quit IRC21:39
*** fragatina has joined #openstack21:39
*** code-R has joined #openstack21:40
*** thorst has joined #openstack21:41
*** su_zhang has joined #openstack21:41
*** code-R_ has joined #openstack21:41
*** foexle has joined #openstack21:43
*** code-R has quit IRC21:44
*** thorst has quit IRC21:45
*** grmontpetit has quit IRC21:46
*** code-R_ has quit IRC21:46
*** code-R has joined #openstack21:46
*** kur1j has quit IRC21:47
*** baoli has joined #openstack21:47
cr0wrxgah, hit an issue "invalid input for operation: physical_network 'rpvodire' unknown for vlan provider network"21:48
cr0wrxwhen running net-create21:48
*** diogogmt has quit IRC21:48
cr0wrxnot sure why, followed the guide. I have provider in network_vlan_ranges21:48
cr0wrxin ml2_conf.ini21:48
lastmikoiIt would seem that my single-node has two cinder-volume running, including one with status "XXX" roughly since installation21:48
cr0wrxalso in bridge_mappings21:49
*** Suyi has joined #openstack21:49
*** dsneddon has joined #openstack21:50
*** edleafe- is now known as edleafe21:52
*** hvprash_ has joined #openstack21:52
*** trevormc has quit IRC21:53
*** spzala has quit IRC21:53
*** cfh has quit IRC21:53
*** spzala has joined #openstack21:54
Sam-I-Amcr0wrx: did you restart things?21:54
*** baoli has quit IRC21:54
cr0wrxyes21:54
cr0wrxI think I restarted all the right things21:54
Sam-I-Amneutron-server and agents?21:55
cr0wrxif I change it to network_type flat, it worked (although I guess I need to create the .42 interface and use that instead on host if I go that route)21:55
cr0wrxbut flat_networks=*21:55
*** pnavarro has quit IRC21:55
Sam-I-Amcan you paste your ml2_conf.ini and openvswitch_agent.ini files ?21:55
Sam-I-Amalso what rel is this?21:55
*** hvprash has quit IRC21:56
*** dmueller-evoila has quit IRC21:56
*** thorst has joined #openstack21:56
cr0wrxmissed a service, got it. ignore me (no, please don't. but sort of :P )21:57
cr0wrxsorry. Fuely things. it's got some services running one way and some under another (pacemaker)21:57
*** pabut has quit IRC21:58
Sam-I-Amanother reason to run away :)21:58
*** spzala has quit IRC21:58
*** germs has left #openstack21:59
rootJSam i really think its the disk space had a look in to it and it was a SSD with 2 operating systems on it which only 50gb was declared for the Linux system....21:59
*** prg3 has quit IRC21:59
*** thorst has quit IRC21:59
*** psachin has quit IRC21:59
*** salv-orlando has joined #openstack22:00
*** JD|cloud has quit IRC22:00
*** janki has quit IRC22:00
*** jperry has quit IRC22:01
*** code-R has quit IRC22:02
*** AndChat574464 has quit IRC22:03
*** ivar-lazzaro has quit IRC22:04
*** VW_ has joined #openstack22:06
*** valw has quit IRC22:06
*** piet has quit IRC22:08
*** VW has quit IRC22:09
*** VW_ has quit IRC22:11
*** bobh has quit IRC22:11
*** mlupton has quit IRC22:13
*** mlupton has joined #openstack22:14
*** stuh84 has quit IRC22:15
cr0wrxwelp, so I followed the network guide to the T, still no luck. I spun up an instance but can't ping it from basically anywhere22:16
Sam-I-Amdid it get an ip?22:16
*** raunak has quit IRC22:17
*** paw has joined #openstack22:17
*** erlon has quit IRC22:17
cr0wrxit appears that way22:17
cr0wrxnova list shows it with provider-101=172.16.144.322:17
Sam-I-Amwell, thats what nova assigned it22:18
cr0wrxthe gateway is 172.16.144.1 and no issues there22:18
Sam-I-Amnot necessarily that it got there22:18
cr0wrxwithin console (cirros), it doesn't seem to have an IP22:18
*** tummy has quit IRC22:18
Sam-I-Amis there a dhcp namespace for the network?22:18
*** dmueller-evoila has joined #openstack22:18
*** null_ref has quit IRC22:19
cr0wrxyes22:19
cr0wrxon the network node22:19
Sam-I-Amcan you ping its ip?22:20
cr0wrxbut `ip netns exec qdhcp-# ifconfig` doesn't show the IPs or anything22:20
cr0wrxwhich ip?22:20
Sam-I-Amwell, that one...22:20
*** JoseMello has quit IRC22:20
Sam-I-Amthe interface in the dhcp namespace has no ip?22:20
cr0wrxdhcp namespace (on network node, there aren't any namespaces on compute nodes) has only lo and a single tap, which is 172.16.144.222:21
cr0wrxI'm guessing dhcp server22:21
Sam-I-Amits an ip on that network, so yep22:21
Sam-I-Amcan you ping that from anywhere?22:21
*** Suyi has quit IRC22:21
*** Suyi has joined #openstack22:22
cr0wrxyea 172.16.144.2 is port for network:dhcp on provider network22:22
*** TMM has joined #openstack22:22
cr0wrxand no, I can't ping it from anywhere (even controller) outside of within the namespace itself22:22
Sam-I-Amhow did you create the provider network?22:23
cr0wrxnetworking guide. to the T22:23
Sam-I-Amwell, i mean... did you use a vlan tag?22:23
Sam-I-Ami think the networking guide creates a vlan network22:24
cr0wrxnet-create provider-101 --shared --provider:physical_network provider --provider:netwark_type vlan --provider:segmentation_id 4222:24
cr0wrxyes, I used 4222:24
cr0wrxwhich is set up on upstream router22:24
cr0wrxfor 172.16.144.0/2022:24
cr0wrxI can ping upstream gateway at 172.16.144.1 from controller22:24
cr0wrxbut not 172.16.144.2, which is inside dhcp namespace22:25
*** dmueller-evoila has quit IRC22:25
Sam-I-Amso provider maps to br-provider?22:25
cr0wrxyes22:25
Sam-I-Amdoes the switch tag vlan 42 to the eth interface that plugs into br-provider?22:26
rootJSam can a friend of mine add Murano to his openstack, but hes already using sahara?22:27
*** hvprash_ has quit IRC22:27
cr0wrxyes22:27
Sam-I-AmrootJ: i dont know either of those projects22:27
*** hvprash has joined #openstack22:27
*** hvprash has quit IRC22:27
Sam-I-Amcr0wrx: if you run tcpdump on the underlying interface while pinging .1 from the dhcp namespace, you should see frames tagged 4222:27
cr0wrxI do not. I can't ping .1 from the dhcp namespace22:29
cr0wrxonly from outside of namespace22:29
*** ivar-lazzaro has joined #openstack22:29
*** tummy has joined #openstack22:29
*** ivar-lazzaro has quit IRC22:29
*** hoverflow has joined #openstack22:30
*** piet has joined #openstack22:30
*** ivar-lazzaro has joined #openstack22:30
Sam-I-Amwhats the output ovs-vsctl show ?22:30
*** mikeoutland has quit IRC22:30
Sam-I-Amon the node with the dhcp agent22:30
*** piet has quit IRC22:30
cr0wrxbr-provider exists with port enp7sof1 to interface enp7sof1, phy-br-provider (patch to br-int), and br-provider (type internal)22:31
*** `Calvin has joined #openstack22:32
*** `Calvin has joined #openstack22:32
Sam-I-Amthere should be a port for the dhcp namespace22:32
*** Ephur has quit IRC22:32
*** mmalik4 has quit IRC22:32
cr0wrxnope22:34
cr0wrxdon't see anything22:34
Sam-I-Amthats not good22:34
Sam-I-Amtime to check the ovs agent or dhcp agent logs22:34
*** `Calvin has quit IRC22:37
cr0wrxonly thing in vswitchd.log is a warning about "failed to add enp7so71 as port: device or resource busy" which happened when I did ovs-vsctl add-port br-provider enp7so7122:37
cr0wrxbut, enp7so71 shows up in ovs-vsctl show22:38
Sam-I-Ammight try doing a del-port and add-port on that again22:38
Sam-I-Amsee if it complains22:38
*** tpsilva has quit IRC22:38
cr0wrxnothing in dhcp_agent.log22:39
*** x220_ has joined #openstack22:40
*** yaume has quit IRC22:40
*** yaume_ has joined #openstack22:40
cr0wrxit spits the same error22:40
cr0wrxbut it creates the port22:40
Sam-I-Amthats ungood22:41
Sam-I-Amits adding it to the control plane, but not the data plane22:41
Sam-I-Amhence why things arent working22:41
*** toscalix has joined #openstack22:41
Sam-I-Amdoes anything else have enp7so71?22:41
*** mikeoutland has joined #openstack22:41
Sam-I-Amare you doing this as root?22:42
cr0wrxyes22:42
*** manous has quit IRC22:42
cr0wrxlinux bridge br-ex exists with interface enp7so71.40 on it, br-aux exists with enp7so7122:42
*** raunak has joined #openstack22:43
Sam-I-Amthats probably the issue22:43
cr0wrxso if I run `vconfig add enp7s0f1 42` and then `ovs-vsctl add-port br-provider enp7sof1.42` no errors22:44
*** yaume_ has quit IRC22:44
cr0wrxso maybe I'll try that way with flat network type22:44
Sam-I-Amits still "wrong" but linux might let you do it22:45
Sam-I-Amwell, ovs. because nothing is plugged into that subint.22:45
*** spzala has joined #openstack22:48
*** spzala has quit IRC22:49
*** spzala has joined #openstack22:49
*** tummy has quit IRC22:49
*** sidarta has joined #openstack22:51
*** nmagnezi has quit IRC22:54
*** hfu has joined #openstack22:54
Sam-I-Ami'm out for the weekend22:54
*** toscalix_ has joined #openstack22:54
*** toscalix has quit IRC22:55
*** iranzo has quit IRC22:55
cr0wrxthanks for the help. Using flat network failed too :( same issue, can't hit 172.16.144.1 from within dhcp namespace22:55
*** smoser has joined #openstack22:57
*** aeperezt has quit IRC22:58
*** toscalix_ has quit IRC22:58
*** toscalix_ has joined #openstack22:59
*** hfu has quit IRC22:59
*** salv-orlando has quit IRC23:00
*** spzala has quit IRC23:00
*** toscalix has joined #openstack23:02
*** toscalix_ has quit IRC23:02
*** yamahata has quit IRC23:02
*** Benj_ has quit IRC23:03
*** toscalix_ has joined #openstack23:03
*** yamahata has joined #openstack23:04
*** VW has joined #openstack23:05
*** mlupton has quit IRC23:06
*** toscalix has quit IRC23:07
*** mlupton has joined #openstack23:07
*** castlemilk has joined #openstack23:07
*** toscalix has joined #openstack23:07
*** toscalix_ has quit IRC23:08
*** joeg has joined #openstack23:08
*** spotz is now known as spotz_zzz23:08
*** stanchan has joined #openstack23:09
*** mikeoutland has quit IRC23:09
*** amotoki has joined #openstack23:09
*** brahama has quit IRC23:10
*** VW has quit IRC23:10
*** mikeoutland has joined #openstack23:10
*** nunne has quit IRC23:11
*** mlupton has quit IRC23:11
*** AndyWojo has quit IRC23:12
*** patrickeast has quit IRC23:12
rootJanybody here23:13
*** csatari has quit IRC23:13
*** mrBen2k2k2k has joined #openstack23:14
*** mikeoutland has quit IRC23:15
*** joeg has quit IRC23:15
*** Mudpuppy has quit IRC23:18
*** csatari has joined #openstack23:18
*** patrickeast has joined #openstack23:19
*** nunne has joined #openstack23:19
*** AndyWojo has joined #openstack23:20
TMMGhehe, I just successfully created a windows 98 SE image on our cloud.23:21
*** toscalix has quit IRC23:21
TMMTime to troll the windows admins23:21
*** mikeoutland has joined #openstack23:21
*** toscalix has joined #openstack23:22
*** amotoki has quit IRC23:23
*** dsea has joined #openstack23:24
*** AtumT_ has joined #openstack23:26
*** AtumT has quit IRC23:26
*** AndChat574464 has joined #openstack23:26
*** admin0 has quit IRC23:27
*** dmueller-evoila has joined #openstack23:28
*** Gorian|work has quit IRC23:30
*** arch-nemesis has quit IRC23:32
*** mikeoutland has quit IRC23:35
*** dmueller-evoila has quit IRC23:35
*** paw has quit IRC23:37
*** Japje has quit IRC23:39
*** mikeoutland has joined #openstack23:40
*** mikeoutland has quit IRC23:40
*** thrash is now known as thrash|g0ne23:40
*** mikeoutland has joined #openstack23:40
*** jamesdenton has joined #openstack23:41
*** prateek has quit IRC23:41
*** dmueller-evoila has joined #openstack23:43
*** nanga has quit IRC23:45
*** mrBen2k2k2k has quit IRC23:46
*** gyee has quit IRC23:48
*** mikeoutland has quit IRC23:49
*** nanga has joined #openstack23:49
*** su_zhang has quit IRC23:50
*** admin0 has joined #openstack23:51
*** dmueller-evoila has quit IRC23:52
*** AndChat574464 has quit IRC23:53
*** yamamoto has joined #openstack23:53
*** ivar-lazzaro has quit IRC23:55
*** v3nd3tta`` is now known as v3nd3tta23:56
*** spotz_zzz is now known as spotz23:56
*** brian_price has quit IRC23:58
*** syjulian_ has quit IRC23:58
*** jamesdenton has quit IRC23:58

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