openstackgerrit | Adam Harwell proposed openstack/octavia: Implement sorting and pagination for octavia https://review.openstack.org/382147 | 00:23 |
---|---|---|
rm_work | whoops, forgot to change a line, but yeah now it works, woo | 00:23 |
rm_work | johnsom: I guess you can check that out if you have a spare devstack, your stuff should work now | 00:23 |
rm_work | just need testing | 00:23 |
rm_work | sort/filter/marker | 00:23 |
rm_work | err | 00:23 |
rm_work | sort/limit/marker | 00:23 |
rm_work | still need to do filter | 00:23 |
rm_work | prolly will do it in the same place, but as a followup | 00:24 |
johnsom | Ok. I'm pretty focused on the centos amp stuff at the moment, but will keep it in mind. | 00:24 |
rm_work | no worries then | 00:24 |
rm_work | i'll do more testing first | 00:24 |
rm_work | when is our freeze date, do you think? | 00:24 |
rm_work | I can probably get the testing bits done tomorrow.... | 00:25 |
johnsom | I had hoped for tomorrow, but now I'm thinking more like Thursday | 00:25 |
rm_work | but that's cutting it short on time for reviewers to actually review/test | 00:25 |
rm_work | not sure if it matters if we get this in, honestly | 00:25 |
rm_work | since the API ones won't be | 00:25 |
johnsom | Right | 00:26 |
rm_work | so yeah, whatever | 00:26 |
rm_work | I'm planning to run production off master anyway :P | 00:26 |
openstackgerrit | Michael Johnson proposed openstack/neutron-lbaas-dashboard: Allow hacking 0.12.x https://review.openstack.org/410416 | 00:27 |
*** ducttape_ has quit IRC | 00:47 | |
*** amotoki has joined #openstack-lbaas | 00:49 | |
*** nrado has quit IRC | 01:15 | |
*** ducttape_ has joined #openstack-lbaas | 01:19 | |
johnsom | Well, that is neat, the py3x gate couldn't ssh into the cirros image: http://logs.openstack.org/90/424890/1/check/gate-octavia-v1-dsvm-py3x-scenario-ubuntu-xenial-nv/8761dcc/console.html | 01:25 |
johnsom | Same with the multi-node gate | 01:25 |
*** kevo has quit IRC | 01:48 | |
*** KunalGandhi has joined #openstack-lbaas | 01:49 | |
harlowja | johnsom are u gonna be in the bay area anytime :-P | 02:01 |
johnsom | Umm, yes actually, on vacation. What is up? | 02:01 |
harlowja | u are | 02:01 |
harlowja | hmmmm, tempting | 02:01 |
johnsom | May-ish | 02:02 |
johnsom | Not finalized | 02:02 |
harlowja | kk | 02:02 |
johnsom | Want to buy me a beer? | 02:02 |
harlowja | ok, nothing to worry about yet, just might be interesting to meet up and talk some lbaas | 02:02 |
johnsom | Ha, ok | 02:02 |
johnsom | You know I'm always open for a hangout chat too | 02:02 |
johnsom | We could of course chat at the PTG too, but somebody is slacking off.... Grin | 02:03 |
harlowja | hey man, family ski vacation | 02:03 |
harlowja | gotta go, ha | 02:04 |
xgerman | Nice! | 02:04 |
johnsom | Expecting fresh powder that week? | 02:04 |
harlowja | always, ha | 02:04 |
rm_work | yeah we're looking at doing FLIPs inside octavia and giving out a FLIP address as the "VIP" | 02:05 |
rm_work | I forget how RAX handled that? because we were doing something similar, right? | 02:05 |
rm_work | creating FLIPs takes a network_id though instead of a subnet_id like we require on our VIP object during LB create | 02:06 |
*** ducttape_ has quit IRC | 02:06 | |
johnsom | That is an easy lookup though, if it is not a property. | 02:06 |
openstackgerrit | Merged openstack/octavia: Updated from global requirements https://review.openstack.org/424620 | 02:06 |
harlowja | i'll let u guys figure it out, gotta run | 02:07 |
harlowja | :-P | 02:07 |
harlowja | goooo taskflow! | 02:07 |
harlowja | ha | 02:07 |
johnsom | Hmm, I think there are some arguments against, but I'm a bit fried at the moment from staring at this centos stuff | 02:07 |
johnsom | haha | 02:07 |
rm_work | uhhh hang on | 02:07 |
rm_work | sooooo | 02:07 |
rm_work | http://developer.openstack.org/api-ref/networking/v2/?expanded=create-a-load-balancer-detail | 02:07 |
rm_work | we're moving octavia to the n-lbaas API | 02:07 |
rm_work | for "vip_subnet_id" it says: The ID of the subnet on which to allocate the virtual IP (VIP) address. This option is required if no vip_network_id is given. | 02:08 |
johnsom | well, something like that | 02:08 |
rm_work | I don't see vip_network_id as a param?? | 02:08 |
johnsom | Yeah, don't trust the docs out there. They have been scrambled | 02:08 |
johnsom | Trust the code | 02:09 |
rm_work | ok so it's possible we're actually fine | 02:09 |
rm_work | we can take a network_id | 02:09 |
rm_work | yeah octavia's current API is subnet_id only | 02:09 |
rm_work | but | 02:09 |
rm_work | I'll take a look at neutron-lbaas again | 02:09 |
johnsom | But again, you can get network from subnet so, not a big deal | 02:09 |
johnsom | Picking the right subnet from a network is another story | 02:10 |
*** ducttape_ has joined #openstack-lbaas | 02:10 | |
rm_work | johnsom: kinda... | 02:11 |
rm_work | so FLIPs are provisioned by network_id | 02:11 |
rm_work | so if the user had to find the right FLIP network, then pick a random subnet from it, pass that to us, so we could just *not use it* and provision a FLIP on that subnet.network_id and have the FLIP end up on some other subnet... | 02:11 |
rm_work | lol | 02:11 |
rm_work | kinda dumb | 02:11 |
johnsom | Yeah, it's a NAT so, that makes sense there. You have to tell it the subnet/IP to target | 02:11 |
rm_work | so we'd like to let the user provide a subnet_id *or* a network_id for lb create | 02:12 |
rm_work | for the vip object | 02:12 |
rm_work | does that seem reasonable? | 02:13 |
rm_work | I'll prolly bring it up in the meeting tomorrow | 02:13 |
johnsom | If we allow network_id, which subnet on that network gets the VIP? | 02:13 |
rm_work | in the case of FLIPs... it's up to the scheduler? | 02:14 |
rm_work | elsewise... random.choice()? | 02:14 |
rm_work | if the user *really* doesn't care... that should be fine | 02:14 |
rm_work | if they do, then they should provide a subnet instead | 02:14 |
rm_work | and if they provide the subnet we'd always default to that | 02:14 |
rm_work | technically it's up to the drivers to handle it, right? so in a flip_driver it'd use the network_id and ignore subnet | 02:15 |
rm_work | in the existing aap driver, it'd prefer subnet, and if none was provided it'd go down to random.choice(network.subnets) | 02:15 |
rm_work | which in most cases might just be one <_< | 02:15 |
rm_work | but again, it's the user's choice if they supply a network_id instead of a subnet, so they should only be doing that if that is what they actually want to happen | 02:16 |
rm_work | if you provide a network_id and get annoyed it got provisioned on subnetA instead of subnetB, you should have just provided subnetB >_> | 02:17 |
johnsom | Hmmm. Ok, I need to go eat dinner. We can talk about it more tomorrow. | 02:17 |
rm_work | kk | 02:17 |
openstackgerrit | Michael Johnson proposed openstack/octavia: Fix the amphora-agent support for RH based Linux flavors https://review.openstack.org/331841 | 02:17 |
*** sanfern has quit IRC | 02:24 | |
*** armax has quit IRC | 02:31 | |
*** KunalGandhi has quit IRC | 02:45 | |
*** eezhova has joined #openstack-lbaas | 03:32 | |
openstackgerrit | Michael Johnson proposed openstack/octavia: Fix the amphora-agent support for RH based Linux flavors https://review.openstack.org/331841 | 03:34 |
*** anilvenkata has joined #openstack-lbaas | 03:50 | |
*** ducttape_ has quit IRC | 03:57 | |
*** armax has joined #openstack-lbaas | 04:10 | |
*** sputnik13 has joined #openstack-lbaas | 04:21 | |
*** eezhova has quit IRC | 04:22 | |
*** ducttape_ has joined #openstack-lbaas | 04:24 | |
openstackgerrit | Michael Johnson proposed openstack/octavia: Fix the amphora-agent support for RH based Linux flavors https://review.openstack.org/331841 | 04:27 |
*** armax has quit IRC | 04:30 | |
*** sanfern has joined #openstack-lbaas | 04:41 | |
*** ducttape_ has quit IRC | 04:46 | |
*** ianychoi has joined #openstack-lbaas | 04:55 | |
*** armax has joined #openstack-lbaas | 04:55 | |
*** armax has quit IRC | 04:56 | |
openstackgerrit | Sindhu Devale proposed openstack/octavia: Octavia v2 API for listeners https://review.openstack.org/424744 | 05:10 |
*** saju_m has joined #openstack-lbaas | 05:15 | |
openstackgerrit | Michael Johnson proposed openstack/octavia: Fix the amphora-agent support for RH based Linux flavors https://review.openstack.org/331841 | 05:17 |
*** gongysh has joined #openstack-lbaas | 05:18 | |
*** Alex_Staf has joined #openstack-lbaas | 05:19 | |
*** eezhova has joined #openstack-lbaas | 05:29 | |
openstackgerrit | Michael Johnson proposed openstack/octavia: Fix the amphora-agent support for RH based Linux flavors https://review.openstack.org/331841 | 05:40 |
*** ducttape_ has joined #openstack-lbaas | 05:46 | |
*** csomerville has quit IRC | 05:47 | |
*** cody-somerville has joined #openstack-lbaas | 05:49 | |
*** cody-somerville has quit IRC | 05:49 | |
*** cody-somerville has joined #openstack-lbaas | 05:49 | |
*** ducttape_ has quit IRC | 05:51 | |
Alex_Staf | nmagnezi, I have it in my TP. active standby and pool testing. I will send the TP to u if u want . | 05:56 |
*** kevo has joined #openstack-lbaas | 05:58 | |
*** KunalGandhi has joined #openstack-lbaas | 05:59 | |
openstackgerrit | Michael Johnson proposed openstack/octavia: Fix the amphora-agent support for RH based Linux flavors https://review.openstack.org/331841 | 06:11 |
*** armax has joined #openstack-lbaas | 06:13 | |
*** ianychoi has quit IRC | 06:15 | |
*** armax has quit IRC | 06:16 | |
rm_work | johnsom: still at it? :/ | 06:17 |
johnsom | Yeah | 06:17 |
johnsom | Running another test pass | 06:18 |
*** KunalGandhi has quit IRC | 06:19 | |
rm_work | i'm looking at implementing sort_dir and sort_key | 06:24 |
*** nrado has joined #openstack-lbaas | 06:24 | |
johnsom | Joy. Didn't you get that from glance? | 06:25 |
rm_work | it was at a higher level | 06:25 |
rm_work | and they technically ONLY handle that way, I think | 06:25 |
rm_work | it isn't actually that hard | 06:25 |
rm_work | I just have to do it | 06:25 |
rm_work | I think it'll give precedence to sort= and only use sort_key= as a backup? | 06:26 |
rm_work | that is fine, right? | 06:26 |
rm_work | or should I try to combine | 06:26 |
rm_work | <_< | 06:26 |
rm_work | probably just one or the other | 06:26 |
rm_work | if sort= is present I won't use sort_key= | 06:26 |
johnsom | I think one of the other is fine | 06:26 |
johnsom | Yeah, the new way, sort= (I think) should have precidence | 06:27 |
*** saju_m has quit IRC | 06:29 | |
*** anilvenkata has quit IRC | 06:32 | |
rm_work | alright pretty much got it | 06:35 |
rm_work | looking at how much effort it'd be to slap filters into here too | 06:35 |
rm_work | are sort keys supposed to be case-sensitive? | 06:38 |
rm_work | I guess so? | 06:38 |
johnsom | Ha, I have no idea | 06:39 |
rm_work | ugh testing | 06:44 |
*** anilvenkata has joined #openstack-lbaas | 06:44 | |
*** saju_m has joined #openstack-lbaas | 06:47 | |
rm_work | uuuuugh | 06:49 |
rm_work | glance has so much better basic test infrastructure it seems | 06:50 |
rm_work | we're missing a ton of stuff for testing this properly | 06:50 |
rm_work | like they have a FakeDB thing | 06:50 |
openstackgerrit | Adam Harwell proposed openstack/octavia: Implement sorting and pagination for octavia https://review.openstack.org/382147 | 06:56 |
johnsom | We have a fake db too, for the functional tests | 06:56 |
rm_work | hmmm | 07:01 |
rm_work | they use it for unit tests too O_o | 07:01 |
rm_work | maybe I can make use of it... | 07:02 |
johnsom | Yeah, I would expect most if not all of the tests for that will be functional API tests. | 07:02 |
rm_work | uhhh maybe I can just make the tests for this stuff be functional tests <_< | 07:03 |
rm_work | heh yeah k | 07:03 |
johnsom | Ok, calling it a night. Catch you in the morning | 07:05 |
rm_work | night | 07:05 |
nmagnezi | johnsom, good night :) | 07:06 |
rm_work | ummm i forgot what time the meeting is, but I should be awake :P | 07:06 |
johnsom | Noon pacific | 07:07 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron-lbaas-dashboard: Imported Translations from Zanata https://review.openstack.org/425013 | 07:13 |
*** yamamoto has quit IRC | 07:17 | |
*** anilvenkata has quit IRC | 07:17 | |
*** ducttape_ has joined #openstack-lbaas | 07:17 | |
*** ducttape_ has quit IRC | 07:22 | |
*** pcaruana has joined #openstack-lbaas | 07:28 | |
*** anilvenkata has joined #openstack-lbaas | 07:30 | |
*** saju_m has quit IRC | 07:32 | |
*** saju_m has joined #openstack-lbaas | 07:34 | |
*** tesseract has joined #openstack-lbaas | 07:34 | |
openstackgerrit | Brandon Logan proposed openstack/octavia: Remove v1 base type https://review.openstack.org/425026 | 07:37 |
*** saju_m has quit IRC | 07:46 | |
rm_work | blogan: what was the point of that even | 07:53 |
rm_work | oh I see, it was a deprecation thing | 07:53 |
*** yamamoto has joined #openstack-lbaas | 08:00 | |
*** yamamoto has quit IRC | 08:02 | |
*** yamamoto has joined #openstack-lbaas | 08:03 | |
*** ianychoi has joined #openstack-lbaas | 08:12 | |
*** gcheresh has joined #openstack-lbaas | 08:14 | |
*** amotoki has quit IRC | 08:47 | |
*** ducttape_ has joined #openstack-lbaas | 08:48 | |
*** ducttape_ has quit IRC | 08:52 | |
openstackgerrit | Adam Harwell proposed openstack/octavia: Implement sorting and pagination for octavia https://review.openstack.org/382147 | 08:58 |
*** kevo has quit IRC | 09:09 | |
*** yamamoto has quit IRC | 09:38 | |
*** strigazi_AFK is now known as strigazi | 09:50 | |
rm_work | ugh almost have it | 09:51 |
rm_work | just a few tests that I'm not clear on... | 09:51 |
rm_work | putting it up as-is, leaving the three functional tests I added in a failing state until I figure out whether they're failing in the "correct way" or not <_< | 09:58 |
openstackgerrit | Adam Harwell proposed openstack/octavia: Implement sorting and pagination for octavia https://review.openstack.org/382147 | 10:00 |
*** openstackgerrit has quit IRC | 10:17 | |
*** amotoki has joined #openstack-lbaas | 10:19 | |
*** yamamoto has joined #openstack-lbaas | 10:25 | |
*** yamamoto has quit IRC | 10:26 | |
*** gcheresh_ has joined #openstack-lbaas | 10:54 | |
*** gcheresh has quit IRC | 10:58 | |
*** nrado has quit IRC | 11:05 | |
*** nrado has joined #openstack-lbaas | 11:05 | |
*** nrado has quit IRC | 11:08 | |
*** nrado has joined #openstack-lbaas | 11:08 | |
*** yamamoto has joined #openstack-lbaas | 11:18 | |
*** yamamoto has quit IRC | 11:18 | |
*** yamamoto has joined #openstack-lbaas | 11:33 | |
*** yamamoto has quit IRC | 11:34 | |
*** anilvenkata has quit IRC | 11:41 | |
*** sanfern has quit IRC | 11:45 | |
*** ducttape_ has joined #openstack-lbaas | 11:49 | |
*** ducttape_ has quit IRC | 11:53 | |
*** anilvenkata has joined #openstack-lbaas | 12:01 | |
*** anilvenkata has quit IRC | 12:09 | |
*** reedip_ has joined #openstack-lbaas | 12:11 | |
*** anilvenkata has joined #openstack-lbaas | 12:21 | |
*** nrado has left #openstack-lbaas | 12:22 | |
*** catintheroof has joined #openstack-lbaas | 12:28 | |
-openstackstatus- NOTICE: Gerrit is going to be restarted due to slow performance | 12:46 | |
*** ducttape_ has joined #openstack-lbaas | 12:48 | |
-openstackstatus- NOTICE: Gerrit has been successfully restarted | 12:49 | |
*** eezhova has quit IRC | 12:55 | |
*** eezhova has joined #openstack-lbaas | 13:01 | |
*** sanfern has joined #openstack-lbaas | 13:13 | |
*** ducttape_ has quit IRC | 13:34 | |
*** openstackgerrit has joined #openstack-lbaas | 13:38 | |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE Topology - Initial Cluster Manager https://review.openstack.org/405238 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE Topology: Initial Distributor Noop Driver https://review.openstack.org/313006 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE Topology : create distributor network flow https://review.openstack.org/409763 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: Active-Active Topology - register/uregister amphorae tasks https://review.openstack.org/409765 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: Active-Active Topology - Cluster DB Tasks https://review.openstack.org/409764 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE Topology OVS-based Distributor Driver https://review.openstack.org/317629 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE Topology OVS-based Distributor Backend https://review.openstack.org/320422 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE Topology - Distributor related tasks https://review.openstack.org/406951 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE - controller network tasks https://review.openstack.org/323481 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE Topology - Distributor image creation https://review.openstack.org/403594 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE - network driver related changes https://review.openstack.org/322494 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE - distributor certificate tasks https://review.openstack.org/406952 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE Topology - distributor creation flow https://review.openstack.org/406953 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE Topology - create shared distributor https://review.openstack.org/406954 | 13:38 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: Active-Active Topology - added disable arp https://review.openstack.org/425175 | 13:38 |
*** eezhova has quit IRC | 13:42 | |
*** pck has quit IRC | 13:52 | |
*** pck has joined #openstack-lbaas | 13:53 | |
*** ipsecguy has quit IRC | 13:53 | |
*** ipsecguy has joined #openstack-lbaas | 14:01 | |
*** ducttape_ has joined #openstack-lbaas | 14:06 | |
*** matt-borland has joined #openstack-lbaas | 14:15 | |
openstackgerrit | Nir Magnezi proposed openstack/octavia: Fix the amphora-agent support for RH based Linux flavors https://review.openstack.org/331841 | 14:23 |
*** ducttape_ has quit IRC | 14:33 | |
*** catinthe_ has joined #openstack-lbaas | 15:00 | |
*** catintheroof has quit IRC | 15:02 | |
*** fnaval has joined #openstack-lbaas | 15:05 | |
*** ducttape_ has joined #openstack-lbaas | 15:08 | |
*** jschwarz is now known as jschwarz|brb | 15:41 | |
*** catintheroof has joined #openstack-lbaas | 15:43 | |
*** catinthe_ has quit IRC | 15:46 | |
*** gcheresh_ has quit IRC | 15:46 | |
*** jschwarz|brb is now known as jschwarz | 15:48 | |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: Active-Active Topology - added disable arp https://review.openstack.org/425175 | 15:55 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: Active-Active Topology - register/uregister amphorae tasks https://review.openstack.org/409765 | 15:55 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: Active-Active Topology - Cluster DB Tasks https://review.openstack.org/409764 | 15:55 |
*** _ducttape_ has joined #openstack-lbaas | 15:58 | |
*** KunalGandhi has joined #openstack-lbaas | 15:59 | |
*** ducttape_ has quit IRC | 16:02 | |
*** gongysh has quit IRC | 16:07 | |
*** anilvenkata has quit IRC | 16:07 | |
*** eezhova has joined #openstack-lbaas | 16:07 | |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: Active-Active Topology - added disable arp https://review.openstack.org/425175 | 16:12 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: Active-Active Topology - register/uregister amphorae tasks https://review.openstack.org/409765 | 16:12 |
openstackgerrit | Abed Abu dbai proposed openstack/octavia: ACTIVE-ACTIVE Topology : create distributor network flow https://review.openstack.org/425258 | 16:12 |
*** gcheresh_ has joined #openstack-lbaas | 16:13 | |
*** KunalGandhi has quit IRC | 16:14 | |
*** armax has joined #openstack-lbaas | 16:18 | |
*** _ducttape_ has quit IRC | 16:23 | |
*** ducttape_ has joined #openstack-lbaas | 16:23 | |
*** ankur-gupta-f2 has joined #openstack-lbaas | 16:32 | |
*** AlexeyAbashkin has quit IRC | 16:35 | |
*** gcheresh_ has quit IRC | 17:15 | |
openstackgerrit | Nakul Dahiwade proposed openstack/octavia: Introduce Octavia v2 API for Members https://review.openstack.org/405932 | 17:16 |
*** reedip_ has quit IRC | 17:23 | |
*** anilvenkata has joined #openstack-lbaas | 17:33 | |
*** tesseract has quit IRC | 17:33 | |
*** kevo has joined #openstack-lbaas | 17:36 | |
openstackgerrit | Nakul Dahiwade proposed openstack/octavia: Align Octavia v2 API for Members https://review.openstack.org/423393 | 17:44 |
*** cody-somerville has quit IRC | 17:48 | |
*** cody-somerville has joined #openstack-lbaas | 17:48 | |
*** cody-somerville has quit IRC | 17:48 | |
*** cody-somerville has joined #openstack-lbaas | 17:48 | |
*** KunalGandhi has joined #openstack-lbaas | 17:54 | |
*** beagles is now known as beagles-biab | 17:59 | |
*** eezhova has quit IRC | 18:08 | |
*** rm_mobile has joined #openstack-lbaas | 18:09 | |
*** rm_mobile has joined #openstack-lbaas | 18:09 | |
rm_mobile | johnsom what time is the meeting today? Ideally in like... Time from now | 18:09 |
johnsom | rm_mobile Two hours from now | 18:10 |
johnsom | (minus the 10 minutes) | 18:10 |
rm_mobile | K cool | 18:10 |
rm_mobile | Thanks | 18:10 |
*** matt-borland has quit IRC | 18:23 | |
*** catinthe_ has joined #openstack-lbaas | 18:33 | |
*** catintheroof has quit IRC | 18:35 | |
xgerman | what does tune2 do? in addition to brick my Mac? | 18:36 |
xgerman | tune2fs | 18:36 |
*** KunalGandhi has quit IRC | 18:40 | |
*** gcheresh_ has joined #openstack-lbaas | 18:40 | |
*** KunalGandhi has joined #openstack-lbaas | 18:40 | |
*** KunalGandhi has quit IRC | 18:45 | |
*** pcaruana has quit IRC | 18:53 | |
rm_mobile | Changing ext2/3/4 metadata | 18:53 |
rm_mobile | Why do you have that on your Mac? Lol | 18:54 |
johnsom | Yeah, be careful with tune2fs | 18:57 |
johnsom | It's used for configuring filesystems | 18:58 |
xgerman | for some reason when I run ./devstack in my vm it does this crap | 18:58 |
johnsom | I think diskimage-builder runs it against the image it is building, but I can't think why devstack would use it otherwise | 18:58 |
xgerman | and then why would it run amok | 18:59 |
xgerman | getting another datapoint | 18:59 |
johnsom | This is the only use of it I see in devstack: http://logs.openstack.org/90/424890/1/check/gate-neutron-lbaasv2-dsvm-scenario-ubuntu-xenial-nv/b4533a6/logs/devstacklog.txt.gz#_2017-01-24_23_28_00_369 | 19:00 |
johnsom | Which is the DIB config of the new image | 19:00 |
*** sshank_ has quit IRC | 19:00 | |
rm_mobile | Yeah DIB USES it | 19:01 |
rm_mobile | But it should just be on the new VM's filesystem | 19:01 |
johnsom | bin/disk-image-create: sudo tune2fs -U ${DIB_IMAGE_ROOT_FS_UUID} ${IMAGE_BLOCK_DEVICE} | 19:01 |
johnsom | Yeah, it sets a UUID on the FS | 19:01 |
rm_mobile | Never had a problem on my Mac in a VM | 19:01 |
*** sshank has joined #openstack-lbaas | 19:02 | |
johnsom | I haven't had a problem with it either, but I'm running native ubuntu | 19:02 |
*** csomerville has joined #openstack-lbaas | 19:03 | |
*** KunalGandhi has joined #openstack-lbaas | 19:03 | |
*** cody-somerville has quit IRC | 19:06 | |
*** anilvenkata has quit IRC | 19:15 | |
rm_work | ah does availability_zone *not* take a list? | 19:25 |
rm_work | I guess that is probably a downstream patch | 19:25 |
rm_work | I pass: availability_zone="zone1,zone2,zone3" | 19:25 |
*** rm_mobile has quit IRC | 19:34 | |
*** eezhova has joined #openstack-lbaas | 19:53 | |
johnsom | Octavia meeting starting soon on #openstack-meeting-alt | 19:57 |
nmagnezi | ack | 19:59 |
*** KunalGandhi has quit IRC | 20:08 | |
*** KunalGandhi has joined #openstack-lbaas | 20:08 | |
*** KunalGandhi has quit IRC | 20:12 | |
openstackgerrit | Merged openstack/neutron-lbaas-dashboard: Imported Translations from Zanata https://review.openstack.org/425013 | 20:13 |
openstackgerrit | Merged openstack/neutron-lbaas-dashboard: Allow hacking 0.12.x https://review.openstack.org/410416 | 20:13 |
*** beagles-biab is now known as beagles | 20:16 | |
openstackgerrit | Nakul Dahiwade proposed openstack/octavia: Align Octavia v2 API for Members https://review.openstack.org/423393 | 20:22 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron-lbaas-dashboard: Updated from global requirements https://review.openstack.org/425394 | 20:24 |
*** catinthe_ has quit IRC | 20:27 | |
nmagnezi | xgerman, rm_work, johnsom, if and when any of you have a cycle to spare - it would be nice if you can have a look at this newton backport (no conflicts): https://review.openstack.org/#/c/425084/ | 20:31 |
xgerman | we usually don’t add features to previous releases only bug/security foxes | 20:32 |
johnsom | Correct | 20:32 |
johnsom | http://docs.openstack.org/project-team-guide/stable-branches.html | 20:32 |
dasm | xgerman: does it mean, we could backport this security fox? http://www.myalberton.co.za/wp-content/uploads/2014/06/download-1.jpg | 20:41 |
dasm | ;) | 20:41 |
xgerman | totally | 20:42 |
*** diltram has quit IRC | 20:46 | |
*** diltram has joined #openstack-lbaas | 20:46 | |
*** KunalGandhi has joined #openstack-lbaas | 20:51 | |
openstackgerrit | Shashank Kumar Shankar proposed openstack/octavia: Introduce Octavia v2 API for Pools with LBaaS align https://review.openstack.org/420195 | 21:07 |
rm_work | so I'm not sure on paging/sorting how the API should respond in case of certain failures | 21:07 |
rm_work | http://logs.openstack.org/47/382147/21/check/gate-octavia-tox-functional-ubuntu-xenial/5f223f8/testr_results.html.gz | 21:08 |
rm_work | the three fails there | 21:08 |
rm_work | octavia.common.exceptions.InvalidSortKey: Supplied sort key '[u'name', u'desc', u'asc']' is not valid. | 21:08 |
rm_work | will pecan handle that properly? | 21:08 |
rm_work | or is that a 500 | 21:08 |
*** yamamoto has joined #openstack-lbaas | 21:27 | |
rm_work | oh btw johnsom i figured out the functional test runner issue when running isolated tests | 21:29 |
rm_work | https://review.openstack.org/#/c/382147/21/octavia/tests/functional/api/v1/base.py | 21:32 |
rm_work | that | 21:32 |
rm_work | if we don't import config our config stuff never gets loaded | 21:33 |
rm_work | so everything explodes in the setup | 21:33 |
*** eezhova has quit IRC | 21:33 | |
rm_work | we don't even need to DO anything with it (thus the #noqa) | 21:33 |
xgerman | johnsom I have been told that with big tent you can backport features which land in 1, e.g. if a geature hits Pike-1 it could be backported to Ocata - doesn’t help nmagnezi though ;-) | 21:36 |
*** yamamoto has quit IRC | 21:36 | |
johnsom | rm_work You need to make those API exceptions with a HTTP status code I think | 21:38 |
johnsom | Then they will be handled correctly | 21:38 |
rm_work | hmmm | 21:38 |
rm_work | right now the hook just raises an exception | 21:38 |
johnsom | Look two classes above your exceptions | 21:38 |
rm_work | so if I go into the *exception classes*? | 21:38 |
rm_work | yeah k | 21:38 |
rm_work | What if I can't get the exception to raise *during the hook* but it happens further down? | 21:39 |
rm_work | I guess I'll find out | 21:39 |
johnsom | As long as it is based off APIException, it should go back correctly | 21:39 |
rm_work | awesome | 21:40 |
rm_work | that was the last thing | 21:40 |
rm_work | fixing the tests actually found one or two last bugs | 21:40 |
rm_work | and now i think it should be good once i fix that | 21:40 |
rm_work | apparently I missed in the commit message that he said it was based on oslo_db paging/sorting | 21:41 |
rm_work | but it was really broken regardless so i think replacing it with the code from glance was probably for the best | 21:41 |
rm_work | whelp my tmux just crashed and *disappeared*. awesome | 21:42 |
rm_work | johnsom: i'll look over the code for the centos amp patch today | 21:44 |
rm_work | i think i looked over it before once too | 21:44 |
rm_work | you seem to have the testing handled? | 21:44 |
johnsom | rm_work Yeah, there is still a bug I'm tracking down, but I am focused on manual real-world testing | 21:46 |
rm_work | kk | 21:46 |
rm_work | let me know if you need help | 21:46 |
johnsom | It doesn't create the lb in it's current form. Bug I introduced yesterdayy | 21:46 |
rm_work | i'm working on paging/sorting and this az thing but i can context switch if it's useful | 21:46 |
johnsom | Thanks | 21:46 |
openstackgerrit | Adam Harwell proposed openstack/octavia: Add option to choose an availability_zone for amps https://review.openstack.org/424816 | 21:49 |
*** gcheresh_ has quit IRC | 21:49 | |
openstackgerrit | Shashank Kumar Shankar proposed openstack/octavia: Align Octavia API to n-lbaasv2 for L7Rules https://review.openstack.org/406336 | 22:03 |
*** _ducttape_ has joined #openstack-lbaas | 22:09 | |
*** ducttape_ has quit IRC | 22:12 | |
openstackgerrit | Adam Harwell proposed openstack/octavia: Add option to choose an availability_zone for amps https://review.openstack.org/424816 | 22:16 |
rm_work | johnsom: code 400 for all of those? | 22:19 |
johnsom | Yeah, I think that works | 22:20 |
johnsom | rm_work BTW, if you have a minute: https://review.openstack.org/#/c/424851/ | 22:21 |
rm_work | kk need to run to the store but i will when i get back | 22:22 |
*** yamamoto has joined #openstack-lbaas | 22:22 | |
openstackgerrit | Shashank Kumar Shankar proposed openstack/octavia: Align Octavia API to n-lbaasv2 for L7Rules https://review.openstack.org/406336 | 22:24 |
openstackgerrit | Adam Harwell proposed openstack/octavia: Implement sorting and pagination for octavia https://review.openstack.org/382147 | 22:25 |
nmagnezi | johnsom, any luck with the network dir path issue? I think I ran into this in some tests as well | 22:26 |
johnsom | nmagnezi working on it now | 22:27 |
johnsom | https://www.irccloud.com/pastebin/r069Vv9T/ | 22:27 |
johnsom | It's osutils.py 366 running the wrong version | 22:29 |
*** _ducttape_ has quit IRC | 22:29 | |
*** ducttape_ has joined #openstack-lbaas | 22:29 | |
*** _ducttape_ has joined #openstack-lbaas | 22:53 | |
nmagnezi | johnsom, i have found something | 22:53 |
johnsom | Do tell | 22:53 |
johnsom | Just got out of meeting | 22:54 |
nmagnezi | johnsom, https://review.openstack.org/#/c/331841/65/octavia/common/constants.py | 22:54 |
nmagnezi | johnsom, you have unneeded 'y' | 22:54 |
nmagnezi | johnsom, which leads to amphora-haproxyy | 22:55 |
johnsom | Ah, yep, that is a typo | 22:56 |
nmagnezi | johnsom, this failed some functional tests | 22:56 |
*** ducttape_ has quit IRC | 22:56 | |
nmagnezi | johnsom, how they fail for something else :< | 22:56 |
*** _ducttape_ has quit IRC | 22:57 | |
*** catintheroof has joined #openstack-lbaas | 23:00 | |
johnsom | Ok, I fixed my issue | 23:00 |
nmagnezi | johnsom, the folder path thing? | 23:01 |
johnsom | Both issues. | 23:01 |
johnsom | Can I push up a new patch? | 23:01 |
nmagnezi | yes | 23:02 |
johnsom | Ok, I'm creating an LB now, will push in a minute. | 23:02 |
nmagnezi | ok | 23:03 |
openstackgerrit | Michael Johnson proposed openstack/octavia: Fix the amphora-agent support for RH based Linux flavors https://review.openstack.org/331841 | 23:08 |
johnsom | nmagnezi ^^^ that boots a working centos amp | 23:09 |
johnsom | So I am going to go back to working on testing against my test matrix | 23:09 |
nmagnezi | johnsom, oh, i understand the bug you witnessed now. i shouldn't have used super here: https://review.openstack.org/#/c/331841/65..66/octavia/amphorae/backends/agent/api_server/osutils.py | 23:11 |
nmagnezi | sorry about that | 23:11 |
nmagnezi | the result of coding after midnight | 23:11 |
johnsom | NP, that is what we are looking for. Catch these now.... | 23:11 |
nmagnezi | johnsom, yup. so I'm going to push a small one to address you comment about the oslo_fixture | 23:12 |
johnsom | Ok, just make sure you rebase onto that new version | 23:13 |
nmagnezi | johnsom, sure will | 23:15 |
nmagnezi | johnsom, heads up both octavia.tests.functional.amphorae.backend.agent.api_server.test_server.TestUbuntuServerTestCase.test_plug_VIP4 and octavia.tests.functional.amphorae.backend.agent.api_server.test_server.TestUbuntuServerTestCase.test_plug_VIP6 will fail | 23:16 |
nmagnezi | johnsom, first the failed because of the typo, now for something else | 23:16 |
johnsom | ok | 23:16 |
johnsom | I plan to go through my tests before I look at working on unit/functional tests. | 23:16 |
nmagnezi | johnsom, I understand | 23:17 |
nmagnezi | johnsom, I'm starting to worry that I won't make it with all the tests by the cut. I wasted a lot of time debugging stuff | 23:18 |
johnsom | Yeah, keep working on it. We will see how far we get | 23:18 |
*** KunalGandhi has quit IRC | 23:20 | |
openstackgerrit | Shashank Kumar Shankar proposed openstack/octavia: Introduce Octavia v2 API for Pools with LBaaS align https://review.openstack.org/420195 | 23:22 |
*** ducttape_ has joined #openstack-lbaas | 23:25 | |
openstackgerrit | Nir Magnezi proposed openstack/octavia: Fix the amphora-agent support for RH based Linux flavors https://review.openstack.org/331841 | 23:26 |
nmagnezi | johnsom, ^^ | 23:26 |
johnsom | Ok | 23:27 |
rm_work | I mean, we can review as late as tomorrow night, right? :) | 23:57 |
*** catintheroof has quit IRC | 23:58 | |
johnsom | Yes | 23:59 |
*** catintheroof has joined #openstack-lbaas | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!