kfox1111 | pstree looks like this: | 00:00 |
---|---|---|
kfox1111 | sudo(3830)───neutron-rootwra(3831)─┬─{neutron-rootwra}(3911) └─{neutron-rootwra}(19009) | 00:00 |
kfox1111 | so I think its pre sudo'ed. | 00:00 |
kfox1111 | seeing stuff like: | 00:00 |
kfox1111 | [pid 19297] execve("/sbin/ip", ["/sbin/ip", "netns", "exec", "fip-ac342612-17ad-4451-9a95-0c35"..., "ip", "-4", "route", "del", "172.18.65.102/32", "via", "169.254.30.20", "dev", "fpr-c93480a2-1"], [/* 13 vars */]) = 0 | 00:00 |
kfox1111 | so no sudo. | 00:00 |
kfox1111 | I don't really see anything here that would try and reverse resolve something. iptables usually does, but iptables-save/restore doesnt... | 00:01 |
kevinbenton | right, especially a find call into /sys/class | 00:02 |
kfox1111 | maybe I should just disable /etc/resolve.conf entirely and see what happens. that might force fail all dns resolves. | 00:02 |
*** heyongli has quit IRC | 00:02 | |
kevinbenton | kfox1111: can you include in your paste the line that has the Exit code as well? | 00:02 |
kevinbenton | kfox1111: so i can see the timing between rootwrap entrance and exit? | 00:03 |
kfox1111 | nope. didn't help. | 00:03 |
kfox1111 | k. let me see if I can make a new one. | 00:04 |
openstackgerrit | Brandon Logan proposed openstack/neutron: Pecan: Backwards compatible/cleaner init https://review.openstack.org/314886 | 00:04 |
*** heyongli has joined #openstack-neutron | 00:04 | |
kfox1111 | are they tagged rootwrap as well? | 00:05 |
kevinbenton | no | 00:05 |
kevinbenton | kfox1111: grep for 'neutron.agent.linux.utils' | 00:05 |
kevinbenton | kfox1111: that should catch both | 00:05 |
kfox1111 | ah. yup. | 00:06 |
kfox1111 | ok. testing.... | 00:06 |
kfox1111 | http://pastebin.com/Hf3diPUJ | 00:08 |
*** singhj has quit IRC | 00:09 | |
kevinbenton | kfox1111: ok. looks like it definitely is slow waiting on rootwrap | 00:09 |
kfox1111 | looks like half a second for rootwrap, and half a second between commands? | 00:09 |
kevinbenton | kfox1111: oh yeah | 00:10 |
kevinbenton | kfox1111: just slow all around | 00:10 |
kfox1111 | how strange.... | 00:10 |
*** minwang2 has quit IRC | 00:10 | |
kevinbenton | kfox1111: if you strace the l3-agent process what is it spending all day doing? | 00:11 |
*** sthillma has quit IRC | 00:11 | |
*** sthillma has joined #openstack-neutron | 00:11 | |
kfox1111 | mostly: poll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}], 2, 500) = 0 (Timeout) | 00:12 |
kfox1111 | stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2819, ...}) = 0 | 00:12 |
kfox1111 | epoll_wait(7, {}, 1023, 0) = 0 | 00:12 |
kfox1111 | in a loop, once a second. | 00:12 |
kevinbenton | kfox1111: even during a floating IP event? | 00:13 |
kfox1111 | no. let me get that strace.... | 00:13 |
*** salv-orlando has joined #openstack-neutron | 00:14 | |
*** sridhar_ram has quit IRC | 00:15 | |
*** singhj has joined #openstack-neutron | 00:16 | |
kfox1111 | stuff like: | 00:17 |
kfox1111 | http://pastebin.com/yRuLJGhS | 00:17 |
kfox1111 | seems relatively normal looking to me. | 00:17 |
kevinbenton | kfox1111: i wonder if it's having trouble logging | 00:20 |
kevinbenton | kfox1111: in devstack runs we don't use the logging options to write to files, it's just the devstack screen logs piped to a file | 00:20 |
kfox1111 | k. let me try that. | 00:20 |
*** abhiraut has quit IRC | 00:20 | |
kevinbenton | kfox1111: can you put strace timestamps on? | 00:21 |
kevinbenton | kfox1111: so we can see if it blocks on the write( call to the log file? | 00:21 |
kfox1111 | I'm also seeing context switches seeming very high on the system.... | 00:21 |
kfox1111 | in the 33000 to 45000 range | 00:21 |
*** abhiraut has joined #openstack-neutron | 00:21 | |
kfox1111 | may be unrelated but may cause some locking in the kernel... | 00:21 |
openstackgerrit | Merged openstack/neutron-specs: Moving to Keystone v3 API https://review.openstack.org/257362 | 00:22 |
*** shashank_hegde has quit IRC | 00:23 | |
kfox1111 | I found the context switch culprit. fixing it reduced cs's to 700's. didn't change anything though... | 00:23 |
kfox1111 | trying logging next. | 00:24 |
kfox1111 | will I need to kill off the rootwrap daemons? | 00:25 |
kfox1111 | just restart l3-agent? | 00:25 |
kevinbenton | just l3-agent | 00:25 |
kevinbenton | kfox1111: rootwrap itself doesn't log that i know of | 00:25 |
kfox1111 | k. | 00:26 |
*** singhj has quit IRC | 00:27 | |
kfox1111 | same amount of time with debugging off. | 00:28 |
kfox1111 | so strange... | 00:28 |
kevinbenton | kfox1111: this line is a bit suspect "28379 poll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}], 2, 500) = 0 (Timeout)" | 00:28 |
kevinbenton | kfox1111: can you do lsof to see what file descriptors its timing out on? | 00:29 |
kfox1111 | k. | 00:29 |
*** abhiraut has quit IRC | 00:29 | |
*** hoangcx has joined #openstack-neutron | 00:30 | |
kfox1111 | I restarted l3agent so I'll have to reproduce... sec.... | 00:30 |
kfox1111 | just stracing without the fip going, it does that all the time... | 00:31 |
kfox1111 | 4 is lr-x------ 1 neutron neutron 64 May 17 17:25 4 -> anon_inode:inotify | 00:31 |
kfox1111 | 5 is lr-x------ 1 neutron neutron 64 May 17 17:25 5 -> pipe:[20605151] | 00:31 |
*** armax_ has joined #openstack-neutron | 00:31 | |
kevinbenton | kfox1111: i don't see any timeouts in an strace of my agent, and you're getting one on each iteration | 00:31 |
kfox1111 | which I think is rootwrap. | 00:31 |
kfox1111 | once a second. | 00:31 |
kevinbenton | if you disable the daemon does performance improve? | 00:33 |
kfox1111 | http://pastebin.com/iXcBjMv9 | 00:33 |
kfox1111 | thats with nothing going on. | 00:33 |
*** armax has quit IRC | 00:33 | |
*** armax_ is now known as armax | 00:33 | |
kfox1111 | which daemon? | 00:33 |
kfox1111 | oh, do you mean rootwrap? | 00:33 |
kevinbenton | yeah | 00:34 |
*** donghao has quit IRC | 00:34 | |
kfox1111 | have a way to do that handy? | 00:34 |
kevinbenton | kfox1111: set root_helper_daemon to a blank value (or comment it out) | 00:34 |
kevinbenton | kfox1111: in the l3 agent config | 00:34 |
kfox1111 | k. restarting. | 00:35 |
kevinbenton | kfox1111: and then just set 'root_helper = /usr/local/bin/neutron-rootwrap /etc/neutron/rootwrap.conf' | 00:35 |
kevinbenton | kfox1111: whoops root_helper = sudo /usr/local/bin/neutron-rootwrap /etc/neutron/rootwrap.conf | 00:35 |
*** salv-orlando has quit IRC | 00:36 | |
kfox1111 | much worse. :) | 00:39 |
kfox1111 | about 2min that time. | 00:39 |
kevinbenton | kfox1111: impressive | 00:39 |
*** gangil has quit IRC | 00:39 | |
kfox1111 | I did see it sudoing a lot, so seems to be doing what we'd expect. | 00:40 |
kevinbenton | kfox1111: does the debug log have anything in between commands? | 00:40 |
kevinbenton | kfox1111: can you do another strace with the -r option to see which system call is taking forever to return? | 00:44 |
*** bdemers has joined #openstack-neutron | 00:44 | |
kfox1111 | looking... | 00:44 |
*** singhj has joined #openstack-neutron | 00:45 | |
kevinbenton | kfox1111: arg, sorry, not -r. we want -T | 00:45 |
kevinbenton | kfox1111: to see if it's time spent in the syscall | 00:45 |
kfox1111 | not much in between in the debug logs: http://pastebin.com/nuV07HJb | 00:46 |
kfox1111 | doing the strace next... | 00:46 |
*** mlavalle has quit IRC | 00:46 | |
*** baoli has joined #openstack-neutron | 00:46 | |
*** mfuruta has joined #openstack-neutron | 00:48 | |
sticker | kfox1111: you haven't got anything strange in /etc/hosts have you? I've seen that make sudo slow before.. that debug log paste you put in has like 2-3 seconds per sudo call | 00:48 |
kevinbenton | sticker: it's slow without sudo (using rootwrap daemon) | 00:49 |
kfox1111 | sticker: we were origionally using rootwrap in daemon mode. was seeing the same slowness. | 00:49 |
kfox1111 | arg... I did the strace with -f -F and its just to verbose now... | 00:49 |
kfox1111 | let me rerun without following... | 00:49 |
sticker | ahh k my bad | 00:50 |
kfox1111 | no worries. we thought the same thing. :) | 00:51 |
*** singhj has quit IRC | 00:52 | |
*** namnh has joined #openstack-neutron | 00:52 | |
*** akshai has joined #openstack-neutron | 00:53 | |
*** akshai_ has quit IRC | 00:53 | |
*** Leo_ has joined #openstack-neutron | 00:54 | |
*** ivar-lazzaro has joined #openstack-neutron | 00:55 | |
kfox1111 | the only thing that seems to be taking up much time is poll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}], 2, 500) = ? ERESTART_RESTARTBLOCK (Interrupted by signal) <0.114222> | 00:55 |
kfox1111 | these sorts of things. | 00:55 |
kfox1111 | which I think is just the loop we've been seeing. | 00:55 |
kevinbenton | kfox1111: but without rootwrap daemon that must be something else | 00:56 |
kfox1111 | up to: poll([{fd=4, events=POLLIN}, {fd=5, events=POLLIN}], 2, 500) = 0 (Timeout) <0.500531> | 00:56 |
kfox1111 | ah... let me look at the fd's. | 00:56 |
kfox1111 | its a fifo back to itself. | 00:56 |
kfox1111 | [root@rcn50 ~]# lsof | grep 20619583 | 00:56 |
kfox1111 | neutron-l 132477 neutron 5r FIFO 0,8 0t0 20619583 pipe | 00:56 |
kfox1111 | neutron-l 132477 neutron 6w FIFO 0,8 0t0 20619583 pipe | 00:56 |
*** hoangcx has quit IRC | 00:56 | |
kfox1111 | on fd 5 | 00:57 |
kfox1111 | and 4 is the inotify one again. | 00:57 |
*** hoangcx has joined #openstack-neutron | 00:57 | |
kfox1111 | looks like an event thing? | 00:57 |
*** Leo_ has quit IRC | 00:59 | |
kevinbenton | kfox1111: i'm not sure what that is. i don't have it present in mine | 01:00 |
kfox1111 | an eventlet thing maybe? | 01:00 |
kfox1111 | looks like I'm running 0.17.4. | 01:00 |
kevinbenton | kfox1111: are you using HA routers, DVR, legacy, or ha/legacy? | 01:00 |
kfox1111 | on a centos 7 system. rdo mitaka. | 01:00 |
kfox1111 | dvr. | 01:00 |
kfox1111 | would like to get to ha+dvr, but arn't to a point we can do that yet. one thing at a time. :) | 01:01 |
*** banix has quit IRC | 01:02 | |
kevinbenton | kfox1111: so i just installed eventlet 0.17.4 | 01:02 |
kevinbenton | kfox1111: and i don't have those FIFOs | 01:02 |
kfox1111 | maybe a kernel feature related thing? | 01:03 |
*** mickeys has joined #openstack-neutron | 01:03 | |
kevinbenton | kfox1111: maybe | 01:04 |
kfox1111 | its a redhat kernel, so versions don't mean too much usually, but 3.10.0-327.13.1.el7.x86_64 | 01:04 |
openstackgerrit | fumihiko kakuma proposed openstack/neutron: Update for removing ofagent https://review.openstack.org/306205 | 01:05 |
kevinbenton | kfox1111: can you disable logging to a file ? | 01:05 |
kevinbenton | kfox1111: or have you already done that | 01:05 |
kfox1111 | I disabled debug. didn't help. I can do all logging, but I don't think that would help. | 01:06 |
kevinbenton | kfox1111: i mean to prevent it from opening a handle to the log file | 01:07 |
kevinbenton | kfox1111: i think you can just set use_stderr=True | 01:07 |
*** armax has quit IRC | 01:07 | |
*** sthillma has quit IRC | 01:07 | |
kevinbenton | kfox1111: maybe you have watch-log-file=True somewhere and that's the inotify we see | 01:08 |
kfox1111 | can I manually run someting via rootwrap and see how that goes? | 01:08 |
*** singhj has joined #openstack-neutron | 01:09 | |
kevinbenton | yeah | 01:09 |
*** ivar-lazzaro has quit IRC | 01:11 | |
kfox1111 | yup. watch_log_file=True | 01:11 |
*** manjeets has left #openstack-neutron | 01:11 | |
kfox1111 | want me to disable it? | 01:11 |
*** donghao has joined #openstack-neutron | 01:12 | |
kevinbenton | yeah | 01:13 |
kevinbenton | kfox1111: yeah, mine is slow with that on | 01:13 |
kevinbenton | kfox1111: but not nearly as slow as you are seeing, just slower | 01:14 |
kfox1111 | wow... | 01:14 |
kfox1111 | that seemed to speed things up... | 01:15 |
kfox1111 | let me play a bit more... | 01:15 |
*** ivar-lazzaro has joined #openstack-neutron | 01:15 | |
kevinbenton | kfox1111: so turn rootwrap daemon back on | 01:15 |
kevinbenton | kfox1111: leave that off | 01:15 |
kfox1111 | k... sec.. | 01:15 |
kfox1111 | yup. thats the fix. :) | 01:17 |
kfox1111 | mostly its emediate. | 01:18 |
kfox1111 | a few times it was taking as long as 10 seconds to start.... | 01:18 |
kfox1111 | I think that may be openstack-ceilometer-compute hammering neutron maybe. | 01:18 |
kfox1111 | we haven't split that out yet. | 01:18 |
*** salv-orlando has joined #openstack-neutron | 01:18 | |
kfox1111 | thank you so much for helping with this. :) | 01:18 |
kevinbenton | kfox1111: no prob | 01:18 |
kevinbenton | kfox1111: file a bug please | 01:18 |
kevinbenton | kfox1111: and i'll harass olso folks with it | 01:18 |
kfox1111 | yeah. will do. :) | 01:19 |
kevinbenton | kfox1111: ttyl | 01:19 |
kfox1111 | l8r. have a good evening. :) | 01:19 |
*** ijw has quit IRC | 01:19 | |
*** EinstCrazy has joined #openstack-neutron | 01:21 | |
*** ajmiller has quit IRC | 01:25 | |
*** ivar-lazzaro has quit IRC | 01:32 | |
*** EinstCrazy has quit IRC | 01:33 | |
*** stanzgy has joined #openstack-neutron | 01:34 | |
*** armax has joined #openstack-neutron | 01:34 | |
*** yamahata has quit IRC | 01:34 | |
*** iyamahat_ has quit IRC | 01:35 | |
*** sanjay_ has quit IRC | 01:35 | |
*** salv-orlando has quit IRC | 01:36 | |
*** kevo has quit IRC | 01:36 | |
*** wolverineav has quit IRC | 01:36 | |
*** banix has joined #openstack-neutron | 01:37 | |
*** EinstCrazy has joined #openstack-neutron | 01:37 | |
*** EinstCrazy has quit IRC | 01:37 | |
*** EinstCrazy has joined #openstack-neutron | 01:38 | |
*** r-daneel has quit IRC | 01:42 | |
*** gangil has joined #openstack-neutron | 01:43 | |
*** sridhar_ram has joined #openstack-neutron | 01:44 | |
*** iwamoto has joined #openstack-neutron | 01:45 | |
-openstackstatus- NOTICE: Gerrit is about to be restarted to help with page timeouts | 01:46 | |
*** singhj has quit IRC | 01:47 | |
*** sridhar_ram has quit IRC | 01:48 | |
*** Leo_ has joined #openstack-neutron | 01:49 | |
*** jerryz has quit IRC | 01:49 | |
*** EinstCra_ has joined #openstack-neutron | 01:50 | |
*** EinstCrazy has quit IRC | 01:50 | |
*** mickeys has quit IRC | 01:51 | |
*** lizk has joined #openstack-neutron | 01:51 | |
openstackgerrit | Merged openstack/neutron: Pecan: Handle hyphenated collection with shims https://review.openstack.org/314858 | 01:51 |
*** jhershbe has joined #openstack-neutron | 01:51 | |
*** reedip__ has joined #openstack-neutron | 01:53 | |
*** s3wong has quit IRC | 01:53 | |
*** Leo_ has quit IRC | 01:54 | |
*** EinstCra_ has quit IRC | 01:55 | |
*** EinstCrazy has joined #openstack-neutron | 01:55 | |
*** EinstCra_ has joined #openstack-neutron | 01:57 | |
*** EinstCrazy has quit IRC | 01:57 | |
*** EinstCra_ has quit IRC | 01:58 | |
*** EinstCrazy has joined #openstack-neutron | 01:58 | |
*** EinstCrazy has quit IRC | 01:59 | |
*** EinstCrazy has joined #openstack-neutron | 02:00 | |
*** claudiub has quit IRC | 02:03 | |
*** iyamahat_ has joined #openstack-neutron | 02:04 | |
*** EinstCrazy has quit IRC | 02:05 | |
*** EinstCrazy has joined #openstack-neutron | 02:05 | |
*** singhj has joined #openstack-neutron | 02:05 | |
*** jckasper has quit IRC | 02:07 | |
*** jckasper has joined #openstack-neutron | 02:09 | |
*** fnaval has quit IRC | 02:10 | |
*** vinaypotluri has quit IRC | 02:10 | |
*** akshai has quit IRC | 02:11 | |
*** salv-orlando has joined #openstack-neutron | 02:12 | |
*** singhj has quit IRC | 02:12 | |
*** thorst_ has joined #openstack-neutron | 02:13 | |
*** EinstCrazy has quit IRC | 02:14 | |
*** yuanying has joined #openstack-neutron | 02:17 | |
*** fnaval has joined #openstack-neutron | 02:19 | |
*** tbachman_ has joined #openstack-neutron | 02:20 | |
openstackgerrit | steve proposed openstack/neutron-dynamic-routing: Add devstack for neutron-dynamic-routing stadium project https://review.openstack.org/312038 | 02:22 |
*** tbachman has quit IRC | 02:22 | |
*** tbachman_ is now known as tbachman | 02:22 | |
*** fnaval_ has joined #openstack-neutron | 02:23 | |
*** gvrangan has joined #openstack-neutron | 02:23 | |
*** rossella_s has quit IRC | 02:23 | |
*** EinstCrazy has joined #openstack-neutron | 02:24 | |
openstackgerrit | Henry proposed openstack/neutron: Add OVS agent support remote VXLAN VTEP https://review.openstack.org/317309 | 02:24 |
*** rossella_s has joined #openstack-neutron | 02:24 | |
*** fnaval__ has joined #openstack-neutron | 02:24 | |
*** iyamahat_ has quit IRC | 02:24 | |
*** gangil has quit IRC | 02:25 | |
*** fnaval has quit IRC | 02:26 | |
*** singhj has joined #openstack-neutron | 02:27 | |
*** fnaval_ has quit IRC | 02:28 | |
*** gvrangan has quit IRC | 02:31 | |
*** EinstCra_ has joined #openstack-neutron | 02:31 | |
*** salv-orlando has quit IRC | 02:32 | |
*** EinstCrazy has quit IRC | 02:34 | |
*** jerryz has joined #openstack-neutron | 02:34 | |
*** fnaval has joined #openstack-neutron | 02:34 | |
*** thorst_ has quit IRC | 02:36 | |
*** thorst_ has joined #openstack-neutron | 02:36 | |
*** wolverineav has joined #openstack-neutron | 02:37 | |
*** fnaval__ has quit IRC | 02:38 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-neutronclient: Updated from global requirements https://review.openstack.org/317505 | 02:40 |
*** singhj has quit IRC | 02:40 | |
*** thorst_ has quit IRC | 02:41 | |
*** wolverineav has quit IRC | 02:42 | |
openstackgerrit | Hong Hui Xiao proposed openstack/neutron: Deprecate the functions map after segment moving out of ml2 https://review.openstack.org/295173 | 02:42 |
*** manjeets has joined #openstack-neutron | 02:46 | |
*** singhj has joined #openstack-neutron | 02:47 | |
*** baoli has quit IRC | 02:57 | |
*** gangil has joined #openstack-neutron | 02:58 | |
*** Prem_ has quit IRC | 02:59 | |
*** iyamahat_ has joined #openstack-neutron | 02:59 | |
*** vishwanathj has quit IRC | 03:05 | |
*** salv-orlando has joined #openstack-neutron | 03:05 | |
*** liuyulong has joined #openstack-neutron | 03:13 | |
*** iyamahat_ has quit IRC | 03:17 | |
*** iyamahat_ has joined #openstack-neutron | 03:18 | |
*** zhhuabj_ has quit IRC | 03:19 | |
*** jhershbe has quit IRC | 03:22 | |
*** iyamahat_ has quit IRC | 03:24 | |
*** links has joined #openstack-neutron | 03:26 | |
openstackgerrit | Na Zhu proposed openstack/neutron-dynamic-routing: Add system design for neutron dynamic routing https://review.openstack.org/316804 | 03:27 |
*** salv-orlando has quit IRC | 03:28 | |
openstackgerrit | Na Zhu proposed openstack/neutron-dynamic-routing: Add system design for neutron dynamic routing https://review.openstack.org/316804 | 03:29 |
*** fnaval_ has joined #openstack-neutron | 03:30 | |
*** dave-mccowan has quit IRC | 03:32 | |
*** fnaval has quit IRC | 03:33 | |
*** zhhuabj_ has joined #openstack-neutron | 03:35 | |
*** vhosakot has joined #openstack-neutron | 03:36 | |
*** Leo_ has joined #openstack-neutron | 03:37 | |
*** Leo_ has quit IRC | 03:41 | |
openstackgerrit | lei zhang proposed openstack/neutron: validate_firewall_driver https://review.openstack.org/317820 | 03:43 |
*** prateek has joined #openstack-neutron | 03:44 | |
*** shashank_hegde has joined #openstack-neutron | 03:45 | |
*** vikasc has joined #openstack-neutron | 03:46 | |
*** akshai has joined #openstack-neutron | 03:49 | |
*** akshai has quit IRC | 03:50 | |
*** mickeys has joined #openstack-neutron | 03:51 | |
*** ijw has joined #openstack-neutron | 03:53 | |
*** njohnston-- is now known as njohnston__ | 03:54 | |
*** shashank_hegde has quit IRC | 03:55 | |
*** yushiro has joined #openstack-neutron | 03:56 | |
*** yushiro has left #openstack-neutron | 03:56 | |
*** njohnston__ has quit IRC | 03:56 | |
*** shashank_hegde has joined #openstack-neutron | 03:56 | |
*** mickeys has quit IRC | 03:56 | |
*** njohnsto_ has joined #openstack-neutron | 03:57 | |
*** njohnsto_ is now known as njohnston__ | 03:57 | |
*** armax has quit IRC | 03:59 | |
*** mickeys has joined #openstack-neutron | 04:00 | |
*** jamespage has quit IRC | 04:00 | |
*** jamespage has joined #openstack-neutron | 04:00 | |
*** padkrish has joined #openstack-neutron | 04:01 | |
*** prateek has quit IRC | 04:04 | |
*** salv-orlando has joined #openstack-neutron | 04:05 | |
*** prateek has joined #openstack-neutron | 04:06 | |
*** iyamahat_ has joined #openstack-neutron | 04:07 | |
*** abregman has joined #openstack-neutron | 04:09 | |
*** brad_behle has quit IRC | 04:12 | |
*** iyamahat_ has quit IRC | 04:24 | |
*** salv-orlando has quit IRC | 04:25 | |
*** jckasper has quit IRC | 04:25 | |
*** amotoki has quit IRC | 04:26 | |
*** amotoki has joined #openstack-neutron | 04:26 | |
*** jckasper has joined #openstack-neutron | 04:26 | |
*** muawiakhan has joined #openstack-neutron | 04:27 | |
*** muawiakh_ has joined #openstack-neutron | 04:29 | |
*** yamamoto has quit IRC | 04:30 | |
*** xenogear has quit IRC | 04:30 | |
*** jckasper has quit IRC | 04:31 | |
*** kodokuu has quit IRC | 04:31 | |
*** muawiakhan has quit IRC | 04:33 | |
*** jhershbe has joined #openstack-neutron | 04:34 | |
*** vikram_ has joined #openstack-neutron | 04:37 | |
*** singhj has quit IRC | 04:38 | |
*** wolverineav has joined #openstack-neutron | 04:38 | |
*** shashank_hegde has quit IRC | 04:41 | |
*** singhj has joined #openstack-neutron | 04:42 | |
*** fnaval has joined #openstack-neutron | 04:43 | |
*** fnaval_ has quit IRC | 04:43 | |
*** roaet has quit IRC | 04:43 | |
*** jamesdenton has quit IRC | 04:43 | |
*** wolverineav has quit IRC | 04:43 | |
*** roaet has joined #openstack-neutron | 04:43 | |
*** singhj has quit IRC | 04:53 | |
*** dedery has joined #openstack-neutron | 04:53 | |
*** Shahid__ has joined #openstack-neutron | 04:55 | |
*** fawadkhaliq has joined #openstack-neutron | 04:57 | |
*** muawiakh_ has quit IRC | 04:58 | |
*** mkolesni has joined #openstack-neutron | 04:58 | |
*** salv-orlando has joined #openstack-neutron | 04:58 | |
*** javeriak has joined #openstack-neutron | 04:59 | |
*** matrohon has joined #openstack-neutron | 05:00 | |
*** wolverineav has joined #openstack-neutron | 05:00 | |
*** njohnston__ has quit IRC | 05:01 | |
*** mickeys has quit IRC | 05:01 | |
*** ijw has quit IRC | 05:01 | |
*** shashank_hegde has joined #openstack-neutron | 05:02 | |
*** vikram_ has quit IRC | 05:02 | |
*** wolverineav has quit IRC | 05:05 | |
*** vinaypotluri has joined #openstack-neutron | 05:05 | |
*** padkrish has quit IRC | 05:07 | |
*** EinstCra_ has quit IRC | 05:08 | |
*** njohnsto_ has joined #openstack-neutron | 05:08 | |
*** mihero_ has joined #openstack-neutron | 05:08 | |
*** singhj has joined #openstack-neutron | 05:08 | |
*** davidlenwell has quit IRC | 05:09 | |
*** EinstCrazy has joined #openstack-neutron | 05:11 | |
*** Unterd0g_ has joined #openstack-neutron | 05:11 | |
*** sambetts has joined #openstack-neutron | 05:11 | |
*** swat30_ has joined #openstack-neutron | 05:12 | |
*** cgross- has joined #openstack-neutron | 05:12 | |
*** EinstCra_ has joined #openstack-neutron | 05:12 | |
*** sambetts|afk has quit IRC | 05:12 | |
*** snecklifter has quit IRC | 05:12 | |
*** fnordahl has quit IRC | 05:12 | |
*** Unterd0g has quit IRC | 05:12 | |
*** Kennan has quit IRC | 05:12 | |
*** cgross has quit IRC | 05:12 | |
*** links has quit IRC | 05:12 | |
*** jerryz has quit IRC | 05:12 | |
*** lizk has quit IRC | 05:12 | |
*** sirushti has quit IRC | 05:12 | |
*** mihero has quit IRC | 05:12 | |
*** swat30 has quit IRC | 05:12 | |
*** Kennan has joined #openstack-neutron | 05:13 | |
*** swat30_ is now known as swat30 | 05:13 | |
*** sirushti has joined #openstack-neutron | 05:13 | |
*** yamamoto_ has joined #openstack-neutron | 05:13 | |
*** snecklifter has joined #openstack-neutron | 05:13 | |
*** links has joined #openstack-neutron | 05:13 | |
*** lizk has joined #openstack-neutron | 05:14 | |
*** jerryz has joined #openstack-neutron | 05:14 | |
*** banix has quit IRC | 05:15 | |
*** fnordahl has joined #openstack-neutron | 05:15 | |
*** EinstCrazy has quit IRC | 05:15 | |
*** njohnsto_ has quit IRC | 05:17 | |
*** davidlenwell has joined #openstack-neutron | 05:17 | |
*** salv-orlando has quit IRC | 05:18 | |
*** salv-orlando has joined #openstack-neutron | 05:18 | |
*** vhosakot has quit IRC | 05:22 | |
*** numans has joined #openstack-neutron | 05:24 | |
*** Leo_ has joined #openstack-neutron | 05:25 | |
*** ranjithd has quit IRC | 05:26 | |
*** saggi has joined #openstack-neutron | 05:28 | |
*** matrohon has quit IRC | 05:29 | |
*** Leo_ has quit IRC | 05:30 | |
openstackgerrit | Na Zhu proposed openstack/neutron-dynamic-routing: Add system design for neutron dynamic routing https://review.openstack.org/316804 | 05:30 |
*** javeriak_ has joined #openstack-neutron | 05:30 | |
*** javeriak has quit IRC | 05:32 | |
*** javeriak has joined #openstack-neutron | 05:32 | |
*** javeriak_ has quit IRC | 05:36 | |
*** padkrish has joined #openstack-neutron | 05:38 | |
*** padkrish has quit IRC | 05:42 | |
openstackgerrit | steve proposed openstack/neutron-dynamic-routing: Add neutron-dynamic-routing DrAgent & Scheduler document https://review.openstack.org/317844 | 05:43 |
*** javeriak has quit IRC | 05:43 | |
*** singhj has quit IRC | 05:46 | |
*** wolverineav has joined #openstack-neutron | 05:46 | |
*** rcernin has joined #openstack-neutron | 05:47 | |
*** javeriak has joined #openstack-neutron | 05:50 | |
*** fragatin_ has joined #openstack-neutron | 05:52 | |
*** iyamahat has joined #openstack-neutron | 05:52 | |
*** fragatin_ has quit IRC | 05:52 | |
*** fragatin_ has joined #openstack-neutron | 05:53 | |
*** fragatin_ has quit IRC | 05:53 | |
*** fragatin_ has joined #openstack-neutron | 05:54 | |
*** fragatina has quit IRC | 05:55 | |
*** kobis has joined #openstack-neutron | 05:55 | |
*** abregman has quit IRC | 05:55 | |
*** jerryz has quit IRC | 05:56 | |
*** javeriak has quit IRC | 05:58 | |
*** fragatin_ has quit IRC | 05:59 | |
*** gvrangan has joined #openstack-neutron | 06:01 | |
*** pjm6 has quit IRC | 06:01 | |
*** pjm6 has joined #openstack-neutron | 06:01 | |
*** mickeys has joined #openstack-neutron | 06:02 | |
openstackgerrit | xiewj proposed openstack/neutron: Update 'segment_mtu' in ml2_conf.ini's help msg https://review.openstack.org/317848 | 06:03 |
*** sridharg has joined #openstack-neutron | 06:04 | |
*** david-lyle has quit IRC | 06:05 | |
*** gongysh has joined #openstack-neutron | 06:06 | |
openstackgerrit | Reedip proposed openstack/python-neutronclient: Improve Help message of VPN Update CLI https://review.openstack.org/271191 | 06:06 |
*** mickeys has quit IRC | 06:07 | |
openstackgerrit | Reedip proposed openstack/python-neutronclient: Remove case dependancy for user inputs https://review.openstack.org/271894 | 06:07 |
*** gangil1 has joined #openstack-neutron | 06:07 | |
*** anilvenkata has joined #openstack-neutron | 06:07 | |
*** fragatina has joined #openstack-neutron | 06:07 | |
*** gangil has quit IRC | 06:07 | |
*** apoorv has joined #openstack-neutron | 06:08 | |
*** jbell8 has joined #openstack-neutron | 06:08 | |
openstackgerrit | steve proposed openstack/neutron-dynamic-routing: Add devstack for neutron-dynamic-routing stadium project https://review.openstack.org/312038 | 06:10 |
*** garyk1 has joined #openstack-neutron | 06:11 | |
*** fragatina has quit IRC | 06:12 | |
*** donghao has quit IRC | 06:12 | |
*** jbell8 has quit IRC | 06:12 | |
*** jbell8 has joined #openstack-neutron | 06:12 | |
*** moshele has joined #openstack-neutron | 06:13 | |
*** njohnsto_ has joined #openstack-neutron | 06:14 | |
*** gangil1 has quit IRC | 06:15 | |
*** njohnsto_ has quit IRC | 06:19 | |
*** irenab_ has joined #openstack-neutron | 06:21 | |
*** EinstCrazy has joined #openstack-neutron | 06:21 | |
*** irenab has quit IRC | 06:22 | |
*** irenab_ is now known as irenab | 06:22 | |
*** fragatina has joined #openstack-neutron | 06:24 | |
*** EinstCra_ has quit IRC | 06:25 | |
*** eddima has joined #openstack-neutron | 06:27 | |
*** javeriak has joined #openstack-neutron | 06:27 | |
*** Shahid__ has quit IRC | 06:28 | |
*** salv-orlando has quit IRC | 06:30 | |
*** fragatina has quit IRC | 06:35 | |
*** fragatina has joined #openstack-neutron | 06:36 | |
*** csatari has joined #openstack-neutron | 06:36 | |
*** hichihara has joined #openstack-neutron | 06:38 | |
*** manikanta_tadi has joined #openstack-neutron | 06:39 | |
*** Shahid__ has joined #openstack-neutron | 06:41 | |
*** malos has joined #openstack-neutron | 06:44 | |
*** korzen has joined #openstack-neutron | 06:44 | |
*** rcernin has quit IRC | 06:47 | |
*** javeriak has quit IRC | 06:48 | |
*** _cjones_ has joined #openstack-neutron | 06:49 | |
*** andreas_s has joined #openstack-neutron | 06:50 | |
*** _cjones_ has quit IRC | 06:50 | |
*** ozialien10 has quit IRC | 06:50 | |
openstackgerrit | Ryan Tidwell proposed openstack/neutron: Lock Ryu version at <=4.0 https://review.openstack.org/317860 | 06:50 |
*** saggi has quit IRC | 06:50 | |
garyk1 | yamamoto_: can you please try this devstack patch and see if it helps - https://review.openstack.org/317754 | 06:50 |
*** donghao has joined #openstack-neutron | 06:51 | |
*** rcernin has joined #openstack-neutron | 06:51 | |
*** javeriak has joined #openstack-neutron | 06:55 | |
*** yfried has joined #openstack-neutron | 06:57 | |
*** roeyc has joined #openstack-neutron | 07:00 | |
openstackgerrit | Merged openstack/neutron: Update for removing ofagent https://review.openstack.org/306205 | 07:01 |
*** mosulica has joined #openstack-neutron | 07:02 | |
*** tmorin has joined #openstack-neutron | 07:03 | |
*** jschwarz__ has joined #openstack-neutron | 07:05 | |
*** duobei has joined #openstack-neutron | 07:06 | |
*** shashank_hegde has quit IRC | 07:07 | |
*** vikram has joined #openstack-neutron | 07:10 | |
*** vinaypotluri has quit IRC | 07:10 | |
*** salv-orlando has joined #openstack-neutron | 07:11 | |
*** shashank_hegde has joined #openstack-neutron | 07:11 | |
openstackgerrit | xiewj proposed openstack/neutron: Update 'segment_mtu' in ml2_conf.ini's help msg https://review.openstack.org/317848 | 07:11 |
*** javeriak has quit IRC | 07:12 | |
*** claudiub has joined #openstack-neutron | 07:13 | |
*** Leo_ has joined #openstack-neutron | 07:14 | |
*** javeriak has joined #openstack-neutron | 07:15 | |
*** srampal has quit IRC | 07:16 | |
*** tidwellr has joined #openstack-neutron | 07:16 | |
*** tidwellr has left #openstack-neutron | 07:16 | |
*** Leo_ has quit IRC | 07:18 | |
*** matrohon has joined #openstack-neutron | 07:22 | |
vikram | yamamoto_: ping | 07:25 |
*** jlanoux has joined #openstack-neutron | 07:26 | |
garyk1 | yamamoto_: i also pushed https://review.openstack.org/#/c/317877 maybe that will be the mssing piece | 07:26 |
*** nmagnezi has joined #openstack-neutron | 07:27 | |
*** gangil has joined #openstack-neutron | 07:28 | |
*** nmagnezi has quit IRC | 07:28 | |
*** nmagnezi has joined #openstack-neutron | 07:29 | |
*** jbell8 has quit IRC | 07:30 | |
*** duobei has quit IRC | 07:31 | |
*** salv-orlando has quit IRC | 07:31 | |
*** jlibosva has joined #openstack-neutron | 07:32 | |
*** gangil has quit IRC | 07:33 | |
*** nmagnezi has quit IRC | 07:33 | |
*** dmk0202 has joined #openstack-neutron | 07:35 | |
*** salv-orlando has joined #openstack-neutron | 07:35 | |
*** palexster has quit IRC | 07:37 | |
*** c64cosmin has joined #openstack-neutron | 07:37 | |
yamamoto_ | vikram: pong | 07:37 |
yamamoto_ | garyk1: will look | 07:37 |
*** ihrachys has joined #openstack-neutron | 07:38 | |
vikram | yamamoto_: when the next version of RYU will be released ? | 07:38 |
*** devvesa has joined #openstack-neutron | 07:38 | |
vikram | yamamoto_: any idea.. actually we are blocked because of the current release | 07:38 |
*** devvesa has quit IRC | 07:38 | |
garyk1 | yamamoto_: thanks. | 07:39 |
*** devvesa has joined #openstack-neutron | 07:39 | |
vikram | yamamoto_: http://logs.openstack.org/50/317550/1/gate/gate-neutron-dynamic-routing-python34/acf6560/console.html | 07:39 |
yamamoto_ | vikram: no idea when it will be. we can ask an intermediate release. is the issue fixed on master? | 07:39 |
yamamoto_ | ryu's master i mean | 07:39 |
vikram | yamamoto_: yes "https://github.com/osrg/ryu/commit/a20b9e1fcd675e593c8b4cb383f28f404ff62add", | 07:39 |
yamamoto_ | vikram: ok, let me ping the team | 07:40 |
vikram | yamamoto_: thanks.. | 07:41 |
vikram | yamamoto_: coming to your comment about Ryan's change | 07:41 |
*** abregman has joined #openstack-neutron | 07:41 | |
vikram | yamamoto_: https://review.openstack.org/#/c/317860/ | 07:41 |
vikram | yamamoto_: what actually you are suggesting.. | 07:41 |
vikram | yamamoto_: Can't we get a temp fix in the neutron master to keep us un-blocked | 07:42 |
*** palexster has joined #openstack-neutron | 07:42 | |
yamamoto_ | if you need a temporary fix, how about just disabling the py3 tests? | 07:42 |
*** kodokuu has joined #openstack-neutron | 07:43 | |
*** apoorv has quit IRC | 07:45 | |
*** fzdarsky has joined #openstack-neutron | 07:47 | |
*** salv-orl_ has joined #openstack-neutron | 07:48 | |
*** jpena|off is now known as jpena | 07:48 | |
*** hynekm has joined #openstack-neutron | 07:49 | |
vikram | yamamoto_: I think temp fix won't help.. We need the gate job to be passed | 07:49 |
vikram | yamamoto_: All our patches are blocked as gate check can't pass | 07:49 |
yamamoto_ | vikram: a patch to disable the tests can pass, can't it? | 07:50 |
vikram | yamamoto_: that will work | 07:50 |
vikram | yamamoto_: but how about getting Ryan's changes merged? | 07:51 |
garyk1 | yamamoto_: please try the patch again. my check was not good - i checked it was false and not true. this is so frustrating | 07:51 |
vikram | yamamoto_: https://review.openstack.org/#/c/317860/ | 07:51 |
yamamoto_ | vikram: i guess it will fail to pass requirement check | 07:52 |
*** salv-orlando has quit IRC | 07:52 | |
*** fawadkhaliq has quit IRC | 07:52 | |
vikram | yamamoto_: why? | 07:52 |
*** fawadkhaliq has joined #openstack-neutron | 07:52 | |
*** abregman is now known as abregman|mtg | 07:52 | |
*** jistr has joined #openstack-neutron | 07:54 | |
openstackgerrit | steve proposed openstack/neutron-dynamic-routing: Add devstack for neutron-dynamic-routing stadium project https://review.openstack.org/312038 | 07:55 |
*** duobei has joined #openstack-neutron | 07:56 | |
yamamoto_ | vikram: well, i don't remember how the check is strict. it might pass. anyway it's unusual to make a local change like this. | 07:57 |
*** david-lyle has joined #openstack-neutron | 07:57 | |
vikram | yamamoto_: Hmm | 07:57 |
*** fawadkhaliq has quit IRC | 07:58 | |
*** fawadkhaliq has joined #openstack-neutron | 07:58 | |
vikram | yamamoto_: By when the next Ryu release will be out? | 07:58 |
vikram | yamamoto_: any tentative date? | 07:58 |
*** fawadkhaliq has quit IRC | 07:58 | |
*** fawadkhaliq has joined #openstack-neutron | 07:59 | |
yamamoto_ | vikram: i asked the person who usually makes releases. i'll let you know when i got answer. | 07:59 |
*** fawadkhaliq has quit IRC | 07:59 | |
*** zzzeek has quit IRC | 08:00 | |
vikram | yamamoto_: Ok.. thanks for the quick help.. | 08:00 |
*** fawadkhaliq has joined #openstack-neutron | 08:00 | |
vikram | yamamoto_: I am fine skipping the test for now | 08:00 |
yamamoto_ | vikram: usually we make releases monthly | 08:00 |
*** fawadkhaliq has quit IRC | 08:00 | |
vikram | yamamoto_: release for this month done? | 08:00 |
vikram | yamamoto_: or yet to come | 08:00 |
yamamoto_ | vikram: 4.2 was May 10 or so | 08:01 |
*** fawadkhaliq has joined #openstack-neutron | 08:01 | |
*** zzzeek has joined #openstack-neutron | 08:01 | |
*** jschwarz__ has quit IRC | 08:01 | |
vikram | yamamoto_: ohhh | 08:01 |
*** fawadkhaliq has quit IRC | 08:01 | |
*** fawadkhaliq has joined #openstack-neutron | 08:01 | |
vikram | yamamoto_: I am not sure skipping the test for this long will be good.. | 08:01 |
vikram | yamamoto_: as we aim for N-1 | 08:02 |
*** fawadkhaliq has quit IRC | 08:02 | |
*** fawadkhaliq has joined #openstack-neutron | 08:02 | |
vikram | yamamoto_: and people will expect us to pass in all the tests ;) | 08:02 |
yamamoto_ | vikram: we had made an intermediate release for urgent issues | 08:02 |
vikram | yamamoto_: How, I can hook it to the gate? | 08:02 |
*** fawadkhaliq has quit IRC | 08:02 | |
yamamoto_ | vikram: i guess we can make one for this issue. but i'm not a person to decide. | 08:03 |
*** fawadkhaliq has joined #openstack-neutron | 08:03 | |
yamamoto_ | vikram: i was just talking about history :-) | 08:03 |
vikram | yamamoto_: We import neutron and neutron in-turn imports ryu.. | 08:03 |
*** fawadkhaliq has quit IRC | 08:03 | |
vikram | yamamoto_: How about we remove Ryu from neutron requirement list and put it in our repo | 08:03 |
iwamoto | vikram: I guess a ryu point release will happen in a couple of days | 08:03 |
*** mickeys has joined #openstack-neutron | 08:04 | |
vikram | yamamoto_: I believe only neutron-dynamic-routing needs RYU | 08:04 |
*** fawadkhaliq has joined #openstack-neutron | 08:04 | |
vikram | yamamoto_: correct | 08:04 |
*** csatari has quit IRC | 08:04 | |
*** fawadkhaliq has quit IRC | 08:04 | |
*** fawadkhaliq has joined #openstack-neutron | 08:05 | |
vikram | yamamoto_: no we can't.. neutron/plugins/ml2/drivers/openvswitch/agent/openflow/native/ovs_ryuapp.py needs ryu as well | 08:05 |
iwamoto | vikram: neutron's native of_interface also needs ryu | 08:05 |
*** fawadkhaliq has quit IRC | 08:05 | |
*** muawiakhan has joined #openstack-neutron | 08:05 | |
vikram | yamamoto_: yeah, I saw that | 08:05 |
vikram | yamamoto_: What's your suggestion? | 08:06 |
*** fawadkhaliq has joined #openstack-neutron | 08:06 | |
vikram | yamamoto_: IMO, the best way could be adjusting the ryu version in neutron's req list for now | 08:06 |
*** fawadkhaliq has quit IRC | 08:06 | |
*** fawadkhaliq has joined #openstack-neutron | 08:06 | |
vikram | yamamoto_: and changing it once the official release happens | 08:07 |
*** rmart04 has joined #openstack-neutron | 08:07 | |
vikram | yamamoto_: In this way we can also ensure tests are running for any merge we do | 08:07 |
*** fawadkhaliq has quit IRC | 08:07 | |
vikram | yamamoto_: in neutron-dynamic-routing | 08:07 |
yamamoto_ | vikram: my understanding is we can't do that. gate-neutron-requirements will fail. | 08:07 |
openstackgerrit | Andreas Scheuring proposed openstack/neutron-specs: Spec for distributed portbindings https://review.openstack.org/309416 | 08:07 |
*** fawadkhaliq has joined #openstack-neutron | 08:08 | |
ajo_ | apuimedo, ping | 08:08 |
apuimedo | ajo_: pong | 08:08 |
vikram | yamamoto_: so only commenting the test is an option ? | 08:08 |
yamamoto_ | vikram: in case you can't wait for the next ryu release, it's the only option i can think of right now. | 08:09 |
ajo_ | apuimedo, can we update the kernel version of your trusty64 image ? :) | 08:09 |
ajo_ | (sorry for requesting...) :D | 08:09 |
ajo_ | https://bugs.launchpad.net/neutron/+bug/1582807 | 08:09 |
openstack | Launchpad bug 1582807 in neutron "neutron-rootwrap-daemon explodes because of misbehaving "ip rule"" [Undecided,Incomplete] | 08:09 |
*** mickeys has quit IRC | 08:09 | |
ajo_ | it has a ugly bug with "ip rule" ... were netlink enters an infinite loop sending rules to "ip" tool, and crashes rootwrap-daemon 'XD | 08:09 |
ajo_ | by exhausting the VM memory | 08:10 |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/neutron: [WIP] Testing latest u-c https://review.openstack.org/303346 | 08:10 |
openstackgerrit | Davanum Srinivas (dims) proposed openstack/neutron: [WIP] Testing latest u-c https://review.openstack.org/303346 | 08:10 |
vikram | yamamoto_: ok.. thanks | 08:10 |
apuimedo | ajo_: yes. I guess I could | 08:11 |
apuimedo | I'll try to find my packer build | 08:11 |
*** nyechiel has joined #openstack-neutron | 08:12 | |
*** andreas_s has quit IRC | 08:12 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/python-neutronclient: tests: removed mocking for Client.get_attr_metadata https://review.openstack.org/317889 | 08:12 |
openstackgerrit | Ihar Hrachyshka proposed openstack/python-neutronclient: Switched from fixtures.MonkeyPatch to mock.patch https://review.openstack.org/317890 | 08:12 |
ajo_ | thanks a lot apuimedo, if you don't find it ping me, and I will try to generate another one. | 08:13 |
apuimedo | very well | 08:13 |
*** ygbo has joined #openstack-neutron | 08:15 | |
*** abregman|mtg has quit IRC | 08:15 | |
*** njohnsto_ has joined #openstack-neutron | 08:16 | |
*** jschwarz__ has joined #openstack-neutron | 08:16 | |
*** shashank_hegde has quit IRC | 08:19 | |
*** njohnsto_ has quit IRC | 08:20 | |
*** haukebruno has joined #openstack-neutron | 08:21 | |
*** davidsha has joined #openstack-neutron | 08:22 | |
*** abregman has joined #openstack-neutron | 08:23 | |
*** javeriak has quit IRC | 08:26 | |
*** salv-orl_ has quit IRC | 08:27 | |
*** jckasper has joined #openstack-neutron | 08:28 | |
*** yfried has quit IRC | 08:29 | |
*** efoley has joined #openstack-neutron | 08:31 | |
*** sudipto has joined #openstack-neutron | 08:31 | |
*** lucas-dinner is now known as lucasagomes | 08:32 | |
*** jckasper has quit IRC | 08:33 | |
garyk1 | yamamoto_: did you manage to try and run the patch? | 08:33 |
garyk1 | yamamoto_: i agree with your comment on it though - but it is more specific than Q_L3_ENABLED (which people may claim is cryptic) | 08:34 |
evrardjp | good morning everyone | 08:34 |
*** efoley_ has joined #openstack-neutron | 08:36 | |
*** hichihara has quit IRC | 08:36 | |
yamamoto_ | garyk1: i haven't tried it | 08:37 |
garyk1 | yamamoto_: ok. i just think that its a dodgy alternative. we need to get out of this blocked state. | 08:37 |
*** jlibosva has quit IRC | 08:38 | |
*** jinxing has joined #openstack-neutron | 08:39 | |
*** efoley has quit IRC | 08:39 | |
*** dedery_ has joined #openstack-neutron | 08:40 | |
openstackgerrit | garyk proposed openstack/neutron: Pecan: remove deprecation warning https://review.openstack.org/317254 | 08:41 |
*** stanzgy_ has joined #openstack-neutron | 08:42 | |
*** martink2_ has joined #openstack-neutron | 08:42 | |
*** bzhao has quit IRC | 08:43 | |
*** carl_baldwin_ has joined #openstack-neutron | 08:43 | |
*** wendar_ has joined #openstack-neutron | 08:43 | |
*** kozhukalov_ has joined #openstack-neutron | 08:43 | |
*** mrvinti_ has joined #openstack-neutron | 08:44 | |
*** bzhao has joined #openstack-neutron | 08:44 | |
*** eglute_s has joined #openstack-neutron | 08:44 | |
*** bapalm_ has joined #openstack-neutron | 08:44 | |
*** lbragstad_ has joined #openstack-neutron | 08:44 | |
*** blogan_ has joined #openstack-neutron | 08:44 | |
*** root has joined #openstack-neutron | 08:44 | |
*** Diopter has joined #openstack-neutron | 08:44 | |
*** haleyb_ has joined #openstack-neutron | 08:44 | |
*** hockeynut_afk has joined #openstack-neutron | 08:45 | |
*** lucasagomes_ has joined #openstack-neutron | 08:45 | |
*** root is now known as Guest45469 | 08:45 | |
*** roaet- has joined #openstack-neutron | 08:45 | |
*** mfranc213_ has joined #openstack-neutron | 08:45 | |
*** raorn_ has joined #openstack-neutron | 08:45 | |
*** wasmum has quit IRC | 08:45 | |
*** hockeynut has quit IRC | 08:45 | |
*** mfranc213 has quit IRC | 08:45 | |
*** garyk has quit IRC | 08:45 | |
*** bharathm has quit IRC | 08:45 | |
*** nick-ma has quit IRC | 08:45 | |
*** carl_baldwin has quit IRC | 08:45 | |
*** blogan has quit IRC | 08:45 | |
*** roaet_ has quit IRC | 08:45 | |
*** sticker has quit IRC | 08:45 | |
*** med_ has quit IRC | 08:45 | |
*** manjeets has quit IRC | 08:45 | |
*** bapalm has quit IRC | 08:45 | |
*** melwitt has quit IRC | 08:45 | |
*** leifz has quit IRC | 08:45 | |
*** dedery has quit IRC | 08:45 | |
*** stanzgy has quit IRC | 08:45 | |
*** brianstajkowski has quit IRC | 08:45 | |
*** ramishra has quit IRC | 08:45 | |
*** kozhukalov has quit IRC | 08:45 | |
*** lewo has quit IRC | 08:45 | |
*** sbelous has quit IRC | 08:45 | |
*** briancurtin has quit IRC | 08:45 | |
*** martink2 has quit IRC | 08:45 | |
*** yarkot1 has quit IRC | 08:45 | |
*** mhayden has quit IRC | 08:45 | |
*** Kimmo_ has quit IRC | 08:45 | |
*** Apsu has quit IRC | 08:45 | |
*** rbradfor has quit IRC | 08:45 | |
*** eglute has quit IRC | 08:45 | |
*** mgagne has quit IRC | 08:45 | |
*** mrvinti has quit IRC | 08:45 | |
*** lucasagomes has quit IRC | 08:45 | |
*** haleyb has quit IRC | 08:45 | |
*** Nakato has quit IRC | 08:45 | |
*** lbragstad has quit IRC | 08:45 | |
*** evrardjp has quit IRC | 08:45 | |
*** jamielennox has quit IRC | 08:45 | |
*** wendar has quit IRC | 08:45 | |
*** vkmc has quit IRC | 08:45 | |
*** raorn has quit IRC | 08:45 | |
*** melwitt has joined #openstack-neutron | 08:45 | |
*** Nakato has joined #openstack-neutron | 08:45 | |
*** nick-ma has joined #openstack-neutron | 08:45 | |
*** leifz has joined #openstack-neutron | 08:45 | |
*** med_ has joined #openstack-neutron | 08:45 | |
*** mgagne has joined #openstack-neutron | 08:45 | |
*** vkmc has joined #openstack-neutron | 08:45 | |
*** ramishra has joined #openstack-neutron | 08:45 | |
*** ramishra has quit IRC | 08:45 | |
*** Diopter is now known as Apsu | 08:45 | |
*** med_ has quit IRC | 08:45 | |
*** med_ has joined #openstack-neutron | 08:45 | |
*** lewo_ has joined #openstack-neutron | 08:45 | |
*** martink2_ is now known as martink2 | 08:45 | |
*** vkmc has quit IRC | 08:45 | |
*** vkmc has joined #openstack-neutron | 08:45 | |
*** ramishra has joined #openstack-neutron | 08:45 | |
*** yarkot1 has joined #openstack-neutron | 08:46 | |
*** lewo_ is now known as lewo | 08:46 | |
*** melwitt is now known as Guest37264 | 08:46 | |
*** mgagne is now known as Guest92292 | 08:46 | |
*** sticker has joined #openstack-neutron | 08:46 | |
*** nick-ma has quit IRC | 08:46 | |
*** nick-ma has joined #openstack-neutron | 08:46 | |
*** garyk has joined #openstack-neutron | 08:46 | |
*** yfried has joined #openstack-neutron | 08:46 | |
*** sbelous has joined #openstack-neutron | 08:46 | |
*** yfried has quit IRC | 08:46 | |
*** yfried has joined #openstack-neutron | 08:46 | |
*** mhayden has joined #openstack-neutron | 08:46 | |
*** hynekm has quit IRC | 08:46 | |
*** evrardjp has joined #openstack-neutron | 08:46 | |
*** rbradfor has joined #openstack-neutron | 08:46 | |
*** carl_baldwin_ is now known as carl_baldwin | 08:47 | |
*** hynekm has joined #openstack-neutron | 08:47 | |
*** mrvinti_ is now known as mrvinti | 08:47 | |
*** bharathm has joined #openstack-neutron | 08:47 | |
*** serverascode has quit IRC | 08:47 | |
*** nmagnezi has joined #openstack-neutron | 08:47 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/python-neutronclient: Constraint tox targets with upper-constraints.txt https://review.openstack.org/317909 | 08:47 |
*** ramishra has quit IRC | 08:47 | |
*** ramishra has joined #openstack-neutron | 08:48 | |
*** kozhukalov_ is now known as kozhukalov | 08:48 | |
*** marcusvrn_ has quit IRC | 08:48 | |
*** ildikov has quit IRC | 08:48 | |
*** dougwig has quit IRC | 08:48 | |
*** mvk has joined #openstack-neutron | 08:49 | |
*** lucasagomes_ is now known as lucasagomes | 08:49 | |
*** manjeets has joined #openstack-neutron | 08:49 | |
*** sylwesterB has quit IRC | 08:49 | |
*** rpodolyaka has quit IRC | 08:49 | |
*** RaginBajin has quit IRC | 08:49 | |
*** nmagnezi_ has joined #openstack-neutron | 08:52 | |
*** manikanta_tadi has quit IRC | 08:52 | |
*** jschwarz__ has quit IRC | 08:53 | |
*** manikanta_tadi has joined #openstack-neutron | 08:53 | |
garyk1 | yamamoto_: can you please maybe +1 on https://review.openstack.org/#/c/317877/ - this will help the patch at least get karma. i am going to write a mail to the list. i think it is a sufficient stop gap. | 08:53 |
*** rm_work has quit IRC | 08:53 | |
openstackgerrit | Oleg Bondarev proposed openstack/neutron: DVR: Moving router from dvr_snat node removes the qrouters https://review.openstack.org/300268 | 08:53 |
*** manikanta_tadi has quit IRC | 08:54 | |
*** rm_work has joined #openstack-neutron | 08:54 | |
*** manikanta_tadi has joined #openstack-neutron | 08:54 | |
*** jamielennox has joined #openstack-neutron | 08:55 | |
*** ildikov has joined #openstack-neutron | 08:55 | |
openstackgerrit | Maho Koshiya proposed openstack/neutron: Add negative API tests that try to remove the resources in use. https://review.openstack.org/316592 | 08:55 |
*** nmagnezi has quit IRC | 08:56 | |
*** marcusvrn_ has joined #openstack-neutron | 08:57 | |
*** rpodolyaka has joined #openstack-neutron | 08:57 | |
*** dlundquist has quit IRC | 08:58 | |
ihrachys | amotoki: we don't have a base class in client that is under our control? | 08:58 |
openstackgerrit | Na Zhu proposed openstack/neutron: Support provider:flooding_vtep in ML2 https://review.openstack.org/315896 | 08:58 |
ihrachys | amotoki: I see we inherit from oslotest directly | 08:58 |
*** wasmum has joined #openstack-neutron | 08:58 | |
*** manikanta_ has joined #openstack-neutron | 08:59 | |
*** RaginBajin has joined #openstack-neutron | 08:59 | |
amotoki | ihrachys: yeah.. i think having addCleanup in tests/unit/test_cli20.py is good | 08:59 |
ihrachys | amotoki: we have similar thing in CLITestV20ExtensionJSON already | 08:59 |
*** dougwig has joined #openstack-neutron | 08:59 | |
*** serverascode has joined #openstack-neutron | 09:00 | |
ihrachys | amotoki: I wonder if it's time to introduce a common base class and put stopall there. | 09:00 |
*** jlibosva has joined #openstack-neutron | 09:00 | |
ihrachys | amotoki: actually, oslotest.base already does it, but for six.mock. | 09:00 |
ihrachys | if we would use six.mock directly, it would also work magically | 09:00 |
ihrachys | amotoki: https://github.com/openstack/oslotest/blob/master/oslotest/base.py#L100 | 09:01 |
*** manikanta_tadi has quit IRC | 09:01 | |
*** vikasc has quit IRC | 09:01 | |
*** dlundquist has joined #openstack-neutron | 09:01 | |
*** obondarev_ has joined #openstack-neutron | 09:01 | |
*** Leo_ has joined #openstack-neutron | 09:02 | |
*** sylwesterB has joined #openstack-neutron | 09:02 | |
ihrachys | amotoki: or is CLITestV20Base actually THE base class? | 09:02 |
amotoki | ihrachys: CLITestV20Base is the base class for most CLI tests but it is not true for all tests. | 09:04 |
ihrachys | I see. ok, for now I will add it there, and later we can thing of a real common base class | 09:04 |
ihrachys | *think | 09:05 |
*** briancurtin has joined #openstack-neutron | 09:05 | |
amotoki | ihrachys: I like the idea of having a common base class. your plan sounds good | 09:05 |
*** Unterd0g_ is now known as Unterd0g | 09:05 | |
*** nijaba has quit IRC | 09:05 | |
*** jschwarz__ has joined #openstack-neutron | 09:06 | |
*** efoley__ has joined #openstack-neutron | 09:06 | |
*** jschwarz__ is now known as jschwarz | 09:06 | |
*** roeyc has quit IRC | 09:07 | |
*** Leo_ has quit IRC | 09:07 | |
*** neiljerram has joined #openstack-neutron | 09:07 | |
*** efoley_ has quit IRC | 09:08 | |
*** salv-orlando has joined #openstack-neutron | 09:09 | |
*** hynekm has quit IRC | 09:10 | |
*** obondarev_ has quit IRC | 09:10 | |
*** hynekm has joined #openstack-neutron | 09:10 | |
*** iyamahat has quit IRC | 09:11 | |
*** obondarev_ has joined #openstack-neutron | 09:11 | |
*** sleviim has joined #openstack-neutron | 09:12 | |
*** sleviim has left #openstack-neutron | 09:12 | |
*** nijaba has joined #openstack-neutron | 09:12 | |
*** nmagnezi__ has joined #openstack-neutron | 09:13 | |
*** donghao has quit IRC | 09:13 | |
*** yfried_ has joined #openstack-neutron | 09:14 | |
*** vikasc has joined #openstack-neutron | 09:14 | |
*** nmagnezi_ has quit IRC | 09:15 | |
jschwarz | ajo_, hey hey | 09:15 |
ajo_ | hey jschwarz | 09:15 |
ajo_ | :) | 09:15 |
jschwarz | ajo_, I remember you dealing with this a while back - I have a circular import somewhere in my code | 09:16 |
ajo_ | jschwarz, oh fun | 09:16 |
jschwarz | ajo_, so in order to avoid it I've put one of the imports inside a function | 09:16 |
jschwarz | ajo_, but now pylint complains... :< | 09:16 |
jschwarz | ajo_, how do you make pylint silent? | 09:16 |
ajo_ | jschwarz, let me look for it, one sec | 09:16 |
ajo_ | ideally, design should break circular imports, | 09:17 |
openstackgerrit | Ihar Hrachyshka proposed openstack/python-neutronclient: Switched from fixtures.MonkeyPatch to mock.patch https://review.openstack.org/317890 | 09:17 |
ihrachys | amotoki: ^ updated | 09:17 |
jschwarz | ajo_, k. it seems like my lunch is here so I'll be back soonish hopefully | 09:17 |
ajo_ | how does yours look like jschwarz ? ? | 09:17 |
jschwarz | ajo_, my design? it sucks :P | 09:17 |
ajo_ | jschwarz, ack, I will find and link :P | 09:17 |
ihrachys | jschwarz: pylint allows to skip a check with a special comment. | 09:17 |
jschwarz | ajo_, l3_db imports l3_agentscheduler_db and vice-versa | 09:17 |
ihrachys | jschwarz: it's all in pylint docs | 09:17 |
jschwarz | ihrachys, # noqa? | 09:17 |
ihrachys | jschwarz: nope, other. rtfm | 09:17 |
jschwarz | ihrachys, I'll look for it, thanks :) | 09:17 |
jschwarz | gone to eat | 09:18 |
*** abregman is now known as abregman|afk | 09:18 | |
*** yfried has quit IRC | 09:18 | |
*** apoorv has joined #openstack-neutron | 09:19 | |
vinc | Hi network folks, what is the best way to achieve this ? | 09:20 |
vinc | 2 instances in the same tenant that can ping each other | 09:20 |
*** mfuruta has quit IRC | 09:20 | |
vinc | need to add another ip to one of them | 09:20 |
*** obondarev_ has quit IRC | 09:21 | |
vinc | First try with virtual ip (ip addr add 10.X.x.x dev eth0 | 09:21 |
ajo_ | jschwarz, : https://github.com/openstack/neutron/blob/master/neutron/api/rpc/callbacks/version_manager.py#L42 | 09:21 |
evrardjp | that previous phrase will probably need more explanation vinc | 09:21 |
vinc | but the ARP requests are not transmitted to the network | 09:22 |
vinc | Question : how to use virtual ip (if we can ?) _or_ add a second virtual nic to the instance ? | 09:22 |
*** nmagnezi__ has quit IRC | 09:22 | |
openstackgerrit | Rodolfo Alonso Hernandez proposed openstack/neutron: Add cookie tracking to OVS firewall driver https://review.openstack.org/295154 | 09:23 |
*** mvk_ has joined #openstack-neutron | 09:24 | |
vinc | my understanding is : when using l2population, ther is an arp table _created_ with the db information, not the network discovery right ? | 09:25 |
*** javeriak has joined #openstack-neutron | 09:27 | |
*** mvk has quit IRC | 09:28 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/python-neutronclient: Constraint tox targets with upper-constraints.txt https://review.openstack.org/317909 | 09:28 |
*** nmagnezi has joined #openstack-neutron | 09:29 | |
*** ivc_ has joined #openstack-neutron | 09:29 | |
*** duobei has quit IRC | 09:30 | |
*** nmagnezi_ has joined #openstack-neutron | 09:33 | |
*** duobei has joined #openstack-neutron | 09:35 | |
*** slaweq has joined #openstack-neutron | 09:35 | |
*** nmagnezi_ has quit IRC | 09:35 | |
openstackgerrit | Jakub Libosvar proposed openstack/neutron: Mock out poller in ovsdb unittests https://review.openstack.org/317929 | 09:38 |
ihrachys | sc68cal: howdy | 09:42 |
ihrachys | sc68cal: a question for you on devstack | 09:42 |
*** ivc_ has quit IRC | 09:42 | |
ihrachys | sc68cal: when I have both local.conf and localrc, are both of them used? or just one (which?)? | 09:42 |
mattt | ihrachys: got a sec? | 09:44 |
ihrachys | mattt: 10 mins max | 09:44 |
mattt | ihrachys: https://review.openstack.org/#/c/311260/ | 09:44 |
mattt | ihrachys: since that review went in, tempest on our integrated build started failing | 09:44 |
ihrachys | mattt: interesting. logs? is it newton? | 09:44 |
mattt | ihrachys: just wondering if we should revert or if you had any suggestion how to proceed ... disclaimer: i am terrible w/ networking | 09:45 |
*** malos has quit IRC | 09:45 | |
mattt | ihrachys: newton yes | 09:45 |
ihrachys | mattt: logs? | 09:45 |
ihrachys | mattt: hmmmm | 09:46 |
ihrachys | mattt: https://review.openstack.org/#/c/311260/2/defaults/main.yml line 322 | 09:46 |
*** ivc_ has joined #openstack-neutron | 09:46 | |
ihrachys | we should avoid setting it too | 09:46 |
ihrachys | mattt: question: how did it pass your gate? you have a hole in your testing maybe? | 09:47 |
mattt | ihrachys: apparently :) | 09:47 |
*** roeyc has joined #openstack-neutron | 09:48 | |
ihrachys | mattt: can we validate a fix using depends-on? | 09:48 |
mattt | ihrachys: so in our neutron gate, we just do some rudimentary neutron cli things | 09:48 |
mattt | ihrachys: the issue only surfaces when you actually try to ssh into an instance, as is done w/ tempest | 09:49 |
ihrachys | mattt: ok now I see you have more mtu hacks there | 09:49 |
ihrachys | mattt: that I missed | 09:49 |
*** fawadkhaliq has quit IRC | 09:49 | |
*** fawadkhaliq has joined #openstack-neutron | 09:50 | |
*** jhershbe has quit IRC | 09:51 | |
ihrachys | mattt: https://review.openstack.org/317943 | 09:52 |
ihrachys | feel free to run with it | 09:52 |
ihrachys | I suggest you create some Depends-On patch to trigger the job that is failing for you and validate the fix | 09:52 |
* ihrachys should go thru all projects one more time to make sure they don't do nasty things with MTU | 09:52 | |
mattt | ihrachys: excellent, thank you ! | 09:53 |
ihrachys | mattt: full disclosure: I am not an ansible guy, so I can make silly mistakes in the code. | 09:53 |
ihrachys | I just removed things that seem wrong from neutron perspective. | 09:53 |
mattt | ihrachys: and i'm not a networking guy, so hopefully together we can get it right :) | 09:53 |
mattt | ihrachys: i will properly test this before it merges | 09:54 |
ihrachys | mattt: aye. thanks and sorry for the breakage. | 09:54 |
ihrachys | mattt: fyi the patch should be ok to backport as is to mitaka (from neutron perspective) | 09:55 |
ihrachys | (afaik you backported the original one there already) | 09:55 |
mattt | yep we did, i'll do the same here once i'm sure it's restored connectivity in our tempest tests | 09:56 |
mattt | thanks again ihrachys | 09:56 |
*** markvoelker has joined #openstack-neutron | 09:56 | |
ihrachys | mattt: cool. I am off for next hours. you can comment on the review with results if more attention from me is needed. | 09:56 |
mattt | ihrachys: sure, and i'll add the release notes on your behalf | 09:57 |
mattt | (since someone has chimed in already) | 09:57 |
*** nyechiel has quit IRC | 09:57 | |
ihrachys | thanks Matt | 09:58 |
*** matrohon has quit IRC | 09:59 | |
*** neiljerram has quit IRC | 09:59 | |
*** sdague has joined #openstack-neutron | 10:01 | |
*** neiljerram has joined #openstack-neutron | 10:01 | |
*** nmagnezi_ has joined #openstack-neutron | 10:02 | |
*** markvoelker has quit IRC | 10:02 | |
*** efoley_ has joined #openstack-neutron | 10:03 | |
*** gongysh has quit IRC | 10:03 | |
*** nmagnezi_ has quit IRC | 10:04 | |
*** efoley__ has quit IRC | 10:04 | |
*** ihrachys has quit IRC | 10:05 | |
*** jhershbe has joined #openstack-neutron | 10:06 | |
*** abregman|afk is now known as abregman | 10:08 | |
*** iwamoto has quit IRC | 10:09 | |
*** zhenmei has joined #openstack-neutron | 10:11 | |
*** mosulica has quit IRC | 10:13 | |
frickler | FYI, I did a writeup on how to deploy IPv6 using neutron-dynamic-routing, feedback welcome. https://cloudbau.github.io/openstack/neutron/networking/2016/05/17/neutron-ipv6.html | 10:13 |
*** nmagnezi has quit IRC | 10:13 | |
*** salv-orlando has quit IRC | 10:13 | |
*** korzen has quit IRC | 10:14 | |
*** EinstCrazy has quit IRC | 10:14 | |
*** obondarev_ has joined #openstack-neutron | 10:14 | |
*** korzen has joined #openstack-neutron | 10:16 | |
*** nmagnezi has joined #openstack-neutron | 10:17 | |
*** c64cosmin has quit IRC | 10:18 | |
openstackgerrit | venkata anil proposed openstack/neutron: fullstack: test for east west traffic https://review.openstack.org/307159 | 10:18 |
*** tbachman_ has joined #openstack-neutron | 10:18 | |
*** obondarev_ has quit IRC | 10:18 | |
*** salv-orlando has joined #openstack-neutron | 10:20 | |
*** tbachman has quit IRC | 10:22 | |
*** tbachman_ is now known as tbachman | 10:22 | |
*** rossella_s has quit IRC | 10:23 | |
*** rossella_s has joined #openstack-neutron | 10:24 | |
*** duobei has quit IRC | 10:27 | |
*** chag has joined #openstack-neutron | 10:27 | |
*** zhhuabj_ has quit IRC | 10:29 | |
*** boden has joined #openstack-neutron | 10:30 | |
*** srinii has joined #openstack-neutron | 10:33 | |
srinii | hi all pls help how to find neutron code flow .. | 10:34 |
*** efoley_ has quit IRC | 10:34 | |
*** chag is now known as chagatai | 10:35 | |
rossella_s | jlibosva, hi! :) | 10:38 |
jlibosva | rossella_s: hi | 10:38 |
rossella_s | jlibosva, is there a way to set the ovs firewall driver in devstack? | 10:38 |
jlibosva | rossella_s: yep, you can define it in local.conf to set the variable in config | 10:38 |
jlibosva | rossella_s: let me find an example | 10:38 |
rossella_s | jlibosva, great, thanks, I was too lazy for that :) | 10:39 |
*** obondarev_ has joined #openstack-neutron | 10:39 | |
*** Kimmo__ has joined #openstack-neutron | 10:39 | |
jlibosva | rossella_s: appending this should do the work: http://paste.openstack.org/show/497479/ | 10:40 |
jlibosva | rossella_s: to your local.conf | 10:40 |
rossella_s | jlibosva, thanks a lo | 10:42 |
jlibosva | rossella_s: np :) | 10:42 |
openstackgerrit | steve proposed openstack/neutron-dynamic-routing: Add devstack for neutron-dynamic-routing stadium project https://review.openstack.org/312038 | 10:42 |
*** duobei has joined #openstack-neutron | 10:43 | |
*** efoley_ has joined #openstack-neutron | 10:43 | |
openstackgerrit | Jakub Libosvar proposed openstack/neutron: [WIP] ovsdb: Reconnect when ovs poller gets stuck https://review.openstack.org/317369 | 10:43 |
*** Leo_ has joined #openstack-neutron | 10:50 | |
*** duobei has quit IRC | 10:50 | |
*** nplanel has quit IRC | 10:52 | |
*** moshele has quit IRC | 10:53 | |
openstackgerrit | Hong Hui Xiao proposed openstack/neutron: Enable create and delete segments in ML2 https://review.openstack.org/317358 | 10:54 |
*** Leo_ has quit IRC | 10:55 | |
*** moshele has joined #openstack-neutron | 10:56 | |
*** neil__ has joined #openstack-neutron | 10:56 | |
*** zhhuabj_ has joined #openstack-neutron | 10:57 | |
*** palexster1 has joined #openstack-neutron | 10:58 | |
*** nmagnezi has quit IRC | 10:59 | |
*** neiljerram has quit IRC | 11:00 | |
*** vikram has quit IRC | 11:01 | |
openstackgerrit | Inessa Vasilevskaya proposed openstack/neutron: functional: Run OVSFW tests with ovsdb native interface https://review.openstack.org/312670 | 11:02 |
openstackgerrit | Inessa Vasilevskaya proposed openstack/neutron: functional: fix OVSFW failure with native OVSDB api https://review.openstack.org/312697 | 11:02 |
*** palexster has quit IRC | 11:02 | |
*** nmagnezi has joined #openstack-neutron | 11:03 | |
*** nmagnezi has quit IRC | 11:03 | |
*** nmagnezi has joined #openstack-neutron | 11:03 | |
*** obondarev_ has quit IRC | 11:04 | |
*** cbouch has joined #openstack-neutron | 11:04 | |
*** mickeys has joined #openstack-neutron | 11:07 | |
*** mancdaz has quit IRC | 11:09 | |
*** mancdaz has joined #openstack-neutron | 11:09 | |
*** rtheis has joined #openstack-neutron | 11:11 | |
*** mickeys has quit IRC | 11:12 | |
*** andreas_s has joined #openstack-neutron | 11:12 | |
*** njohnsto_ has joined #openstack-neutron | 11:13 | |
*** korzen has quit IRC | 11:13 | |
*** nyechiel has joined #openstack-neutron | 11:13 | |
openstackgerrit | steve proposed openstack/neutron-dynamic-routing: Add devstack for neutron-dynamic-routing stadium project https://review.openstack.org/312038 | 11:14 |
*** fzdarsky is now known as fzdarsky|lunch | 11:17 | |
*** neil__ has quit IRC | 11:17 | |
*** njohnsto_ has quit IRC | 11:18 | |
*** neiljerram has joined #openstack-neutron | 11:18 | |
*** javeriak has quit IRC | 11:18 | |
*** javeriak_ has joined #openstack-neutron | 11:18 | |
openstackgerrit | venkata anil proposed openstack/neutron: fullstack: test for snat and floatingip https://review.openstack.org/317995 | 11:20 |
*** neiljerram has quit IRC | 11:21 | |
*** mosulica has joined #openstack-neutron | 11:21 | |
*** neiljerram has joined #openstack-neutron | 11:22 | |
*** gvrangan has quit IRC | 11:23 | |
*** neiljerram has quit IRC | 11:26 | |
*** njohnsto_ has joined #openstack-neutron | 11:27 | |
*** javeriak_ has quit IRC | 11:29 | |
*** jinxing has quit IRC | 11:30 | |
*** hoangcx has quit IRC | 11:31 | |
*** tbachman_ has joined #openstack-neutron | 11:32 | |
*** anteaya has joined #openstack-neutron | 11:32 | |
cbouch | Need one more core to +2 this https://review.openstack.org/#/c/297676/. It's been opened since March. | 11:34 |
*** tbachman has quit IRC | 11:35 | |
*** tbachman_ is now known as tbachman | 11:35 | |
*** thorst_ has joined #openstack-neutron | 11:35 | |
*** thorst__ has joined #openstack-neutron | 11:35 | |
*** yamamoto_ has quit IRC | 11:38 | |
garyk1 | jschwarz: did you enjoy the summit? rumor has it that you partied like it was 1984 | 11:38 |
gsagie | heh | 11:38 |
gsagie | he did, i saw | 11:38 |
*** lucasagomes is now known as lucas-hungry | 11:38 | |
garyk1 | :) | 11:39 |
*** thorst_ has quit IRC | 11:39 | |
*** julim has joined #openstack-neutron | 11:40 | |
*** nmagnezi has quit IRC | 11:40 | |
openstackgerrit | Jakub Libosvar proposed openstack/neutron: TESTINGONLY: Log ovsdb commands https://review.openstack.org/304600 | 11:40 |
*** obondarev_ has joined #openstack-neutron | 11:45 | |
*** baoli has joined #openstack-neutron | 11:45 | |
*** jpena is now known as jpena|lunch | 11:46 | |
*** baoli_ has joined #openstack-neutron | 11:46 | |
*** sudipto has quit IRC | 11:49 | |
*** mvk_ has quit IRC | 11:49 | |
*** reedip__ has quit IRC | 11:50 | |
*** baoli has quit IRC | 11:50 | |
* tbachman provides independent verfication that jschwarz did party like it was 1999 | 11:51 | |
*** matrohon has joined #openstack-neutron | 11:53 | |
ajo_ | apuimedo++ : ==> default: Successfully added box 'celebdor/trusty64' (v1.0.3) for 'libvirt'! | 11:54 |
ajo_ | thank you very much | 11:54 |
apuimedo | ajo_: please, try it out and let me know if it works ;-) | 11:55 |
ajo_ | apuimedo, doing :) | 11:55 |
apuimedo | it is now based on 14.04.4 | 11:55 |
*** pavel_bondar has quit IRC | 11:56 | |
*** boden has quit IRC | 11:56 | |
ajo_ | apuimedo, the issue was in the kernel (3.19.0.37 was buggy, this one comes with 4.2.0-36-generic.. ) I'm optimistic :D | 11:57 |
*** andreas_s_ has joined #openstack-neutron | 11:57 | |
*** rodrigods has quit IRC | 11:58 | |
*** obondarev_ has quit IRC | 11:58 | |
*** rodrigods has joined #openstack-neutron | 11:58 | |
apuimedo | good! | 11:58 |
openstackgerrit | Inessa Vasilevskaya proposed openstack/neutron: unit: fix ValueError on TransactionQueue init with py34 https://review.openstack.org/314742 | 12:00 |
openstackgerrit | Inessa Vasilevskaya proposed openstack/neutron: enable OVSDB native interface by default https://review.openstack.org/299655 | 12:00 |
openstackgerrit | Na Zhu proposed openstack/neutron-dynamic-routing: Add drivers document for neutron dynamic routing https://review.openstack.org/318006 | 12:00 |
*** boden has joined #openstack-neutron | 12:00 | |
*** dedery has joined #openstack-neutron | 12:02 | |
*** dedery has quit IRC | 12:03 | |
*** jckasper has joined #openstack-neutron | 12:03 | |
jschwarz | garyk1, lol | 12:04 |
*** malos has joined #openstack-neutron | 12:04 | |
jschwarz | garyk1, where did the rumor come from? | 12:04 |
jschwarz | tbachman, hey :) | 12:04 |
tbachman | jschwarz: :) | 12:04 |
* tbachman hands jschwarz a water | 12:04 | |
garyk1 | jschwarz: well, i got hourly updates in eilat... | 12:04 |
*** dedery has joined #openstack-neutron | 12:04 | |
openstackgerrit | Yu Jie proposed openstack/neutron: Egress sg_rules should get 'prefix' from 'dest_ip_prefix' https://review.openstack.org/254598 | 12:04 |
*** dedery_ has quit IRC | 12:05 | |
jschwarz | garyk1, lmao | 12:05 |
*** baohua has joined #openstack-neutron | 12:05 | |
openstackgerrit | Henry Gessau proposed openstack/neutron: Allow for excepted operations in migrations https://review.openstack.org/317733 | 12:05 |
*** baohua has quit IRC | 12:05 | |
*** mkolesni has quit IRC | 12:06 | |
*** mkolesni has joined #openstack-neutron | 12:07 | |
*** c64cosmin has joined #openstack-neutron | 12:08 | |
openstackgerrit | Merged openstack/python-neutronclient: tests: removed mocking for Client.get_attr_metadata https://review.openstack.org/317889 | 12:08 |
*** dedery has quit IRC | 12:09 | |
openstackgerrit | Henry Gessau proposed openstack/neutron: Allow for excepted operations in migrations https://review.openstack.org/317733 | 12:10 |
*** namnh has quit IRC | 12:10 | |
*** garyk1 has quit IRC | 12:13 | |
openstackgerrit | Merged openstack/python-neutronclient: Switched from fixtures.MonkeyPatch to mock.patch https://review.openstack.org/317890 | 12:13 |
openstackgerrit | Merged openstack/neutron: Check if pool update is needed in reference driver https://review.openstack.org/309067 | 12:13 |
rossella_s | jlibosva, can I bother you again...I'd like you to look quickly at https://review.openstack.org/#/c/273954/10/doc/source/devref/openvswitch_agent.rst and see if my comment makes sense, thanks! | 12:14 |
*** oanson has joined #openstack-neutron | 12:14 | |
*** obondarev_ has joined #openstack-neutron | 12:14 | |
rossella_s | jlibosva, but quickly I meant it should be quick, didn't mean to rush you. When you have time, no hurry :) | 12:15 |
jlibosva | rossella_s: will do, I have that review opened for a while with plan to go through it | 12:16 |
*** fawadkhaliq has quit IRC | 12:17 | |
*** efoley__ has joined #openstack-neutron | 12:17 | |
*** fawadkhaliq has joined #openstack-neutron | 12:18 | |
rossella_s | jlibosva, it's quite long...and I am working at another patch to add more implementation details. I just wanted a confirmation from you that my fear is real. | 12:18 |
rossella_s | jlibosva, I don't think we can use subinterfaces with ovs firewall out of the box...because the flow rules of the firewall strip the vlans while we want the tagged traffic to reach the vm | 12:18 |
*** mvk_ has joined #openstack-neutron | 12:19 | |
*** dedery has joined #openstack-neutron | 12:19 | |
*** dedery_ has joined #openstack-neutron | 12:20 | |
*** apoorv has quit IRC | 12:20 | |
*** efoley_ has quit IRC | 12:20 | |
*** nplanel has joined #openstack-neutron | 12:21 | |
*** palexster1 is now known as palexster | 12:22 | |
jlibosva | rossella_s: do you know if I can read somewhere what "VLAN interfaces" actually is? | 12:24 |
*** dedery has quit IRC | 12:24 | |
*** prateek has quit IRC | 12:24 | |
*** tpsilva has joined #openstack-neutron | 12:25 | |
openstackgerrit | Ilya Chukhnakov proposed openstack/neutron: OVO for VLAN aware VMs https://review.openstack.org/310410 | 12:25 |
*** raildo-afk is now known as raildo | 12:28 | |
*** njohnsto_ has quit IRC | 12:29 | |
openstackgerrit | Pavel Bondar proposed openstack/neutron: Remove nested transaction from ipam driver https://review.openstack.org/307329 | 12:30 |
openstackgerrit | Pavel Bondar proposed openstack/neutron: Make a copy of body in update request https://review.openstack.org/312577 | 12:30 |
*** links has quit IRC | 12:31 | |
openstackgerrit | Pavel Bondar proposed openstack/neutron: Switch to pluggable IPAM implementation https://review.openstack.org/181023 | 12:31 |
*** pavel_bondar has joined #openstack-neutron | 12:32 | |
*** lucas-hungry is now known as lucasagomes | 12:32 | |
pavel_bondar | garyk: Hi! Could you take a look at https://review.openstack.org/#/c/307329 ? | 12:34 |
*** links has joined #openstack-neutron | 12:35 | |
*** obondarev_ has quit IRC | 12:35 | |
*** prateek has joined #openstack-neutron | 12:37 | |
*** vikasc has quit IRC | 12:37 | |
*** Leo_ has joined #openstack-neutron | 12:38 | |
*** jhershbe has quit IRC | 12:40 | |
*** ihrachys has joined #openstack-neutron | 12:40 | |
*** salv-orlando has quit IRC | 12:42 | |
*** javeriak has joined #openstack-neutron | 12:42 | |
*** Leo_ has quit IRC | 12:43 | |
*** cbouch_ has joined #openstack-neutron | 12:45 | |
*** cbouch has quit IRC | 12:45 | |
*** akshai has joined #openstack-neutron | 12:45 | |
*** garyk1 has joined #openstack-neutron | 12:45 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/python-neutronclient: Constraint tox targets with upper-constraints.txt https://review.openstack.org/317909 | 12:46 |
*** akshai_ has joined #openstack-neutron | 12:47 | |
*** itamarl has joined #openstack-neutron | 12:48 | |
openstackgerrit | Margaret Frances proposed openstack/neutron: Refactor QoS plugin to avoid code duplication https://review.openstack.org/294463 | 12:49 |
*** akshai has quit IRC | 12:50 | |
*** roaet has quit IRC | 12:51 | |
*** neiljerram has joined #openstack-neutron | 12:53 | |
*** gtop-323 has joined #openstack-neutron | 12:53 | |
*** reedip__ has joined #openstack-neutron | 12:54 | |
*** ivc_ has quit IRC | 12:56 | |
*** jhershbe has joined #openstack-neutron | 12:57 | |
*** yamamoto has joined #openstack-neutron | 12:58 | |
*** roaet- has quit IRC | 12:58 | |
*** roaet has joined #openstack-neutron | 12:59 | |
*** srinii has quit IRC | 13:00 | |
*** manikanta_ has quit IRC | 13:00 | |
*** akamyshnikova has quit IRC | 13:01 | |
*** ranjithd has joined #openstack-neutron | 13:01 | |
*** jpena|lunch is now known as jpena | 13:02 | |
*** rbking_ has joined #openstack-neutron | 13:03 | |
*** efoley__ has quit IRC | 13:03 | |
*** matrohon has quit IRC | 13:03 | |
rbking_ | is there anyone has idea on why ARP reply is being blocked in compute node? | 13:03 |
*** edmondsw has joined #openstack-neutron | 13:04 | |
*** ivc_ has joined #openstack-neutron | 13:04 | |
*** njohnsto- has joined #openstack-neutron | 13:05 | |
*** njohnsto- is now known as njohnston-- | 13:06 | |
*** srampal has joined #openstack-neutron | 13:06 | |
*** baohua has joined #openstack-neutron | 13:06 | |
*** baohua has quit IRC | 13:07 | |
*** yfried_ has quit IRC | 13:08 | |
openstackgerrit | Andreas Scheuring proposed openstack/neutron-specs: Spec for distributed portbindings https://review.openstack.org/309416 | 13:08 |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: tests: validate sorting and pagination for networks https://review.openstack.org/306272 | 13:09 |
*** jreeves_afk is now known as jreeves | 13:09 | |
andreas_s | hi ihrachys, I wrote a simple devstack plugin for the macvtap agent. Would you mind having a quick look? sc68cal already gave his +1 .... https://review.openstack.org/#/c/303455 | 13:10 |
andreas_s | thanks! | 13:11 |
*** sudipto has joined #openstack-neutron | 13:11 | |
*** nmagnezi has joined #openstack-neutron | 13:11 | |
*** lindycoder has joined #openstack-neutron | 13:11 | |
openstackgerrit | Andreas Scheuring proposed openstack/neutron-specs: Spec for distributed portbindings https://review.openstack.org/309416 | 13:12 |
ihrachys | andreas_s: hm. I may something, but don't you redefine functions from devstack? | 13:13 |
ihrachys | and you do it for all plugin users?.. | 13:13 |
andreas_s | ihrachys, you mean all that placeholder functions that I defined? | 13:14 |
ihrachys | yes | 13:15 |
ihrachys | seems like you overriding something with empty bodies? | 13:15 |
ajo_ | I had the same thought | 13:16 |
ajo_ | andreas_s, ihrachys | 13:16 |
andreas_s | ihrachys, I don't think that I'm overriding something (must admit I don't know). But his is the minimal interface I had to provide.. | 13:16 |
*** nmagnezi has quit IRC | 13:16 | |
*** links has quit IRC | 13:16 | |
*** brad_behle has joined #openstack-neutron | 13:17 | |
*** thorst__ is now known as thorst_ | 13:17 | |
andreas_s | but let me have a look at the devstack plugin mechanism again - it's been a while.... | 13:18 |
ihrachys | andreas_s: so what happens for other plugins? it seems like you define the interface (btw where is the interface described?) for all setups. | 13:19 |
andreas_s | ihrachys, let me clarify this and then I'll come back to you! | 13:19 |
andreas_s | thanks! | 13:19 |
*** jhershbe has quit IRC | 13:19 | |
*** reedip__ has quit IRC | 13:20 | |
*** sudipto has quit IRC | 13:22 | |
*** sudipto has joined #openstack-neutron | 13:25 | |
moshele | ajo: hi | 13:25 |
moshele | ajo_: hi | 13:26 |
*** edand has joined #openstack-neutron | 13:26 | |
ajo_ | hi moshele | 13:26 |
*** akshai_ has quit IRC | 13:27 | |
moshele | ajo_: did you test the ovs qos when deleting vm ? does it remove the openflow rules? | 13:28 |
*** banix has joined #openstack-neutron | 13:29 | |
*** jckasper has quit IRC | 13:29 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: tests: don't monkey patch stdlib for eventlet for neutron.tests.common https://review.openstack.org/318086 | 13:29 |
*** amuller has joined #openstack-neutron | 13:29 | |
ihrachys | HenryG: ^ that cleanup we talked about | 13:29 |
*** jckasper has joined #openstack-neutron | 13:30 | |
moshele | ajo_: I am asking because we see that in the ext_manger in ovs port is None in https://github.com/openstack/neutron/blob/master/neutron/plugins/ml2/drivers/openvswitch/agent/ovs_neutron_agent.py#L451 | 13:30 |
*** tonytan4ever has joined #openstack-neutron | 13:31 | |
*** matrohon has joined #openstack-neutron | 13:31 | |
moshele | ajo_: and I think nova code delete the port before calling the self.int_br.get_vif_port_by_id(port_id) | 13:31 |
*** akshai has joined #openstack-neutron | 13:31 | |
moshele | ajo_: see https://github.com/openstack/nova/blob/master/nova/virt/libvirt/vif.py#L786 | 13:32 |
*** jckasper has quit IRC | 13:32 | |
akshai | hello. have a straight forward question. how do i change network type from vxlan to vlan? which configuration files? (RDO-mitaka) | 13:32 |
*** jckasper has joined #openstack-neutron | 13:32 | |
ajo_ | hmmm | 13:33 |
*** ranjithd has quit IRC | 13:33 | |
*** ranjithd1 has joined #openstack-neutron | 13:33 | |
ajo_ | moshele, so may be the rules are left there | 13:33 |
ajo_ | ok, that's a bug | 13:33 |
ajo_ | moshele, let's talk about it in the meeting in 30m, an share it with njohnston njohnston-- | 13:34 |
moshele | ajo_: ok? | 13:34 |
moshele | ajo_: ok | 13:34 |
*** dedery_ has quit IRC | 13:34 | |
ajo_ | moshele, I guess that we will have to enhance the mechanism to have some memory of the ports it had, for those cases | 13:35 |
*** kbringard has joined #openstack-neutron | 13:37 | |
*** vhosakot has joined #openstack-neutron | 13:39 | |
ajo_ | ping njohnston-- njohnston_ njohnston | 13:39 |
ajo_ | you come in many forms :D | 13:39 |
*** lbragstad_ is now known as lbragstad | 13:39 | |
*** jobewan has joined #openstack-neutron | 13:40 | |
ajo_ | apuimedo, btw, your trusty64 box worked wonderfully with libvirt ;) | 13:40 |
apuimedo | ajo_: yay!!! | 13:41 |
apuimedo | Thanks a lot for the troubleshooting! | 13:41 |
vinc | akshai: straight forward response : you can't via config file modifications | 13:41 |
ajo_ | apuimedo, thank *you* :) | 13:41 |
openstackgerrit | bin proposed openstack/neutron: [WIP]move dns related data field to dnsports https://review.openstack.org/313291 | 13:41 |
vinc | akshai: from my last in-place upgrade, you can, but it invlove editing the db records | 13:42 |
*** jamesdenton has joined #openstack-neutron | 13:42 | |
ihrachys | mattt: any ideas why ci is failing at https://review.openstack.org/#/c/317943/ ? | 13:42 |
vinc | akshai: else you need to delete then recreate your networks with the correct type | 13:42 |
ihrachys | does not seem relevant to my patch | 13:42 |
ihrachys | some apt deps failure? | 13:42 |
njohnston-- | ajo_: Yes, for some reason I have ghosts. | 13:42 |
mattt | ihrachys: yeah, it's unrelated to your change | 13:43 |
*** hichihara has joined #openstack-neutron | 13:43 | |
ihrachys | ok, I assume you will get it to success :) | 13:43 |
*** salv-orlando has joined #openstack-neutron | 13:43 | |
akshai | vinc: i see that plugin.ini openvswitch.ini have entries for vxlan | 13:43 |
mattt | ihrachys: yep! i'm hitting the same issue trying to test this locally :( leave it with me :) | 13:43 |
akshai | brand new setup. so i don't have any networking configured. | 13:43 |
ihrachys | happy to do just that ;) | 13:43 |
*** ygbo has quit IRC | 13:45 | |
vinc | akshai: indeed, you may choose the right mechanism for you (gre,vxlan,vlan...) | 13:46 |
vinc | options are in ml2_conf.ini : [ml2] type_drivers | 13:48 |
*** ametts has joined #openstack-neutron | 13:49 | |
vinc | akshai: http://docs.openstack.org/mitaka/install-guide-rdo/neutron-controller-install-option2.html | 13:49 |
akshai | vinc: got it. what abount openvswitch_agent.ini? | 13:49 |
akshai | vinc: tunnel_types = vxlan | 13:50 |
vinc | vxlan is the only supported option for linuxbridge agent | 13:50 |
*** dedery has joined #openstack-neutron | 13:51 | |
*** fzdarsky|lunch is now known as fzdarsky | 13:51 | |
vinc | (by memory) if you want to use vlan or gre, you must use [ml2]mechanism_drivers=openvswitch | 13:51 |
vinc | refer to the installation guide of juno that describes this | 13:52 |
akshai | vinc: ok thx. but is that the only change needed? | 13:52 |
*** dedery_ has joined #openstack-neutron | 13:52 | |
vinc | you may install the openvswitch package instead of the linuxbridge one | 13:52 |
*** oanson has quit IRC | 13:52 | |
akshai | vinc: yes, that's what i'm using | 13:53 |
*** mlavalle has joined #openstack-neutron | 13:54 | |
*** itzikb has quit IRC | 13:54 | |
vinc | akshai: maybe the bridge_mapping stuff | 13:54 |
vinc | akshai: and firewall_driver... | 13:54 |
*** irenab has quit IRC | 13:54 | |
andreas_s | ajo_, ihrachys: you're right! I'm overriding the methods of other agents. The problem is that I'm sourcing the macvtap file unconditionally. | 13:55 |
*** dedery has quit IRC | 13:55 | |
*** donghao has joined #openstack-neutron | 13:56 | |
andreas_s | probably the CI didn't fail, as it does not enable the neutron devstack plugin... that's the only explanation I have for this.. | 13:56 |
*** doug-fish has joined #openstack-neutron | 13:57 | |
andreas_s | ajo_, ihrachys thanks for pointing me to this - I will push another version later the day! | 13:57 |
ihrachys | andreas_s: the plugin is used in api job at least. | 13:58 |
ihrachys | andreas_s: but there, maybe you just disable most tests, so they don't fail or something | 13:58 |
*** cbouch__ has joined #openstack-neutron | 13:58 | |
andreas_s | ihrachys, It's non voting - that's why I didn't care.. | 13:58 |
ihrachys | api? | 13:58 |
*** ankur-gupta-f1 has joined #openstack-neutron | 13:58 | |
*** rickyrem1 has joined #openstack-neutron | 13:59 | |
andreas_s | ihrachys, gate-neutron-dsvm-apiFAILURE in 15m 09s (non-voting) | 13:59 |
andreas_s | or maybe it was | 13:59 |
andreas_s | 3 weeks ago | 13:59 |
ihrachys | oh | 13:59 |
ihrachys | that's depressing | 13:59 |
ihrachys | I hope it was re-enabled | 13:59 |
*** absubram has quit IRC | 13:59 | |
ihrachys | since then | 13:59 |
*** dave-mccowan has joined #openstack-neutron | 13:59 | |
tmorin | hi folks | 14:00 |
*** njohnston-- is now known as njohnston__ | 14:00 | |
tmorin | I'm trying to get the full debug logs to understand what goes wrong in a unit test, but "OS_DEBUG=1 tox -epy27" does not do what I hope it would | 14:00 |
andreas_s | ihrachys, yes it is! | 14:00 |
sc68cal | ihrachys: what's up | 14:00 |
tmorin | what should I be doing instead ? | 14:00 |
*** pradk has joined #openstack-neutron | 14:00 | |
ajo_ | * QoS meeting on #openstack-meeting-3 * ;) | 14:00 |
ihrachys | sc68cal: howdy! | 14:00 |
*** singhj has joined #openstack-neutron | 14:01 | |
sc68cal | vinc: linux bridge supports more than vxlan | 14:01 |
ihrachys | sc68cal: I am trying to do some gate hook changes, and I struggle to make all I need to work :) | 14:01 |
ihrachys | sc68cal: basically, I have multiple [[post-config]] sections in local.conf | 14:01 |
sc68cal | ihrachys: uh oh | 14:01 |
*** roaet has quit IRC | 14:01 | |
ihrachys | for the same file | 14:01 |
ihrachys | and one of them is not applied | 14:01 |
ihrachys | the one that sets options in a section that is not DEFAULT | 14:01 |
sc68cal | ihrachys: link? | 14:01 |
ihrachys | sc68cal: well, the code is at https://review.openstack.org/#/c/306272/ | 14:02 |
*** srampal has quit IRC | 14:02 | |
*** sridhar_ram has joined #openstack-neutron | 14:02 | |
*** ankur-gupta-f1 has left #openstack-neutron | 14:02 | |
*** cbouch_ has quit IRC | 14:02 | |
ihrachys | sc68cal: but I play with it locally | 14:02 |
*** javeriak has quit IRC | 14:02 | |
vinc | sc68cal: sorry i was just quoting the mitaka install guide : "The Linux bridge agent only supports VXLAN overlay networks." | 14:02 |
vinc | sc68cal: found here http://docs.openstack.org/mitaka/install-guide-rdo/neutron-controller-install-option2.html | 14:02 |
tmorin | common folks, I'm sure one of you knows how to get full debug with tox ! ;) ^^ | 14:02 |
sc68cal | Sam-I-Am: ^ looks like something dumb snuck in | 14:02 |
*** vishwanathj has joined #openstack-neutron | 14:03 | |
akshai | vinc: thx. i'll see how it goes | 14:03 |
*** yamahata has joined #openstack-neutron | 14:04 | |
sc68cal | ihrachys: paste.o.o your local.conf? | 14:04 |
ihrachys | tmorin: it's easy! . .tox/py27/bin/activate && python -m testtools.run <TEST> :D | 14:04 |
Sam-I-Am | sc68cal: wat | 14:04 |
*** janzian has joined #openstack-neutron | 14:04 | |
*** roaet_ has joined #openstack-neutron | 14:04 | |
ihrachys | sc68cal: http://paste.fedoraproject.org/367975/58031014/ | 14:05 |
jschwarz | obondarev, heya, re: https://review.openstack.org/#/c/285480/27 | 14:05 |
ihrachys | the one not applied is line 40 | 14:05 |
*** ArchiFleKs has quit IRC | 14:05 | |
ihrachys | others apply fine | 14:05 |
*** roaet_ has quit IRC | 14:05 | |
tmorin | ihrachys: I still don't get any of the LOG.debug/info statements | 14:06 |
ihrachys | and in the devstack log, I see only post-config for sorting/pagination sections logged | 14:06 |
*** roaet_ has joined #openstack-neutron | 14:06 | |
sc68cal | ihrachys: I think because you can't use $NEUTRON_CONF yet in local.conf | 14:06 |
ihrachys | tmorin: have you set default_log_levels = neutron=DEBUG ? | 14:06 |
ihrachys | or similar | 14:06 |
*** ralonsoh has joined #openstack-neutron | 14:06 | |
ihrachys | sc68cal: can't I? it works fine for DEFAULT sections though? | 14:07 |
*** ralonsoh has quit IRC | 14:07 | |
sc68cal | ihrachys: it's always been /Q_PLUGIN_CONF_FILE - http://docs.openstack.org/developer/devstack/configuration.html | 14:07 |
*** roaet_ has quit IRC | 14:07 | |
ihrachys | plugin is a different beast though | 14:07 |
ihrachys | even if read by server too | 14:07 |
sc68cal | hmm | 14:07 |
*** roaet_ has joined #openstack-neutron | 14:08 | |
ihrachys | but I can try for sure | 14:08 |
davidsha | #join openstack-meeting-3 | 14:08 |
*** salv-orlando has quit IRC | 14:09 | |
sc68cal | that'll stick it in the wrong file, but I don't see any examples documented for $NEUTRON_CONF for local.conf | 14:09 |
sc68cal | so yeah we need to hunt that down | 14:09 |
*** roaet_ is now known as roaet | 14:09 | |
*** mickeys has joined #openstack-neutron | 14:10 | |
sc68cal | ihrachys: in the meantime open a bug in devstack for this, we should def track down and fix | 14:10 |
*** links has joined #openstack-neutron | 14:10 | |
*** roaet has quit IRC | 14:10 | |
*** iyamahat has joined #openstack-neutron | 14:10 | |
*** ygbo has joined #openstack-neutron | 14:10 | |
tmorin | ihrachys: I don't know where to set "default_log_levels = neutron=DEBUG" -- :-( | 14:10 |
*** ankur-gupta-f1 has joined #openstack-neutron | 14:11 | |
*** mkolesni has quit IRC | 14:11 | |
ihrachys | sc68cal: huh! I just changed the order a bit, and it worked fine! | 14:11 |
sc68cal | wut. | 14:11 |
ihrachys | sc68cal: actually, the version that I posted to you worked, I moved quotas section to the start to get it working | 14:11 |
ihrachys | lemme check if all applied | 14:11 |
ihrachys | or just that one | 14:11 |
sc68cal | yeah, you have $NEUTRON_CONF twice in that local.conf you shared, so I don't know how it handles collisions | 14:11 |
ihrachys | huh, all applied | 14:11 |
tmorin | ihrachys: do I have to create a networking_bgpvpn/tests/etc/neutron.conf file ? | 14:12 |
tmorin | ihrachys: sorry, for the newbie questions... | 14:12 |
ihrachys | so there is some ordering issue I guess. I will retry with previous order to make sure | 14:12 |
*** roaet has joined #openstack-neutron | 14:12 | |
ihrachys | tmorin: maybe. or set it with set_override in your setUp() | 14:12 |
*** vhosakot has quit IRC | 14:12 | |
ihrachys | tmorin: I *think* that's the way to do it, but I can't be sure | 14:12 |
*** vhosakot has joined #openstack-neutron | 14:13 | |
*** srampal has joined #openstack-neutron | 14:13 | |
*** fnaval_ has joined #openstack-neutron | 14:13 | |
*** roaet has quit IRC | 14:14 | |
*** roaet has joined #openstack-neutron | 14:14 | |
*** mickeys has quit IRC | 14:14 | |
*** roaet has quit IRC | 14:14 | |
tmorin | ihrachys: but can't this be overriden with env variables ? | 14:14 |
*** daneyon has joined #openstack-neutron | 14:14 | |
rbking_ | hi, do anyone know why ARP reply is blocked? | 14:15 |
*** dane_leblanc_ has joined #openstack-neutron | 14:16 | |
*** jbell8 has joined #openstack-neutron | 14:16 | |
*** daneyon_ has joined #openstack-neutron | 14:16 | |
*** fnaval has quit IRC | 14:16 | |
Sam-I-Am | rbking_: in what sense? | 14:16 |
ihrachys | tmorin: define *this* | 14:17 |
ihrachys | tmorin: oslo.config configuration options? no. | 14:17 |
rbking_ | Hello Sam-I-Am | 14:17 |
rbking_ | my case is that | 14:17 |
rbking_ | I have two instances | 14:17 |
rbking_ | each instance is in a different compute node | 14:17 |
rbking_ | one instance1, I have interface IP and one virtual IP | 14:17 |
rbking_ | on instance2, I have interface IP only | 14:18 |
tmorin | ihrachys: this : default log level ... | 14:18 |
*** dank_ has joined #openstack-neutron | 14:18 | |
rbking_ | so, when instance2 ping instance1 on interface IP, no issue | 14:18 |
*** iyamahat has quit IRC | 14:18 | |
*** garyk1 has quit IRC | 14:18 | |
ihrachys | tmorin: it's configured thru oslo.config, so I guess no. | 14:18 |
rbking_ | but when instance2 ping the virtual IP on instance1, it failed | 14:18 |
*** yamahata has quit IRC | 14:18 | |
rbking_ | I further check on both compute nodes using packet dump | 14:19 |
ihrachys | tmorin: we override it with neutron.conf that we pass into CONF.init() | 14:19 |
ihrachys | tmorin: but you can do that with set_override, I think | 14:19 |
*** claudiub has quit IRC | 14:19 | |
*** doug-fis_ has joined #openstack-neutron | 14:19 | |
tmorin | ihrachys: I can't be the only one needing this, right ? how do people usually run a unit test with full debug on ? do you change a .py file each time ? | 14:19 |
rbking_ | I found that ARP reply is presented on the compute node hosting instance1 | 14:19 |
ihrachys | I actually don't like how we mess with real config files for unit tests in neutron, so I suggest you use set_override | 14:19 |
rbking_ | but this ARP reply is not found in the compute node hosting instance21 | 14:19 |
rbking_ | instance2 | 14:19 |
rbking_ | any idea? | 14:19 |
ihrachys | tmorin: I assume your question is NOT about neutron repos? | 14:20 |
ihrachys | tmorin: because if it is, then the config file does not work for some reason, and we may have a bug | 14:20 |
*** roaet has joined #openstack-neutron | 14:20 | |
*** daneyon has quit IRC | 14:20 | |
*** Prem_ has joined #openstack-neutron | 14:20 | |
*** doug-fish has quit IRC | 14:21 | |
Sam-I-Am | rbking_: are you using l2pop? | 14:23 |
tmorin | ihrachys: yes, it's about networking_bgpvpn | 14:23 |
Sam-I-Am | or ovs with local arp features | 14:23 |
*** vhoward has joined #openstack-neutron | 14:23 | |
*** rossella_s has quit IRC | 14:23 | |
*** rohit121003 has joined #openstack-neutron | 14:24 | |
rbking_ | the setup is running the Redhat openstack versopm | 14:24 |
rbking_ | and I beleived it is OVS | 14:24 |
Sam-I-Am | versopm? | 14:24 |
rbking_ | type version | 14:24 |
Sam-I-Am | version? | 14:24 |
*** rossella_s has joined #openstack-neutron | 14:24 | |
rbking_ | yes | 14:24 |
Sam-I-Am | you'd have to look at its neutron config | 14:24 |
ihrachys | tmorin: ok. so do you inherit from neutron base test class, or have your own? if the latter, then you just need to set your base class to set proper debug level. | 14:25 |
*** Guest92292 is now known as mgagne | 14:25 | |
ihrachys | sc68cal: validated: order matters. | 14:25 |
*** mgagne has quit IRC | 14:25 | |
*** mgagne has joined #openstack-neutron | 14:25 | |
ihrachys | WEIRDO | 14:25 |
ihrachys | so actually in gate hook I have, it will probably work since I put quotas stuff before other hooks | 14:25 |
ihrachys | so magic | 14:26 |
rbking_ | um? | 14:26 |
*** ivc_ has quit IRC | 14:26 | |
*** ivase has joined #openstack-neutron | 14:26 | |
sc68cal | is there a reason why you have [[localrc|$NEUTRON_CONF]] twice instead of once? | 14:26 |
openstackgerrit | Ryan Moats proposed openstack/neutron: Add OSprofiler support https://review.openstack.org/273951 | 14:26 |
tmorin | ihrachys: the test classes I'm playing with inherit from various neutron test classes (I assume these all inherit from neutron base test classes) | 14:26 |
ihrachys | sc68cal: see in https://review.openstack.org/#/c/306272/ how we split matters per hook | 14:26 |
*** Leo_ has joined #openstack-neutron | 14:26 | |
ihrachys | each hook does its own piece of configuration | 14:26 |
ihrachys | there are 3 hooks right now for the patch | 14:27 |
*** Swami has joined #openstack-neutron | 14:27 | |
ihrachys | tmorin: then it should have worked. | 14:27 |
ihrachys | or I totally miss the intent of the neutron.conf | 14:27 |
ihrachys | :) | 14:27 |
rbking_ | can give some hinits? | 14:27 |
openstackgerrit | Shannon McFarland proposed openstack/neutron: Fix broken availability-zone URL in Mitaka Neutron release note https://review.openstack.org/318134 | 14:27 |
sc68cal | right, but I mean is the fact that you have it a L40 and L67 causing some wierdness - http://paste.fedoraproject.org/367975/58031014/ | 14:27 |
tmorin | ihrachys: hmm... | 14:28 |
Sam-I-Am | rbking_: you need to explain what sort of config you're using a few more details about the problem | 14:28 |
ihrachys | sc68cal: yeah, but that's the result of https://review.openstack.org/#/c/306272/10/neutron/tests/contrib/gate_hook.sh line 62+ | 14:28 |
sc68cal | ah | 14:29 |
rbking_ | ok. understood. actually, the environment is not setup by me... seems I need to go deeper and check the info | 14:29 |
ihrachys | sc68cal: and btw the exact version on fpaste I gave WORKS | 14:29 |
openstackgerrit | John Schwarz proposed openstack/neutron: Remove auto_schedule_routers codepath https://review.openstack.org/285480 | 14:29 |
ihrachys | sc68cal: the one that does not | 14:29 |
ihrachys | http://paste.fedoraproject.org/367987/14635817/ | 14:29 |
ihrachys | note quotas section a bit below | 14:30 |
sc68cal | hmm, that seems super super fragile | 14:30 |
*** Leo_ has quit IRC | 14:31 | |
*** jschwarz_ has joined #openstack-neutron | 14:31 | |
ihrachys | right. I am gonna add a huge warning in the hook saying the order matters, with a link to a bug. | 14:31 |
*** ArchiFleKs has joined #openstack-neutron | 14:32 | |
*** ivc_ has joined #openstack-neutron | 14:32 | |
tmorin | ihrachys: I've just tried to set "debug = True" in .tox/py27/src/neutron/neutron/tests/etc/neutron.conf -- but it's no better | 14:32 |
ihrachys | I suspect the awk code that handles config merge has some bug, I just struggle understanding this piece of magic. | 14:32 |
*** jschwarz has quit IRC | 14:33 | |
*** haukebruno has quit IRC | 14:34 | |
*** salv-orlando has joined #openstack-neutron | 14:35 | |
ihrachys | oh man, I just saw that: https://github.com/openstack-dev/devstack/blob/master/inc/meta-config#L99 | 14:35 |
ihrachys | not sure I am thrilled or depressed now | 14:35 |
*** marios is now known as marios|call | 14:35 | |
*** doug-fis_ has quit IRC | 14:35 | |
Sam-I-Am | always go for depressed :) | 14:35 |
ihrachys | that's a safe choice :( | 14:36 |
*** daneyon_ has quit IRC | 14:36 | |
*** nplanel has quit IRC | 14:37 | |
ihrachys | WHY. WHY IT'S IN AWK. | 14:37 |
*** ankur-gupta-f1 has quit IRC | 14:38 | |
*** a_ta has joined #openstack-neutron | 14:38 | |
andreas_s | rkukura, Hi Bob, just FYI, I uploaded the spec for the distributed portbinding: https://review.openstack.org/309416 | 14:38 |
tmorin | ihrachys: I've tried ". .tox/py27/bin/activate && python -m testtools.run <some-test>" in neutron repo, but I don't get any log either (even after tweaking neutron/tests/etc/neutron.conf) | 14:38 |
Sam-I-Am | andreas_s: hey | 14:38 |
*** links has quit IRC | 14:39 | |
ihrachys | tmorin: not sure what's going on there. try to set use_stderr = True? | 14:39 |
Sam-I-Am | andreas_s: curious about the macvtap scenario in the networking guide | 14:40 |
Sam-I-Am | andreas_s: from what i can tell, it probably doesnt actually work | 14:40 |
andreas_s | Sam-I-Am, ok, what's the issue? | 14:40 |
* ihrachys just noticed zuul does not allow to see jenkins logs while jobs are running anymore :-| | 14:41 | |
Sam-I-Am | it sort of says use one of the conventional scenarios, then add macvtap. can it work in parallel with other scenarios (other mechanisms) or does it need to be by itself? | 14:41 |
*** ivase has quit IRC | 14:41 | |
*** jamesdenton has quit IRC | 14:41 | |
andreas_s | Sam-I-Am, the controller/network node needs to run ovs or lb. The compute node just the macvtap agent | 14:42 |
*** javeriak has joined #openstack-neutron | 14:42 | |
haleyb_ | rbking_: one question - is this an IP you just added in the instance using /sbin/ip ? Or is it an allowed-address-pair IP ? The first isn't supported and neutron will have inserted rules to drop spoofed traffic since it doesn't know about the IP | 14:43 |
rbking_ | haleyb | 14:43 |
Sam-I-Am | andreas_s: ok, in the current docs, the controller node has the macvtap and linuxbridge mech drivers | 14:43 |
rbking_ | exactly on what u guess | 14:44 |
*** haleyb_ is now known as haleyb | 14:44 | |
Sam-I-Am | andreas_s: also looks like its flat/vlan only? in which case networks attach directly to compute nodes? | 14:44 |
rbking_ | so how I can add the floating IP? | 14:44 |
*** daneyon has joined #openstack-neutron | 14:44 | |
andreas_s | Sam-I-Am, yes, you need both mech drivers loaded | 14:44 |
andreas_s | on the controller | 14:44 |
Sam-I-Am | andreas_s: ok. does it support routers and self-service/project nets, or just provider nets? | 14:45 |
*** garyk has quit IRC | 14:45 | |
andreas_s | only classic routers, where routers are implemented via lb/ovs on the network gateway | 14:45 |
andreas_s | Sam-I-Am, dvr (on compute nodes)is not supported | 14:46 |
haleyb | rbking_: floating IP is added either via the CLI (neutron floatingip-associate) or horizon dashboard. The VM actually has no knowledge of that IP, so it's not configured locally | 14:46 |
tmorin | ihrachys: no better with "use_stderr = True" in neutron.conf :-( | 14:46 |
Sam-I-Am | andreas_s: ok, thats making more sense now | 14:46 |
andreas_s | Sam-I-Am, self service network only vlan! | 14:46 |
Sam-I-Am | that also makes sense | 14:46 |
andreas_s | provider flat + vlan | 14:46 |
rbking_ | um | 14:46 |
Sam-I-Am | is it recommended to use only provider nets if possible? | 14:46 |
rbking_ | but actually this floating is hosting by a linux cluster | 14:47 |
rbking_ | I setup a linux cluster inside two instances in actual | 14:47 |
andreas_s | Sam-I-Am, no. In fact there's no difference for the driver/agent if it is a provider network or not | 14:47 |
rbking_ | so it is not supported in openstack? | 14:47 |
andreas_s | Sam-I-Am, the only restriction with that is, that vxlan and gre are not supported | 14:47 |
Sam-I-Am | andreas_s: ok, thx. might have more questions for you, but i'll probably be updating the scenario a bit soon. | 14:47 |
andreas_s | Sam-I-Am, cool! Any questions are welcome! I would be happy to help out! | 14:48 |
Sam-I-Am | andreas_s: thx. i'll tag you in the review. | 14:48 |
andreas_s | Sam-I-Am, perfect, thanks! | 14:49 |
haleyb | rbking_: then you're talking about allowed-address-pairs ? I think maybe we're just mis-communicating based on what "floating IP" means. So perhaps a better description is necessary | 14:49 |
rbking_ | um | 14:49 |
rbking_ | I run linux cluster in two instances | 14:49 |
rbking_ | and this linux cluster will host a floating IP | 14:49 |
rbking_ | I believed it is use "ip addr add" | 14:50 |
haleyb | rbking_: in neutron, a floating IP is not added directly to the instance, it is added on the gateway and NAT is performed to the instance it's mapped to. So we're talking two different things. | 14:51 |
rbking_ | yes | 14:52 |
haleyb | rbking_: something like http://blog.aaronorosen.com/implementing-high-availability-instances-with-neutron-using-vrrp/ is what you're doing ? | 14:53 |
*** srampal has quit IRC | 14:53 | |
Sam-I-Am | another blog post that looks useful for the networking guide | 14:54 |
*** javeriak has quit IRC | 14:55 | |
*** ankur-gupta-f1 has joined #openstack-neutron | 14:55 | |
haleyb | Sam-I-Am: that was just at the top of google, nothing on docs.o.o was on the first page, there must be something there describing this | 14:56 |
*** raildo is now known as raildo-afk | 14:56 | |
*** srampal has joined #openstack-neutron | 14:56 | |
*** hockeynut_afk is now known as hockeynut | 14:56 | |
haleyb | Sam-I-Am: small section on http://docs.openstack.org/admin-guide/networking_introduction.html and it even uses "floats an IP address" | 14:57 |
*** dedery has joined #openstack-neutron | 14:58 | |
haleyb | "floats" maybe isn't the best choice there | 14:58 |
Sam-I-Am | haleyb: yeah, the admin guide is pretty much defunct with network stuff | 14:59 |
Sam-I-Am | there is nothing in the docs describing vm ha using vrrp | 14:59 |
tmorin | ihrachys: quite frustrating to not found a solution -- I really don't get how you people usually enable full logs when replaying a failing test... I can't be the only one needing that, right ? | 15:00 |
*** matrohon has quit IRC | 15:00 | |
dasm | ihrachys: thanks for explanation about the gate problem. i thought it's just ksc v3. problem, but it's much deeper. | 15:00 |
dasm | ihrachys: didn't have enough time to investigate it, thou | 15:00 |
*** slaweq has quit IRC | 15:00 | |
*** tonytan4ever has quit IRC | 15:01 | |
*** dedery_ has quit IRC | 15:01 | |
*** gvrangan has joined #openstack-neutron | 15:02 | |
*** sridhar_ram has quit IRC | 15:02 | |
*** jistr is now known as jistr|mtg | 15:02 | |
*** fnaval_ has quit IRC | 15:03 | |
*** anilvenkata has quit IRC | 15:04 | |
*** mfranc213_ has quit IRC | 15:04 | |
*** njohnston_ has quit IRC | 15:04 | |
*** c64cosmin has quit IRC | 15:04 | |
*** fawadkhaliq has quit IRC | 15:04 | |
*** numans has quit IRC | 15:05 | |
*** mosulica has quit IRC | 15:05 | |
*** banix has quit IRC | 15:05 | |
*** cbouch_ has joined #openstack-neutron | 15:05 | |
*** salv-orlando has quit IRC | 15:05 | |
*** cbouch__ has quit IRC | 15:05 | |
*** hichihara has quit IRC | 15:05 | |
*** Sukhdev has joined #openstack-neutron | 15:06 | |
*** armax has joined #openstack-neutron | 15:06 | |
*** donghao has quit IRC | 15:07 | |
*** mfranc213 has joined #openstack-neutron | 15:07 | |
*** jbell8 has quit IRC | 15:08 | |
openstackgerrit | Kevin Benton proposed openstack/neutron: Restart dsnmasq on any network subnet change https://review.openstack.org/316615 | 15:09 |
ihrachys | HenryG: yay, https://review.openstack.org/#/c/306272/10 now properly updates tempest.conf (turned out that tempest.conf is rewritten after post-config, so moved its modification to post-extra) | 15:10 |
ihrachys | HenryG: jobs are still in gate, but I checked results for api job, tests are executed. | 15:11 |
*** doug-fish has joined #openstack-neutron | 15:11 | |
ihrachys | HenryG: not sure why the reverse thing does not hit the tests though | 15:11 |
*** Shahid__ has quit IRC | 15:12 | |
*** daneyon has quit IRC | 15:12 | |
*** andreas_s has quit IRC | 15:13 | |
*** daneyon has joined #openstack-neutron | 15:13 | |
*** roeyc has quit IRC | 15:14 | |
ihrachys | sc68cal: I reported https://bugs.launchpad.net/devstack/+bug/1583214 | 15:14 |
openstack | Launchpad bug 1583214 in devstack "post-config section order matters" [Undecided,New] | 15:14 |
*** Guest45469 is now known as brianstajkowski | 15:16 | |
*** fnaval has joined #openstack-neutron | 15:16 | |
*** jbell8 has joined #openstack-neutron | 15:17 | |
*** doug-fish has quit IRC | 15:17 | |
*** claudiub has joined #openstack-neutron | 15:18 | |
*** vikasc has joined #openstack-neutron | 15:19 | |
*** ArchiFleKs has quit IRC | 15:19 | |
*** marios|call is now known as marios | 15:19 | |
*** jistr|mtg is now known as jistr | 15:19 | |
*** oanson has joined #openstack-neutron | 15:20 | |
*** dedery has quit IRC | 15:20 | |
*** ajmiller has joined #openstack-neutron | 15:21 | |
*** edand has quit IRC | 15:22 | |
*** fawadkhaliq has joined #openstack-neutron | 15:23 | |
*** fawadkhaliq has quit IRC | 15:23 | |
*** ajmiller_ has joined #openstack-neutron | 15:24 | |
*** ramishra has quit IRC | 15:24 | |
*** njohnston has quit IRC | 15:24 | |
*** rcernin has quit IRC | 15:24 | |
*** doug-fis_ has joined #openstack-neutron | 15:25 | |
*** doug-fis_ has quit IRC | 15:25 | |
*** njohnston__ is now known as njohnston | 15:25 | |
amuller | ihrachys++ on resolving the tempest.conf issue, awesome that we can add neutron-specific tempest options now :) | 15:25 |
*** doug-fis_ has joined #openstack-neutron | 15:25 | |
*** jlibosva has quit IRC | 15:26 | |
*** prateek has quit IRC | 15:26 | |
*** itisha has joined #openstack-neutron | 15:26 | |
*** ajmiller has quit IRC | 15:27 | |
ihrachys | amuller: right. there is still some magic to dig around how devstack handles sections, but I will leave it up to devstack folks to resolve. | 15:27 |
ihrachys | we should just note that it may bite us later. | 15:28 |
*** jschwarz_ has quit IRC | 15:28 | |
*** jlibosva has joined #openstack-neutron | 15:28 | |
ihrachys | I will add a huge warning in the hook | 15:28 |
*** janzian has quit IRC | 15:28 | |
openstackgerrit | Shannon McFarland proposed openstack/neutron: Fix broken URL in Mitaka Neutron release note https://review.openstack.org/318134 | 15:29 |
*** daneyon has quit IRC | 15:30 | |
*** salv-orlando has joined #openstack-neutron | 15:31 | |
*** vinaypotluri has joined #openstack-neutron | 15:33 | |
*** abregman is now known as abregman|afk | 15:33 | |
*** Sukhdev has quit IRC | 15:34 | |
*** fawadkhaliq has joined #openstack-neutron | 15:34 | |
*** Leo_ has joined #openstack-neutron | 15:35 | |
*** gangil has joined #openstack-neutron | 15:36 | |
*** SteffanW has joined #openstack-neutron | 15:36 | |
*** dmk0202 has quit IRC | 15:37 | |
*** sridharg has quit IRC | 15:37 | |
*** dmk0202 has joined #openstack-neutron | 15:37 | |
*** ajmiller_ has quit IRC | 15:38 | |
*** srampal has quit IRC | 15:38 | |
dasm | ihrachys: gate is complaining about your fix for stable/liberty. it misse pushd/popd. i think "#!/usr/bin/env bash" should solve the problem. | 15:39 |
dasm | ihrachys: what do you think? | 15:39 |
*** kriskend has joined #openstack-neutron | 15:40 | |
ihrachys | dasm: link? | 15:40 |
dasm | ihrachys: https://review.openstack.org/#/c/317909/3 | 15:40 |
dasm | ihrachys: http://logs.openstack.org/09/317909/3/check/gate-python-neutronclient-python27/2042371/console.html#_2016-05-18_13_35_23_680 | 15:41 |
dasm | "/tools/tox_install.sh: pushd: not found" | 15:41 |
*** jprovazn has joined #openstack-neutron | 15:41 | |
ihrachys | dasm: oh it's not bourne standard thing? | 15:41 |
dasm | ihrachys: it is. but you declared /bin/sh | 15:41 |
*** kriskend has quit IRC | 15:41 | |
dasm | not bash | 15:41 |
*** abregman|afk has quit IRC | 15:41 | |
ihrachys | dasm: sh is bourne | 15:41 |
*** salv-orlando has quit IRC | 15:41 | |
ihrachys | just not bourne again | 15:42 |
dasm | ihrachys: it depends :) bash is bourne. | 15:42 |
dasm | sh can be different. | 15:42 |
*** hynekm has quit IRC | 15:42 | |
*** gvrangan has quit IRC | 15:42 | |
*** ajmiller has joined #openstack-neutron | 15:42 | |
*** salv-orlando has joined #openstack-neutron | 15:42 | |
*** janzian has joined #openstack-neutron | 15:42 | |
dasm | i don't know what's on gates and why didn't work. but explicit declaration should be better. | 15:42 |
*** Leom has joined #openstack-neutron | 15:42 | |
mlavalle | HenryG: I just rechecked https://review.openstack.org/#/c/317733 | 15:43 |
ihrachys | dasm: hm, wasn't it part of posix? | 15:43 |
dasm | ihrachys: i found this: http://stackoverflow.com/questions/5193048/bin-sh-pushd-not-found | 15:43 |
*** rickyrem1 has quit IRC | 15:43 | |
dasm | so i don't think so. | 15:43 |
ihrachys | dasm: I see. alternative would be maintaining dir in a local var | 15:44 |
dasm | yes | 15:44 |
ihrachys | dasm: lemme switch to bash though | 15:44 |
dasm | ihrachys: sure. | 15:44 |
ihrachys | I think I did not hit it locally because I use centos where sh -> bash | 15:44 |
ihrachys | and in ubuntu/debian, it's ash | 15:44 |
dasm | oh. didn't know that bash is not default for debian derivatives. good to know. | 15:45 |
openstackgerrit | Ihar Hrachyshka proposed openstack/python-neutronclient: Constraint tox targets with upper-constraints.txt https://review.openstack.org/317909 | 15:45 |
ihrachys | dasm: https://en.wikipedia.org/wiki/Almquist_shell | 15:45 |
ihrachys | "The reason for using dash is faster shell script execution" | 15:46 |
*** Leo_ has quit IRC | 15:46 | |
ihrachys | I updated the patch btw ^ now waiting again for CI | 15:46 |
*** ArchiFleKs has joined #openstack-neutron | 15:46 | |
dasm | ihrachys: yes. seen it. thanks. | 15:46 |
*** kriskend has joined #openstack-neutron | 15:46 | |
dasm | Oo " it replaced the original Bourne shell in the BSD versions of Unix released in the early 1990s. " | 15:46 |
dasm | "Dash replaced ash and became the default /bin/sh in Debian 6 (Squeeze).[6] Dash became the default /bin/sh in Ubuntu starting with the 6.10 release in October 2006." | 15:47 |
dasm | whole life in lies! | 15:47 |
dasm | i always thought that bash is default in debian-like | 15:47 |
dasm | eh | 15:47 |
*** ZZelle has quit IRC | 15:48 | |
*** eddima has quit IRC | 15:48 | |
ihrachys | dasm: well, if someone lies here, it's centos, not debian | 15:49 |
openstackgerrit | Ankur proposed openstack/neutron: [WIP] Neutron Feature Classification https://review.openstack.org/318192 | 15:49 |
*** tidwellr has joined #openstack-neutron | 15:49 | |
ihrachys | dasm: I would be glad to have my /bin/sh an actual posix restricted shell | 15:49 |
ihrachys | would avoid catching issues as you pointed out late in CI | 15:49 |
dasm | ihrachys: "One Distro to rule them all"? :) | 15:50 |
ihrachys | dasm: right. centos. :P | 15:50 |
dasm | Let's Flame war begins! ;) | 15:50 |
*** dmk0202 has quit IRC | 15:51 | |
* ihrachys loads his Colt | 15:51 | |
*** ZZelle has joined #openstack-neutron | 15:51 | |
dasm | ihrachys: you were just for couple days in Texas and already have a Colt? | 15:51 |
*** vhoward has quit IRC | 15:52 | |
*** blogan_ is now known as blogan | 15:52 | |
*** arjun has joined #openstack-neutron | 15:52 | |
*** arjun is now known as Guest78709 | 15:53 | |
*** moshele has quit IRC | 15:53 | |
*** tonytan4ever has joined #openstack-neutron | 15:53 | |
*** itamarl has quit IRC | 15:54 | |
*** vikasc has quit IRC | 15:54 | |
*** srampal has joined #openstack-neutron | 15:54 | |
Guest78709 | Hi guys, this is regarding VM DNS resolution. We have DNS resolution working with regards to connectivity and DHCP hosts file. However the VM still comes up with it's hostname set with .openstacklocal instead of the domain set in neutron. | 15:55 |
Guest78709 | We are running liberty. Is there some other nova chnge I need to pull in for this, or is there some nova side configuration to change for dns_domain as well? | 15:55 |
*** Sukhdev has joined #openstack-neutron | 15:55 | |
Guest78709 | i set dns_domain only in neutron.conf | 15:55 |
haleyb | mlavalle: ^^^ | 15:55 |
*** daneyon has joined #openstack-neutron | 15:56 | |
*** daneyon has quit IRC | 15:57 | |
*** daneyon has joined #openstack-neutron | 15:58 | |
*** fnaval is now known as fnavasl | 15:58 | |
*** andreas_s has joined #openstack-neutron | 15:58 | |
*** fnavasl is now known as fnaval | 15:58 | |
*** dukhlov has joined #openstack-neutron | 16:00 | |
*** jistr has quit IRC | 16:00 | |
dukhlov | kevinbenton: Hi! | 16:00 |
mlavalle | Guest78709: In Mitaka we merged this: https://review.openstack.org/#/c/271578. Do you have it? | 16:00 |
*** ankur-gupta-f1 has quit IRC | 16:01 | |
Guest78709 | I think so... I had manually fixed it myself in nova. I set the dns_name in the port creation/update request from Nova. | 16:02 |
Guest78709 | however on the VM itself, i see the hostname is of format, "dns_name.openstacklocal" | 16:02 |
Guest78709 | I am not sure what portion of the code is responsible for injecting this config onto the VMs | 16:02 |
Guest78709 | and where nova is getting .openstacklocal instead of the DNS domain | 16:03 |
Guest78709 | does that diff fix this too? | 16:03 |
Sam-I-Am | prior to mitaka, there's pretty much one setting for the domain name, and its in neutron's config | 16:03 |
*** minwang2 has joined #openstack-neutron | 16:03 | |
*** sthillma has joined #openstack-neutron | 16:03 | |
*** raildo-afk is now known as raildo | 16:03 | |
*** davidsha has quit IRC | 16:04 | |
Sam-I-Am | its actually dhcp_domain in dhcp_agent.ini if you're using dhcp | 16:04 |
Sam-I-Am | or might be that in liberty | 16:04 |
*** jamespd has quit IRC | 16:04 | |
Sam-I-Am | if you have dns_domain in neutron.conf, thats the newer way to do it | 16:04 |
Guest78709 | no, even in liberty dhcp agent just gets the dns_assigment populated from neutron | 16:05 |
Guest78709 | yea, that all is working fine | 16:05 |
Guest78709 | our DHCP hosts file is correct | 16:05 |
*** ankur-gupta-f1 has joined #openstack-neutron | 16:05 | |
Guest78709 | it has the dns_domain | 16:05 |
Guest78709 | "dns_name.dns_domain.com" is entry in dnsmasq host file | 16:05 |
Guest78709 | and connevtivty works | 16:05 |
Guest78709 | rather it is hostname on the VM itself | 16:05 |
Guest78709 | Create an instance with name "test123" --> hostname on VM is "test123.openstacklocal" | 16:06 |
Sam-I-Am | so you want the hostname you choose to appear in dns? | 16:06 |
Sam-I-Am | hmm, that should be test123.dns_domain | 16:06 |
Guest78709 | with regards to DHCP and connectivity, it works correctly as "test123.dns_domain.com" | 16:06 |
*** jlanoux has quit IRC | 16:06 | |
ihrachys | amuller: how stable is fullstack lately? | 16:07 |
amuller | ihrachys: haven't checked in a while to be honest | 16:07 |
kevinbenton | dukhlov: hey | 16:07 |
ihrachys | amuller: I caught a failure with https://review.openstack.org/#/c/318086/ that may be related but not sure. | 16:07 |
ihrachys | amuller: we run fullstack with monkey patching right? | 16:07 |
*** sthillma has quit IRC | 16:08 | |
Guest78709 | I am looking at diff mlavalle posted. it looks similar to what I did, setting the dns_name in the neutron port. | 16:09 |
dukhlov | kevinbenton: please review https://review.openstack.org/#/c/313277/ if you have time. It looks OVN is fine now | 16:09 |
mlavalle | Guest78709: you are getting the correct name in 'hosts' file? | 16:09 |
Guest78709 | some other code (not sure where) is getting .openstacklocal instead of the dns_domain when injecting config onto VM | 16:09 |
Guest78709 | yes | 16:09 |
*** tmorin has quit IRC | 16:10 | |
Guest78709 | hosts file is 100% correct | 16:10 |
kevinbenton | dukhlov: looking | 16:10 |
dukhlov | kevinbenton: cool, thx! | 16:10 |
*** itzikb has joined #openstack-neutron | 16:11 | |
Guest78709 | I can try to undo my nova side changes and patch in diff you linked, but as said it looked fairly similar, minus the exception handling and unit test stuff | 16:12 |
Guest78709 | but just wanted to check here first if that would fix hostname's domain on vm too | 16:12 |
mlavalle | Guest78709: don't do that. if yourse is working fine, I don't think you are going to gain anything with my patchset | 16:13 |
*** lindycoder has quit IRC | 16:13 | |
Guest78709 | did you ever test what the "hostname -f" shows up as on the VM? | 16:14 |
ihrachys | pcm_: you have some -1's at https://review.openstack.org/#/q/status:open+project:openstack/neutron-vpnaas+branch:stable/liberty that I don't think needed. | 16:14 |
mlavalle | Guest78709: yes I did and it was working | 16:14 |
*** dukhlov has quit IRC | 16:15 | |
Guest78709 | hmm would it have anything to do with the flat_injected config? | 16:15 |
Guest78709 | it is set to True | 16:16 |
*** ijw has joined #openstack-neutron | 16:16 | |
Guest78709 | shouldnt the hostname on VM actually be set via the DHCP server? | 16:16 |
ihrachys | armax: howdy | 16:16 |
ihrachys | armax: re deprecation bugs... we closes-bug when deprecating, not when removing the option in next cycle? | 16:16 |
*** gangil has quit IRC | 16:16 | |
mlavalle | Guest78709: yes, that is the expected behavior | 16:16 |
*** iyamahat has joined #openstack-neutron | 16:16 | |
Guest78709 | yea... dhcp server should give VM the info and set it. we have flat_injected=true | 16:17 |
Guest78709 | err could that be the cause? flat_injected causing Nova to go and manually set hostname as .openstacklocal | 16:17 |
mlavalle | Guest78709: worth investigating | 16:17 |
mlavalle | Guest78709: I have to go now. Can I follow up with you this afternoon | 16:18 |
mlavalle | ? | 16:18 |
*** jamespd has joined #openstack-neutron | 16:18 | |
Guest78709 | sure | 16:18 |
Guest78709 | let me test this by changing our flat_injected config... | 16:18 |
mlavalle | Guest78709: where are you located? I am in texas | 16:18 |
Guest78709 | if it does indeed fix my issue - think this is still a bug? Nova should pick up dns_domain set in neutron (or whichever portion of code configures the VM) | 16:19 |
*** ygbo has quit IRC | 16:19 | |
Guest78709 | san francisco | 16:19 |
mlavalle | Guest78709: yes, it may be a bug. would you file it please? | 16:20 |
*** anteaya has quit IRC | 16:21 | |
*** singhj has quit IRC | 16:21 | |
armax | ihrachys: hi | 16:21 |
Guest78709 | ok thanks, will update later in afternoon... | 16:21 |
*** andreas_s has quit IRC | 16:21 | |
*** jlibosva has quit IRC | 16:22 | |
Guest78709 | I forget why we even have flat_injected to True. may be to injected network info for non-DHCP enabled networks | 16:22 |
*** nlahouti has joined #openstack-neutron | 16:22 | |
*** jlibosva has joined #openstack-neutron | 16:22 | |
armax | ihrachys: that would depend on the bug report | 16:22 |
armax | ihrachys: the tag is simply signaling that the report is about a depracation issue | 16:22 |
ihrachys | armax: the report is https://bugs.launchpad.net/neutron/+bug/1576000 | 16:23 |
openstack | Launchpad bug 1576000 in neutron "Deprecate advertise_mtu option" [Wishlist,Confirmed] - Assigned to Ihar Hrachyshka (ihar-hrachyshka) | 16:23 |
ihrachys | armax: should I change it to 'remove option' and then use related-bug when deprecating and closes-bug when removing? | 16:23 |
*** afaranha_ has quit IRC | 16:23 | |
*** devvesa has quit IRC | 16:23 | |
*** gangil has joined #openstack-neutron | 16:24 | |
armax | ihrachys: that’s one option the other option is to make this report about ‘deprecating the config option’ and thus can be closed right away, when we open up the new release and go over the ‘deprecation’ bugs, we can then simply remove the option referencing the initial bug report, so in a nutshell the other way round the way you said :) | 16:26 |
armax | I’d rather not have open bugs lingering for ever | 16:26 |
ihrachys | :) I don't mind to do as you said. | 16:26 |
ihrachys | ack, got the rationale to close it now | 16:27 |
*** ankur-gupta-f1 has left #openstack-neutron | 16:27 | |
armax | ihrachys: this is also in line with your description | 16:27 |
*** itzikb has quit IRC | 16:28 | |
armax | ihrachys: it’s about deprecating the option, this give times to users who pay attention to LP bugs to potentially signal a conflict or a desire to oppose the drepecation | 16:28 |
*** mickeys has joined #openstack-neutron | 16:29 | |
*** raildo is now known as raildo-afk | 16:30 | |
*** raildo-afk is now known as raildo | 16:30 | |
*** gangil has quit IRC | 16:30 | |
*** amuller is now known as amuller_ | 16:30 | |
*** amuller_ is now known as amuller_afk | 16:30 | |
*** sridhar_ram has joined #openstack-neutron | 16:33 | |
armax | tidwellr: ping | 16:33 |
tidwellr | armax: pong | 16:33 |
*** slaweq has joined #openstack-neutron | 16:33 | |
armax | tidwellr: has ryu already released the fix for the python3 incompat? | 16:34 |
*** mickeys has quit IRC | 16:34 | |
*** abhiraut has joined #openstack-neutron | 16:34 | |
tidwellr | not released yet, the fix merged a couple hours ago | 16:34 |
*** rohit121003 has quit IRC | 16:34 | |
tidwellr | armax: I need to follow up to see when we can get it released | 16:34 |
armax | tidwellr: if you think it’s gonna be hours, the best thing to do is to wait for the newer realease and bump g-r | 16:35 |
armax | with the new release | 16:35 |
armax | otherwise we can selectively revert https://review.openstack.org/#/c/316350/ | 16:35 |
tidwellr | armax: I have no clue what time frame we're dealing with | 16:35 |
armax | to go back to 4.0 | 16:35 |
tidwellr | armax: to get a fix released | 16:36 |
*** Swami has quit IRC | 16:36 | |
armax | tidwellr: then your fix https://review.openstack.org/#/c/317860/ must come from g-r | 16:36 |
*** njohnston has quit IRC | 16:37 | |
*** sridhar_ram has quit IRC | 16:38 | |
armax | tidwellr: is this the fix you’re talking about? | 16:38 |
armax | https://github.com/osrg/ryu/commit/a20b9e1fcd675e593c8b4cb383f28f404ff62add | 16:38 |
tidwellr | armax: yes | 16:39 |
armax | tidwellr: other option is to skip the offendign test until ryu is released and upper-constraint bumped | 16:40 |
ihrachys | armax: kevinbenton: mestery: need to land those to fix stable/liberty client gate: https://review.openstack.org/#/q/topic:bug/1583029 | 16:41 |
*** moshele has joined #openstack-neutron | 16:42 | |
ihrachys | amotoki: https://review.openstack.org/#/c/317909/ the patch switching client to using constraints. would you mind reviewing? | 16:43 |
amotoki | ihrachys: sure | 16:43 |
*** jbell8 has quit IRC | 16:43 | |
*** dukhlov has joined #openstack-neutron | 16:44 | |
*** kobis has quit IRC | 16:44 | |
*** ri0 has joined #openstack-neutron | 16:44 | |
tidwellr | armax: none of the tests run because the import of ryu fails | 16:45 |
*** mickeys has joined #openstack-neutron | 16:45 | |
armax | tidwellr: ouch, I thought it was just the ryu ones | 16:45 |
armax | tidwellr: it wasn’t clear from the paste | 16:46 |
tidwellr | armax: my bad, it was an incomplete paste | 16:46 |
*** jlibosva has quit IRC | 16:46 | |
armax | tidwellr: no worries | 16:46 |
tidwellr | armax: going back to 4.0 seems to be the best resolution as we don't have to turn off any jobs | 16:46 |
armax | tidwellr: go for it | 16:48 |
*** nyechiel has quit IRC | 16:49 | |
tidwellr | armax: is that done in the upper-constraints? | 16:49 |
armax | tidwellr: by the looks of it | 16:49 |
mestery | ihrachys armax: I put the mitaka ones in the merge queue, the liberty one didn't have a Jenkins vote from the check queue yet | 16:50 |
armax | tidwellr: you wanna have a go, or shall I? | 16:50 |
*** fawadkhaliq has quit IRC | 16:50 | |
tidwellr | armax: I'll abandon https://review.openstack.org/#/c/317860/ and put it together | 16:50 |
armax | tidwellr: ok | 16:50 |
*** liuyulong_ has joined #openstack-neutron | 16:51 | |
*** fawadkhaliq has joined #openstack-neutron | 16:51 | |
*** liuyulong has quit IRC | 16:51 | |
*** Guest37264 is now known as melwitt | 16:51 | |
ihrachys | mestery: right. as long as I collect Jenkins+1 and your votes, I will push myself. | 16:52 |
amotoki | ihrachys: i posted a comment on the review of using constraints. I wonder we need tox_install.sh. | 16:52 |
mestery | ihrachys: aye aye | 16:52 |
ihrachys | amotoki: read commit message? :) | 16:52 |
*** afaranha has joined #openstack-neutron | 16:53 | |
*** banix has joined #openstack-neutron | 16:53 | |
tidwellr | armax: https://review.openstack.org/#/c/318236/ | 16:53 |
amotoki | ihrachys: reading, thanks | 16:53 |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: Integrate the port allowed address pairs VersionedObject in Neutron https://review.openstack.org/287756 | 16:54 |
ihrachys | amotoki: if it's not clear after reading, tell me, I will try to capture more details in the commit message. | 16:54 |
*** iyamahat has quit IRC | 16:54 | |
*** fawadkhaliq has quit IRC | 16:55 | |
*** iyamahat has joined #openstack-neutron | 16:55 | |
*** jerryz has joined #openstack-neutron | 16:55 | |
*** akshai has quit IRC | 16:56 | |
openstackgerrit | Ilya Chukhnakov proposed openstack/neutron: Call ext_manager.delete_port on port removal https://review.openstack.org/317655 | 16:56 |
*** Swami has joined #openstack-neutron | 16:56 | |
*** Sukhdev has quit IRC | 16:57 | |
*** rmart04 has quit IRC | 16:57 | |
*** mickeys has quit IRC | 16:57 | |
*** mickeys has joined #openstack-neutron | 16:58 | |
*** dukhlov has quit IRC | 16:59 | |
ihrachys | rossella_s: hey | 17:03 |
ihrachys | re https://review.openstack.org/#/c/300055/11/neutron/tests/unit/objects/test_base.py | 17:03 |
ihrachys | not sure what to validate there in iface test class. the fact that args are proxied into db api functions? | 17:04 |
*** claudiub has quit IRC | 17:04 | |
*** mickeys has quit IRC | 17:05 | |
*** kevo has joined #openstack-neutron | 17:06 | |
*** lindycoder has joined #openstack-neutron | 17:06 | |
*** tonytan4ever has quit IRC | 17:08 | |
*** akshai has joined #openstack-neutron | 17:08 | |
*** ivc_ has quit IRC | 17:10 | |
*** absubram has joined #openstack-neutron | 17:11 | |
*** hoonetorg has joined #openstack-neutron | 17:11 | |
*** jbell8 has joined #openstack-neutron | 17:11 | |
*** gangil has joined #openstack-neutron | 17:13 | |
*** rickyrem1 has joined #openstack-neutron | 17:16 | |
*** fzdarsky is now known as fzdarsky|afk | 17:16 | |
*** shashank_hegde has joined #openstack-neutron | 17:17 | |
*** mickeys has joined #openstack-neutron | 17:20 | |
*** Leom has quit IRC | 17:20 | |
*** mickeys has quit IRC | 17:20 | |
*** mickeys has joined #openstack-neutron | 17:21 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: objects: support advanced criteria for get_objects https://review.openstack.org/300055 | 17:21 |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: qos: support advanced sorting/pagination criteria https://review.openstack.org/318251 | 17:21 |
*** iyamahat has quit IRC | 17:22 | |
*** jpena is now known as jpena|off | 17:22 | |
*** abhiraut has quit IRC | 17:23 | |
*** sridhar_ram has joined #openstack-neutron | 17:26 | |
*** kawa2014 has joined #openstack-neutron | 17:26 | |
*** jlibosva has joined #openstack-neutron | 17:26 | |
*** Guest78709 is now known as arjun | 17:27 | |
*** arjun is now known as xagent | 17:27 | |
*** ivc_ has joined #openstack-neutron | 17:28 | |
*** malos has quit IRC | 17:29 | |
*** madhu_ak has quit IRC | 17:30 | |
boden | dougwig HenryG: neutron-lib meeting? | 17:30 |
*** fragatina has quit IRC | 17:31 | |
*** amuller_afk has quit IRC | 17:32 | |
*** wolverineav has quit IRC | 17:32 | |
*** s3wong has joined #openstack-neutron | 17:34 | |
*** ivar-lazzaro has joined #openstack-neutron | 17:35 | |
*** mvk_ has quit IRC | 17:37 | |
*** ivar-lazzaro has quit IRC | 17:39 | |
*** ivar-lazzaro has joined #openstack-neutron | 17:39 | |
*** abregman has joined #openstack-neutron | 17:40 | |
*** abhiraut has joined #openstack-neutron | 17:41 | |
*** abhiraut has quit IRC | 17:42 | |
*** iyamahat has joined #openstack-neutron | 17:42 | |
*** sridhar_ram has quit IRC | 17:43 | |
*** anilvenkata has joined #openstack-neutron | 17:43 | |
*** lucasagomes is now known as lucas-dinner | 17:44 | |
*** vhoward has joined #openstack-neutron | 17:45 | |
*** brad_behle has quit IRC | 17:46 | |
*** jckasper has quit IRC | 17:47 | |
*** eilert has joined #openstack-neutron | 17:47 | |
*** jckasper has joined #openstack-neutron | 17:47 | |
*** malos has joined #openstack-neutron | 17:47 | |
*** javeriak has joined #openstack-neutron | 17:48 | |
*** jckasper has quit IRC | 17:48 | |
*** jckasper has joined #openstack-neutron | 17:48 | |
*** cbouch_ has quit IRC | 17:50 | |
*** abhiraut has joined #openstack-neutron | 17:53 | |
*** akshai has quit IRC | 17:53 | |
*** akshai has joined #openstack-neutron | 17:53 | |
ihrachys | HenryG: so we have page_reverse broken completely :) | 17:58 |
ihrachys | HenryG: it always reverses back :D | 17:59 |
ihrachys | HenryG: I have a test to trigger the failure. I believe that .reverse() should be removed from common_db_mixin | 17:59 |
HenryG | ihrachys: I did point that out | 17:59 |
ihrachys | HenryG: yes, that's re your comment - I merely validated it locally | 17:59 |
HenryG | ihrachys: ok, cool | 18:00 |
ihrachys | HenryG: and also found an issue in my api tests that hid the issue | 18:00 |
HenryG | ihrachys: even cooler :) | 18:00 |
*** yamahata has joined #openstack-neutron | 18:00 | |
*** moshele has quit IRC | 18:04 | |
*** wendar_ is now known as wendar | 18:04 | |
*** fragatina has joined #openstack-neutron | 18:05 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: tests: validate sorting and pagination for networks https://review.openstack.org/306272 | 18:07 |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: Fixed page_reverse when limit is passed https://review.openstack.org/318270 | 18:07 |
ihrachys | HenryG: I split the patch into two pieces - first one adds API test framework for sorting/pagination, 2nd one fixes the issue with page_reverse + limit, with an API test ^ | 18:07 |
ihrachys | HenryG: that's a great catch | 18:07 |
ihrachys | I probably need a bug for the latter... | 18:08 |
*** Leom has joined #openstack-neutron | 18:09 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: Fixed page_reverse when limit is passed https://review.openstack.org/318270 | 18:10 |
*** wolverineav has joined #openstack-neutron | 18:11 | |
HenryG | ihrachys: I caught it when I had to write unit tests for the methods when moving them into neutron-lib. | 18:12 |
*** mickeys has quit IRC | 18:13 | |
*** Sukhdev has joined #openstack-neutron | 18:13 | |
*** mickeys has joined #openstack-neutron | 18:14 | |
*** doug-fish has joined #openstack-neutron | 18:16 | |
*** lappy-rook has joined #openstack-neutron | 18:17 | |
*** doug-fish has quit IRC | 18:17 | |
*** doug-fish has joined #openstack-neutron | 18:17 | |
*** tonytan4ever has joined #openstack-neutron | 18:18 | |
*** mickeys has quit IRC | 18:18 | |
*** ihrachys has quit IRC | 18:18 | |
*** ivasilevskaya has joined #openstack-neutron | 18:19 | |
*** doug-fis_ has quit IRC | 18:20 | |
*** rossella_s has quit IRC | 18:23 | |
*** rossella_s has joined #openstack-neutron | 18:24 | |
*** banix has quit IRC | 18:24 | |
*** amit213 has quit IRC | 18:24 | |
*** abhiraut has quit IRC | 18:25 | |
*** fragatin_ has joined #openstack-neutron | 18:26 | |
*** sthillma has joined #openstack-neutron | 18:26 | |
*** muawiakhan has quit IRC | 18:26 | |
*** muawiakhan has joined #openstack-neutron | 18:27 | |
*** amit213 has joined #openstack-neutron | 18:27 | |
*** isq has joined #openstack-neutron | 18:27 | |
*** muawiakhan has quit IRC | 18:27 | |
*** michchap has joined #openstack-neutron | 18:28 | |
*** dukhlov has joined #openstack-neutron | 18:28 | |
*** abhiraut has joined #openstack-neutron | 18:28 | |
openstackgerrit | Jakub Libosvar proposed openstack/neutron: [WIP] ovsdb: Reconnect when ovs poller gets stuck https://review.openstack.org/317369 | 18:28 |
*** michchap has quit IRC | 18:28 | |
*** michchap has joined #openstack-neutron | 18:29 | |
*** fragatina has quit IRC | 18:29 | |
*** fragatina has joined #openstack-neutron | 18:29 | |
*** fragatin_ has quit IRC | 18:29 | |
*** michchap_ has quit IRC | 18:30 | |
*** michcha__ has joined #openstack-neutron | 18:30 | |
*** akshai has quit IRC | 18:30 | |
*** akshai has joined #openstack-neutron | 18:33 | |
*** michchap has quit IRC | 18:34 | |
xagent | mlavalle: this is Guest from earlier regarding the hostname issue on the VM | 18:38 |
xagent | I changed flat_injected=False and restarted nova on our hosts | 18:39 |
xagent | I still see the hostname on the Vm as "dns_name.openstacklocal" | 18:39 |
*** ri0 has quit IRC | 18:39 | |
*** ri0 has joined #openstack-neutron | 18:40 | |
*** marksei has joined #openstack-neutron | 18:40 | |
*** ijw has quit IRC | 18:40 | |
*** jlibosva has quit IRC | 18:41 | |
*** amuller_afk has joined #openstack-neutron | 18:41 | |
*** ri0 has quit IRC | 18:42 | |
openstackgerrit | Brandon Logan proposed openstack/neutron: Pecan: Backwards compatible/cleaner init https://review.openstack.org/314886 | 18:43 |
*** dukhlov has quit IRC | 18:44 | |
openstackgerrit | Merged openstack/python-neutronclient: Make purge supports dvr router's interface https://review.openstack.org/315873 | 18:44 |
*** nlahouti has quit IRC | 18:46 | |
*** moshele has joined #openstack-neutron | 18:47 | |
*** anteaya has joined #openstack-neutron | 18:47 | |
*** sambetts is now known as sambetts|afk | 18:47 | |
*** nlahouti has joined #openstack-neutron | 18:48 | |
*** oanson has quit IRC | 18:49 | |
*** sridhar_ram has joined #openstack-neutron | 18:53 | |
kfox1111 | is there a way to take a network that is already marked external with ports on it, and make it rbac restricted to a few tenants as external? | 18:53 |
kfox1111 | or do you have to detach everything, create the rules, then reattach stuff? | 18:53 |
*** moshele has quit IRC | 18:55 | |
*** gangil has quit IRC | 18:56 | |
*** abhiraut has quit IRC | 18:56 | |
*** amotoki has quit IRC | 18:56 | |
*** cheran has joined #openstack-neutron | 18:57 | |
*** cheran has quit IRC | 18:57 | |
*** anteaya has quit IRC | 18:57 | |
*** cheran has joined #openstack-neutron | 18:59 | |
*** daneyon has quit IRC | 19:03 | |
*** agireud has quit IRC | 19:04 | |
*** amuller_afk is now known as amuller | 19:09 | |
*** kawa2014 has quit IRC | 19:10 | |
*** doug-fish has quit IRC | 19:10 | |
openstackgerrit | Nate Johnston proposed openstack/neutron-fwaas: Remove varmour drivers https://review.openstack.org/318294 | 19:11 |
mlavalle | hi xagent | 19:12 |
*** banix has joined #openstack-neutron | 19:12 | |
xagent | hey | 19:13 |
xagent | where is the difference in between how the VM get's its hostname configured versus what the DHCP server writes into its host file? | 19:13 |
*** doug-fish has joined #openstack-neutron | 19:13 | |
*** SteffanW has quit IRC | 19:14 | |
*** oanson has joined #openstack-neutron | 19:14 | |
mlavalle | xagent: what do you mean the difference? | 19:14 |
xagent | Our host file for the dhcp namespsace, f0a09675-1489-464e-9dd0-d22a096b8490/host | 19:15 |
xagent | has entries as such: | 19:16 |
*** Sukhdev has quit IRC | 19:16 | |
xagent | fa:16:3e:9a:5c:1a,host-192-168-44-2.testdomain.net.,192.168.44.2 fa:16:3e:06:93:02,vma.testdomain.net.,192.168.44.8 | 19:16 |
xagent | vma.testdomain.net | 19:16 |
mlavalle | xagent: that piece looks good | 19:16 |
xagent | So, I am not sure then how on the actual VM, "hostname -f" is reporting it as "vma.openstacklocal" | 19:16 |
xagent | note that ping/connectivity on the VM, using vma.testdomain.net works | 19:17 |
xagent | so from the DHCP server side and network connectivity wise, it is fine | 19:17 |
mlavalle | xagent: what image are you using for that vm? | 19:17 |
xagent | neutron port also shows the correct dns_name and dns_assignment fields | 19:17 |
xagent | it is a centos 7.1 | 19:18 |
openstackgerrit | Merged openstack/neutron: Ensure unit tests don't assume an IP address allocation strategy https://review.openstack.org/303603 | 19:18 |
*** doug-fish has quit IRC | 19:18 | |
mlavalle | xagent: have you tried dig to query the dns server from the vm? | 19:18 |
xagent | No... how do I do that exctly? | 19:19 |
mlavalle | xagent: in the vm: dig vma.testdomain.net | 19:21 |
*** banix has quit IRC | 19:22 | |
mlavalle | xagent: you may need to to specify the dns server: dig vma.testdomain.net @<ip address of port for dnsmasq> | 19:22 |
xagent | gotcha thanks, have not used dig cmd before | 19:23 |
*** mickeys has joined #openstack-neutron | 19:26 | |
*** njohnston has joined #openstack-neutron | 19:27 | |
*** agireud has joined #openstack-neutron | 19:30 | |
xagent | 1 sec... need to yum install dig, but first need to create a router and set up external network :) | 19:31 |
mlavalle | xagent: no rush.... i'll be here | 19:32 |
mlavalle | xagent: take your time. Thanks for testing this :-) | 19:32 |
mlavalle | xagent: I am here everyday, so feel free to ping at any time | 19:32 |
*** ssalagame has joined #openstack-neutron | 19:33 | |
*** baoli_ has quit IRC | 19:34 | |
*** eilert has quit IRC | 19:36 | |
openstackgerrit | Nate Johnston proposed openstack/neutron-fwaas: Remove FWaaS vendor drivers https://review.openstack.org/318294 | 19:36 |
*** akshai has quit IRC | 19:36 | |
*** fragatina has quit IRC | 19:38 | |
openstackgerrit | venkata anil proposed openstack/neutron: fullstack: test dvr router functionality https://review.openstack.org/318307 | 19:38 |
*** fragatina has joined #openstack-neutron | 19:38 | |
openstackgerrit | Terry Wilson proposed openstack/neutron: Use bisect to search sorted rows https://review.openstack.org/318308 | 19:39 |
xagent | thanks | 19:39 |
xagent | ! | 19:39 |
xagent | ok, i have output | 19:39 |
xagent | http://paste.openstack.org/show/497594/ | 19:40 |
*** doug-fish has joined #openstack-neutron | 19:40 | |
xagent | The answer reports the same IP too when I query "vmb.openstacklocal" | 19:41 |
mlavalle | xagent: that is exactly what you should be getting | 19:41 |
xagent | http://paste.openstack.org/show/497595/ | 19:42 |
xagent | What is causing the .openstacklocal entry? | 19:42 |
*** gangil has joined #openstack-neutron | 19:42 | |
xagent | still no .openstacklocal entries in my host file on dhcp server | 19:43 |
xagent | id expect dig to respond back w/ error or garbage ip | 19:43 |
xagent | as it does if i specify some other unknown domain | 19:43 |
mlavalle | xagent: in the network node where your dnsmasq is running, could you run: ps -aux | grep dnsmasq | 19:44 |
*** abhiraut has joined #openstack-neutron | 19:44 | |
mlavalle | xagent: I want to see how dnsmasq is being started | 19:44 |
*** doug-fish has quit IRC | 19:44 | |
xagent | ah crap... | 19:45 |
*** oanson has quit IRC | 19:45 | |
xagent | think i may see problem | 19:45 |
xagent | --dhcp-match=set:ipxe,175 --bind-interfaces --interface=tapf1dfab95-80 --dhcp-range=set:tag0,177.177.177.0,static,86400s --dhcp-lease-max=256 --conf-file= --server=8.8.8.8 --domain=openstacklocal | 19:45 |
xagent | notice the --domain at the end... | 19:45 |
xagent | hmm | 19:45 |
mlavalle | xagent: yeah | 19:45 |
*** hynekm has joined #openstack-neutron | 19:46 | |
xagent | Does this override the dns_domain in neutron.conf and whatever is in the port dns_assignment? | 19:46 |
xagent | well doesnt override it | 19:46 |
xagent | but rather, what is the difference between the two? | 19:46 |
mlavalle | xagent: I am not 100% sure, but I think it is very likely | 19:46 |
mlavalle | xagent: is this a test environment you can mess with? | 19:47 |
xagent | yea | 19:47 |
*** akshai has joined #openstack-neutron | 19:47 | |
*** ushkalim__ has quit IRC | 19:47 | |
mlavalle | xagent: kill the dnsmasq instance and restart it with the same command you got from ps, changing the value in --domain | 19:48 |
xagent | So I spawn dhcp-agent ourselves... | 19:48 |
xagent | this internally loads the dnsmasq process | 19:48 |
xagent | ah nvm i see what you mean | 19:48 |
*** jreeves is now known as jreeves_afk | 19:49 | |
mlavalle | xagent: yeah, just restart dnsmasq by hand | 19:49 |
*** javeriak has quit IRC | 19:49 | |
xagent | where is dhcp agent code again that spawns dnsmasq? | 19:50 |
xagent | is it in neutron/agent/linux/dhcp.py | 19:50 |
*** matrohon has joined #openstack-neutron | 19:50 | |
mlavalle | xagent: yes, that's where it is located | 19:51 |
*** boden has quit IRC | 19:51 | |
*** brad_behle has joined #openstack-neutron | 19:51 | |
*** shashank_hegde has quit IRC | 19:52 | |
xagent | geeting followig error while respawning.. | 19:53 |
xagent | dnsmasq: unknown interface tap6815a55c-ae | 19:53 |
xagent | I do not see such a tap interface in ifconfig | 19:53 |
*** mickeys has quit IRC | 19:54 | |
mlavalle | xagent: did you replicate the command excatly? | 19:54 |
*** fawadkhaliq has joined #openstack-neutron | 19:54 | |
*** jbell8 has quit IRC | 19:54 | |
*** fawadkhaliq has quit IRC | 19:54 | |
*** mickeys has joined #openstack-neutron | 19:54 | |
*** fawadkhaliq has joined #openstack-neutron | 19:55 | |
*** anilvenkata has quit IRC | 19:55 | |
*** woodburn has joined #openstack-neutron | 19:55 | |
*** yamamoto has quit IRC | 19:55 | |
*** madhu_ak has joined #openstack-neutron | 19:56 | |
*** jreeves_afk is now known as jreeves | 19:56 | |
*** eilert has joined #openstack-neutron | 19:56 | |
xagent | something auto re-spawned the dnsmasw process I killed | 19:56 |
xagent | it is up with new PID -I see same network uuid | 19:56 |
xagent | you know what, looking at the code, I see this: | 19:57 |
*** nlahouti has quit IRC | 19:57 | |
xagent | 387 if self.conf.dhcp_domain: 388 cmd.append('--domain=%s' % self.conf.dhcp_domain) | 19:57 |
xagent | (running liberty, btw) | 19:57 |
xagent | I thought dhcp_domain was deprecated? | 19:57 |
xagent | as such I am not setting it anywhere | 19:57 |
xagent | this is in agent/linux/dhcp.py | 19:58 |
mlavalle | xagent: hang on, let me see | 19:58 |
xagent | it must be getting the old default value for dhcp_domain which isnt set anywhere | 19:58 |
*** marksei has quit IRC | 19:58 | |
*** mickeys has quit IRC | 19:59 | |
*** doug-fish has joined #openstack-neutron | 19:59 | |
xagent | I even see master using dhcp_domain here in this file, in this and a few other places | 19:59 |
*** salv-orlando has quit IRC | 19:59 | |
xagent | https://github.com/openstack/neutron/blob/master/neutron/agent/linux/dhcp.py | 20:00 |
mlavalle | xagent: yeah, it is defined here: neutron/agent/dhcp/config.py | 20:01 |
*** ushkalim__ has joined #openstack-neutron | 20:01 | |
*** sridhar_ram has quit IRC | 20:01 | |
xagent | is this a bug | 20:01 |
*** prateek has joined #openstack-neutron | 20:01 | |
mlavalle | xagent: it definitely is a bug. Do you want to file it? I can do it also | 20:02 |
xagent | sure i can file it | 20:02 |
xagent | is the fix to change dhcp_domain to dns_domain in code i pasted? | 20:02 |
mlavalle | xagent: do you want to work the fix? Or you want me to work it? | 20:03 |
xagent | sure i can do it as well, have never checked in anything (yet) | 20:03 |
*** nmagnezi has joined #openstack-neutron | 20:03 | |
xagent | so would like to get 1 checkin under my belt :) | 20:03 |
mlavalle | xagent: ok, file the bug nad I'll triage it. Let's work this together. You write the fix and I'll help you with reviews :-) | 20:04 |
*** mickeys has joined #openstack-neutron | 20:04 | |
xagent | i see the dhcp_domain is also used elsewhere - for example when writing the hosts file | 20:04 |
xagent | i guess this is working because that code path only exercised if the dn_assignment not set | 20:04 |
mlavalle | yeah, I think so | 20:04 |
*** ijw has joined #openstack-neutron | 20:05 | |
xagent | cool | 20:05 |
xagent | hey by the way, I had also filed another bug, related to port DNS a short while back | 20:05 |
xagent | you mentioned that your collegue was working on a fix | 20:06 |
mlavalle | xagent: yes, he is working on it. we should have something later this week | 20:06 |
xagent | regarding the dns_assignment being overwritten from DB | 20:06 |
xagent | so I have fixed it myself locally. and for time being, it appears to have fixed issue on my testbed | 20:06 |
xagent | do you have diffs for his so i can compare | 20:07 |
xagent | or just pull his in | 20:07 |
mlavalle | xagent: he hasn't pushed the fix yet | 20:07 |
xagent | is there a review for it? | 20:07 |
mlavalle | xagent: as soon as he does, we will add you to the review | 20:07 |
mlavalle | so you can partner with us | 20:07 |
openstackgerrit | Rossella Sblendido proposed openstack/neutron: Implementation details to support trunk ports https://review.openstack.org/318317 | 20:08 |
*** tonytan4ever has quit IRC | 20:08 | |
mlavalle | xagent: how do I find you in gerrit? | 20:08 |
xagent | I believe this is also my username on there | 20:10 |
*** ijw has quit IRC | 20:10 | |
mlavalle | xagent: yes I found you: owner:"xagent <xagent@gmail.com>" | 20:11 |
*** jprovazn has quit IRC | 20:11 | |
xagent | In meanwhile, any idea if the fix I have for that locally is on the right track (will port over his fix once review is out), but for now if it'll work as a temp fix | 20:12 |
xagent | http://paste.openstack.org/show/497599/ | 20:12 |
xagent | I just added those 2 lines, to copy over the context, at the end of create_port in ml2/plugin.py | 20:13 |
xagent | seems to be working for me, for now | 20:13 |
*** ametts has quit IRC | 20:13 | |
mlavalle | xagent: this is method _commit_port_binding, correct? | 20:14 |
xagent | no... | 20:15 |
xagent | create_port() | 20:15 |
*** fawadkhaliq has quit IRC | 20:15 | |
*** rickyrem1 has quit IRC | 20:15 | |
mlavalle | xagent: ah ok, I see what you did. in our solution we are doing it in that method | 20:15 |
xagent | right before the bound_context is returned | 20:16 |
xagent | yea | 20:16 |
mlavalle | xagent: the dns_assignment is being lost for bound ports. unbound ports are fine | 20:16 |
xagent | i noticed bound_context was pretty much what we wanted but only missing dns_assignment | 20:16 |
mlavalle | xagent: do you have that bug handy? I mean the launchpad url | 20:17 |
xagent | https://bugs.launchpad.net/bugs/1579977 | 20:18 |
openstack | Launchpad bug 1579977 in neutron "dns_assignment is lost during port creation after VIF binding" [Medium,In progress] - Assigned to James Anziano (janzian) | 20:18 |
mlavalle | xagent: nevermind. I found it | 20:18 |
mlavalle | janzian: as soon as you push a fix for https://bugs.launchpad.net/neutron/+bug/1579977, please add xagent to the list of reviewers | 20:19 |
janzian | mlavalle: Will do | 20:19 |
*** akshai has quit IRC | 20:20 | |
mlavalle | janzian: xagent is also his id in gerrit | 20:20 |
*** shashank_hegde has joined #openstack-neutron | 20:21 | |
xagent | cool, thanks for the help! stepping out for lunch | 20:22 |
openstackgerrit | Nate Johnston proposed openstack/neutron-fwaas: Remove FWaaS vendor drivers https://review.openstack.org/318294 | 20:22 |
mlavalle | xagent: enjoy! | 20:22 |
*** akshai has joined #openstack-neutron | 20:27 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-neutronclient: Updated from global requirements https://review.openstack.org/317505 | 20:27 |
*** hynekm has quit IRC | 20:28 | |
*** a_ta has quit IRC | 20:29 | |
*** ametts has joined #openstack-neutron | 20:30 | |
*** tmorin has joined #openstack-neutron | 20:30 | |
rtheis | reentrant call inside | 20:32 |
*** vhosakot has quit IRC | 20:37 | |
*** sudipto has quit IRC | 20:38 | |
*** daneyon_ has joined #openstack-neutron | 20:39 | |
*** gangil has quit IRC | 20:41 | |
*** janzian has quit IRC | 20:42 | |
*** boden has joined #openstack-neutron | 20:42 | |
*** gangil has joined #openstack-neutron | 20:43 | |
*** gangil has quit IRC | 20:43 | |
*** xagent has quit IRC | 20:43 | |
*** gangil has joined #openstack-neutron | 20:45 | |
*** singhj has joined #openstack-neutron | 20:46 | |
*** absubram has quit IRC | 20:46 | |
*** gangil has quit IRC | 20:46 | |
*** daneyon_ has quit IRC | 20:47 | |
*** akshai has quit IRC | 20:47 | |
*** mickeys has quit IRC | 20:49 | |
*** mickeys has joined #openstack-neutron | 20:49 | |
*** raildo is now known as raildo-afk | 20:49 | |
*** vhosakot has joined #openstack-neutron | 20:50 | |
*** ijw has joined #openstack-neutron | 20:50 | |
*** gangil has joined #openstack-neutron | 20:53 | |
*** tmorin has quit IRC | 20:54 | |
*** tmorin has joined #openstack-neutron | 20:56 | |
*** yamamoto has joined #openstack-neutron | 20:56 | |
*** janzian has joined #openstack-neutron | 20:56 | |
*** fzdarsky|afk has quit IRC | 20:57 | |
*** abhiraut has quit IRC | 20:57 | |
*** akshai has joined #openstack-neutron | 21:00 | |
*** yamamoto has quit IRC | 21:03 | |
*** ametts has quit IRC | 21:07 | |
*** jreeves is now known as jreeves_afk | 21:07 | |
*** akshai_ has joined #openstack-neutron | 21:08 | |
*** tmorin has quit IRC | 21:09 | |
*** akshai has quit IRC | 21:12 | |
*** thorst_ has quit IRC | 21:12 | |
*** mickeys has quit IRC | 21:12 | |
*** nlahouti has joined #openstack-neutron | 21:12 | |
*** Sukhdev has joined #openstack-neutron | 21:12 | |
*** mickeys has joined #openstack-neutron | 21:12 | |
*** Leom has quit IRC | 21:13 | |
*** banix has joined #openstack-neutron | 21:13 | |
*** thorst_ has joined #openstack-neutron | 21:16 | |
*** mickeys has quit IRC | 21:17 | |
*** kriskend has quit IRC | 21:17 | |
*** cshahani has joined #openstack-neutron | 21:17 | |
*** brad_behle has quit IRC | 21:18 | |
cshahani | hi, Could anyone confirm if we support cert based authentication for neutron vpnaas or just psk? | 21:19 |
*** thorst_ has quit IRC | 21:20 | |
*** salv-orlando has joined #openstack-neutron | 21:21 | |
*** nmagnezi has quit IRC | 21:21 | |
*** dave-mccowan has quit IRC | 21:23 | |
pcm_ | cshahani: psk only | 21:23 |
cshahani | Thanks .. Do we need rsa based.. I have been playing with vpnaas since some time .. I was wondering if we need this in neutron-vpnaas.. I would like to take this up | 21:24 |
pcm_ | cshahani: cert based would be a great addition. There is the Barbican project which can be leveraged. | 21:25 |
cshahani | I see that we have an option of cert based for authentication | 21:25 |
pcm_ | cshahani: Nothing in the implementation though to support it. | 21:25 |
cshahani | yes. thats right | 21:26 |
pcm_ | cshahani: You can bring it up at next Neutron IRC meeting and people can give some guidance. LBaaS team did something similar. | 21:27 |
* pcm_ logging out for the day... | 21:27 | |
cshahani | I don't know about the Barbican project.. Would itbe possible to point me to a contact whom I can work with to get the BP starteed | 21:27 |
*** prateek has quit IRC | 21:28 | |
*** woodburn has quit IRC | 21:28 | |
pcm_ | cshahani: Check with dougwig and armax. They can provide guidance. | 21:28 |
pcm_ | cshahani: I've got to log off...ttyl | 21:29 |
*** mickeys has joined #openstack-neutron | 21:29 | |
*** ajmiller has quit IRC | 21:30 | |
*** ajmiller has joined #openstack-neutron | 21:30 | |
*** doug-fish has quit IRC | 21:30 | |
*** thorst_ has joined #openstack-neutron | 21:34 | |
*** matrohon has quit IRC | 21:34 | |
*** gvrangan has joined #openstack-neutron | 21:35 | |
*** srampal has quit IRC | 21:36 | |
*** thorst_ has quit IRC | 21:38 | |
*** abhiraut has joined #openstack-neutron | 21:38 | |
*** matrohon has joined #openstack-neutron | 21:38 | |
*** boden has quit IRC | 21:40 | |
*** sridhar_ram has joined #openstack-neutron | 21:43 | |
*** ssalagame has quit IRC | 21:44 | |
*** ijw has quit IRC | 21:45 | |
*** rtheis has quit IRC | 21:47 | |
*** ijw has joined #openstack-neutron | 21:47 | |
*** daneyon has joined #openstack-neutron | 21:49 | |
*** ssalagame has joined #openstack-neutron | 21:50 | |
*** markvoelker has joined #openstack-neutron | 21:51 | |
openstackgerrit | Slawek Kaplonski proposed openstack/neutron: Add QoS bandwidth limit for instance ingress traffic https://review.openstack.org/303626 | 21:51 |
*** markvoelker has quit IRC | 21:52 | |
*** markvoelker has joined #openstack-neutron | 21:53 | |
*** gtop-323 has quit IRC | 21:55 | |
*** matrohon has quit IRC | 21:57 | |
*** singhj has quit IRC | 21:57 | |
*** Leom has joined #openstack-neutron | 21:57 | |
*** rps2 has joined #openstack-neutron | 21:58 | |
*** gangil has quit IRC | 21:59 | |
rps2 | Greetings. I have a quick question...we are using VLAN tagging on one bridge interface in dual mode. Natively, the port (br1) is on VLAN 510 so it can support PXEboot, and tagged it's on VLAN 51 (br1.51). Fuel, however, will not display the port. The other three interfaces (br2, br3 and br4) which do NOT use VLAN tagging at all do show up. | 22:01 |
*** kbringard has quit IRC | 22:01 | |
rps2 | Any idea why br1 and br1.51 do not show up? | 22:01 |
rps2 | This is on Ubuntu 14.04, by the way. | 22:01 |
*** ijw has quit IRC | 22:01 | |
*** ivc_ has quit IRC | 22:03 | |
*** ozialien10 has joined #openstack-neutron | 22:03 | |
*** slaweq has quit IRC | 22:04 | |
*** julim has quit IRC | 22:04 | |
*** ivc_ has joined #openstack-neutron | 22:05 | |
*** ijw has joined #openstack-neutron | 22:06 | |
amuller | rps2: That doesn't sound Neutron specific, but Fuel specific, you'd have better luck asking in the Fuel community IRC channel | 22:07 |
rps2 | Ok, I'll do just that. Didn't know if it was Neutron-, OpenStack- or Fuel-specific. Thanks, amuller. | 22:09 |
*** dane_leblanc_ has quit IRC | 22:09 | |
*** rps2 has quit IRC | 22:10 | |
*** anteaya has joined #openstack-neutron | 22:14 | |
*** ivc_ has quit IRC | 22:14 | |
*** janzian has quit IRC | 22:15 | |
*** vhosakot has quit IRC | 22:15 | |
*** lindycoder has quit IRC | 22:15 | |
*** abhiraut has quit IRC | 22:19 | |
*** gangil has joined #openstack-neutron | 22:19 | |
*** gangil has quit IRC | 22:19 | |
*** abhiraut has joined #openstack-neutron | 22:20 | |
*** harlowja has quit IRC | 22:22 | |
*** abhiraut has quit IRC | 22:22 | |
*** gangil has joined #openstack-neutron | 22:23 | |
*** abhiraut has joined #openstack-neutron | 22:23 | |
*** rossella_s has quit IRC | 22:23 | |
*** rossella_s has joined #openstack-neutron | 22:24 | |
*** daneyon has quit IRC | 22:25 | |
*** itisha has quit IRC | 22:29 | |
*** edmondsw has quit IRC | 22:32 | |
*** abhiraut has quit IRC | 22:33 | |
*** Leom has quit IRC | 22:34 | |
*** mvk_ has joined #openstack-neutron | 22:34 | |
*** singhj has joined #openstack-neutron | 22:36 | |
openstackgerrit | Miguel Lavalle proposed openstack/neutron: Add segments to hosts mappings https://review.openstack.org/285548 | 22:36 |
*** mlavalle has quit IRC | 22:40 | |
*** singhj has quit IRC | 22:41 | |
*** pradk has quit IRC | 22:41 | |
openstackgerrit | Ryan Tidwell proposed openstack/neutron: Compute IPAvailabilityRanges in memory during IP allocation https://review.openstack.org/292207 | 22:46 |
openstackgerrit | Ryan Tidwell proposed openstack/neutron: DO NOT MERGE: Allocate IP addresses backwards to flush out tests reliant on sequential allocation https://review.openstack.org/312655 | 22:46 |
*** gvrangan has quit IRC | 22:46 | |
*** tpsilva has quit IRC | 22:47 | |
openstackgerrit | Ryan Tidwell proposed openstack/neutron: Remove IP availability range recalculation logic https://review.openstack.org/303638 | 22:47 |
tidwellr | armax: ping | 22:50 |
*** donghao has joined #openstack-neutron | 22:56 | |
*** ijw has quit IRC | 22:57 | |
*** yamahata has quit IRC | 22:58 | |
*** akshai_ has quit IRC | 22:58 | |
*** ijw has joined #openstack-neutron | 22:59 | |
*** harlowja has joined #openstack-neutron | 23:00 | |
*** anteaya has quit IRC | 23:01 | |
*** ijw has quit IRC | 23:03 | |
*** jamielennox is now known as jamielennox|away | 23:04 | |
*** markvoelker_ has joined #openstack-neutron | 23:05 | |
*** markvoelker_ has quit IRC | 23:05 | |
*** markvoelker_ has joined #openstack-neutron | 23:06 | |
*** markvoelker has quit IRC | 23:09 | |
*** salv-orl_ has joined #openstack-neutron | 23:10 | |
*** salv-orlando has quit IRC | 23:13 | |
*** sdague has quit IRC | 23:14 | |
*** BhavyaM has joined #openstack-neutron | 23:15 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements https://review.openstack.org/318376 | 23:31 |
*** BhavyaM has quit IRC | 23:32 | |
*** sridhar_ram1 has joined #openstack-neutron | 23:33 | |
*** sridhar_ram has quit IRC | 23:33 | |
*** djan has joined #openstack-neutron | 23:34 | |
*** gangil has quit IRC | 23:34 | |
*** mickeys has quit IRC | 23:35 | |
*** mickeys has joined #openstack-neutron | 23:35 | |
*** vhosakot has joined #openstack-neutron | 23:37 | |
*** abhiraut has joined #openstack-neutron | 23:40 | |
*** Sukhdev has quit IRC | 23:42 | |
*** salv-orl_ has quit IRC | 23:46 | |
*** Sukhdev has joined #openstack-neutron | 23:48 | |
*** abhiraut has quit IRC | 23:49 | |
*** Swami has quit IRC | 23:49 | |
*** abhiraut has joined #openstack-neutron | 23:50 | |
*** jamielennox|away is now known as jamielennox | 23:51 | |
*** ijw has joined #openstack-neutron | 23:51 | |
*** eilert has quit IRC | 23:52 | |
*** markvoelker has joined #openstack-neutron | 23:53 | |
*** doug-fish has joined #openstack-neutron | 23:54 | |
*** markvoelker_ has quit IRC | 23:56 | |
*** doug-fish has quit IRC | 23:58 | |
*** djan has quit IRC | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!