*** dayou has joined #openstack-lbaas | 00:01 | |
openstackgerrit | Adam Harwell proposed openstack/octavia master: Gatefix: Migrate from testr to stestr https://review.openstack.org/503156 | 00:02 |
---|---|---|
openstackgerrit | Adam Harwell proposed openstack/octavia master: Gatefix: Migrate from testr to stestr https://review.openstack.org/503156 | 00:04 |
*** salmankhan has quit IRC | 00:19 | |
*** ianychoi_ is now known as ianychoi | 00:39 | |
dayou | @johnsom, I remember you have a script to automate the creation of loadbalancers/listeners/members in devstack, would like to use it but don't know where it is. | 00:41 |
*** cody-somerville has joined #openstack-lbaas | 00:54 | |
*** cody-somerville has quit IRC | 00:54 | |
*** cody-somerville has joined #openstack-lbaas | 00:54 | |
*** atoth has quit IRC | 01:00 | |
*** catintheroof has quit IRC | 01:13 | |
openstackgerrit | Hengqing Hu proposed openstack/neutron-lbaas master: Use interface opts from the right place https://review.openstack.org/503498 | 01:39 |
*** yamamoto_ has joined #openstack-lbaas | 01:40 | |
openstackgerrit | Merged openstack/python-octaviaclient master: Move to auto-generated CLI reference https://review.openstack.org/496827 | 01:40 |
openstackgerrit | Merged openstack/octavia-dashboard master: Update links in README https://review.openstack.org/501115 | 01:42 |
*** cody-somerville has quit IRC | 01:44 | |
*** bbbbzhao_ has quit IRC | 02:00 | |
*** yamamoto_ has quit IRC | 02:03 | |
*** sticker has joined #openstack-lbaas | 02:12 | |
*** cody-somerville has joined #openstack-lbaas | 02:23 | |
*** fnaval has joined #openstack-lbaas | 02:27 | |
*** csomerville has joined #openstack-lbaas | 02:32 | |
*** yamamoto has joined #openstack-lbaas | 02:32 | |
*** cody-somerville has quit IRC | 02:35 | |
*** reedip_afk is now known as reedip | 02:41 | |
*** yamamoto has quit IRC | 02:47 | |
*** ramishra has joined #openstack-lbaas | 03:37 | |
ramishra | hi guys, it seems we need https://review.openstack.org/#/c/352471 to merge after https://review.openstack.org/#/c/347867/52 landed in neutron. | 03:40 |
ramishra | but it seems to be stuck for a long time, probably needs a rebase and +W ? | 03:41 |
openstackgerrit | Hengqing Hu proposed openstack/neutron-lbaas master: Updating import for linux/interface opts https://review.openstack.org/352471 | 03:46 |
*** links has joined #openstack-lbaas | 03:48 | |
ramishra | oh.. it was dependant on the neutron patch | 03:51 |
dayou | That patch is not correct | 03:53 |
*** gans has joined #openstack-lbaas | 03:57 | |
*** ramishra has quit IRC | 04:00 | |
openstackgerrit | Hengqing Hu proposed openstack/neutron-lbaas master: Updating import for linux/interface opts https://review.openstack.org/352471 | 04:01 |
*** ramishra has joined #openstack-lbaas | 04:11 | |
*** ramishra has quit IRC | 04:21 | |
*** ramishra has joined #openstack-lbaas | 04:23 | |
*** aojea has joined #openstack-lbaas | 04:34 | |
*** aojea has quit IRC | 04:38 | |
*** armax has joined #openstack-lbaas | 04:50 | |
johnsom | dayou http://paste.openstack.org/show/620996/ | 05:01 |
*** chlong has quit IRC | 05:01 | |
johnsom | That is a mostly converted to openstack client script I use for the Pike Octavia endpoint (no neutron-lbaas) | 05:01 |
sticker | hmm... i've bumped into a sort of race condition when creating a number of resources quickly | 05:07 |
dayou | Thank you very much, quite handy, will save a lot of time with this :-D | 05:08 |
sticker | if i create a lot of members quickly (eg. in a heat template or autoscaling group), the requests get fired off from the neutron_lbaas octavia driver but the first one gets in, sets the load balancer to PENDING_UPDATE and any other requests that hit get the 'immutable' response and are dropped | 05:09 |
sticker | leads to my neutron database getting out of sync with octavia | 05:09 |
sticker | anyone know if this is a known thing at the moment? | 05:09 |
johnsom | sticker If you are still using neutron-lbaas you have to enable the sync options in octavia to push status/status information back into neutron database to stop neutron from getting out of sync. | 05:10 |
sticker | the event_streamer? | 05:11 |
johnsom | Best option is to use Pike or newer and not use neutron-lbaas anymore. | 05:11 |
sticker | i'm on ocata so the loadbalancer stats bit of code isn't there (i think that landed in 11.0.1?) | 05:11 |
johnsom | sticker event_streamer and sync_provisioning_status | 05:12 |
sticker | i dont think that syncs the member configuration though does it? | 05:12 |
sticker | thats the problem i have. if i create a bunch of members, neutron db will show all of them, octavia will show *most* of them | 05:12 |
sticker | johnsom: i am really looking forward to upgrading to Pike but that is going to take a fair amount of time, this is a production setup that is not allowed downtime | 05:14 |
johnsom | neutron should be giving you a 409 when the LB is in PENDING_UPDATE and allowing addition updates to the same LB. However, I will also note: https://review.openstack.org/#/c/477034/ is really what you want.... | 05:14 |
sticker | yes, neutron sees the 409 but the driver doesn't handle it and the member configuration is not applied | 05:15 |
*** chlong has joined #openstack-lbaas | 05:15 | |
sticker | johnsom: it might be related to the multiple listeners we have for each load balancer. The other reports I have seen of this all have multiple listeners too | 05:16 |
johnsom | Yes, in 409, the member config should not be applied. I wonder if this is one of the cases where neutron is ignoring the status code the drivers are returning and pretending things were fine | 05:16 |
sticker | johnsom: it totally does.. i have patched ours to at least retry | 05:16 |
sticker | https://github.com/openstack/neutron-lbaas/blob/master/neutron_lbaas/drivers/octavia/driver.py#L426-L428 <- the call to create the member in octavia | 05:17 |
sticker | https://github.com/openstack/neutron-lbaas/blob/master/neutron_lbaas/drivers/octavia/driver.py#L128-L148 <- the request code | 05:17 |
sticker | it makes the call, logs the response code, but no retry and no checking of the result | 05:18 |
johnsom | Yeah, the no checking of the result is not good | 05:18 |
johnsom | You know you can run Pike octavia with a Ocata clouds, so if you have HA control plane for octavia you likely can do a rolling upgrade. We haven't really tested it or have gates for it yet, but in theory it should be possible | 05:19 |
sticker | i've slapped a loop in there to try again (after a short delay) if r.status_code is > 299 for now | 05:20 |
sticker | oh okay.. i might look into that | 05:20 |
johnsom | Yeah, there is one outfit running master octavia on a liberty cloud... Only for the brave IMO | 05:20 |
sticker | haha wow | 05:21 |
sticker | i'd submit a bug report and suggest my loop-iness for review but i have no idea how i would write a test for it | 05:22 |
johnsom | If you want to upstream fixes for neutron-lbaas and backport to ocata you can still do that. I'm not sure the retry is really a "fix", but if you wanted to spend some time on it. | 05:22 |
sticker | yeah, it's still a workaround | 05:22 |
johnsom | Yeah, a bug would be good. Note, we moved our bugs to the new Storyboard project (all of openstack is going to over time) | 05:22 |
johnsom | https://storyboard.openstack.org/#!/ | 05:23 |
sticker | i haven't read the upgrade notes for octavia yet for going to Pike. neutron_lbaas is gone is it? | 05:23 |
sticker | johnsom: thanks, will submit something now | 05:23 |
johnsom | It is no longer required. Octavia has it's own endpoint now. neutron-lbaas isn't yet in deprecation because we didn't get the vendor driver interface done in Octavia in Pike. Likely we will start the deprecation clock towards the end of Queens. | 05:24 |
johnsom | Much faster API, no DB issues, openstack client CLI, etc. | 05:24 |
sticker | ahh okay. nice | 05:25 |
johnsom | Ok, I'm going to sign off for the evening. Need to get some sleep before I Octavia sessions tomorrow at the PTG. | 05:26 |
*** armax has quit IRC | 05:31 | |
*** armax has joined #openstack-lbaas | 05:37 | |
*** rcernin has joined #openstack-lbaas | 05:44 | |
*** pcaruana has joined #openstack-lbaas | 05:50 | |
*** csomerville has quit IRC | 06:00 | |
*** csomerville has joined #openstack-lbaas | 06:03 | |
*** aojea has joined #openstack-lbaas | 06:03 | |
*** aojea has quit IRC | 06:10 | |
*** armax has quit IRC | 06:11 | |
*** eezhova has joined #openstack-lbaas | 06:26 | |
*** aojea has joined #openstack-lbaas | 06:35 | |
openstackgerrit | Hengqing Hu proposed openstack/octavia-dashboard master: Convert octavia-dashboard to use Octavia v2 API https://review.openstack.org/499858 | 06:46 |
*** sticker has quit IRC | 06:52 | |
*** tesseract has joined #openstack-lbaas | 06:58 | |
*** eezhova has quit IRC | 07:21 | |
*** csomerville has quit IRC | 07:24 | |
*** eezhova has joined #openstack-lbaas | 07:44 | |
*** logan- has quit IRC | 08:05 | |
*** logan- has joined #openstack-lbaas | 08:06 | |
*** yamamoto has joined #openstack-lbaas | 08:27 | |
*** gans819 has joined #openstack-lbaas | 08:29 | |
*** gans has quit IRC | 08:31 | |
openstackgerrit | Hengqing Hu proposed openstack/octavia-dashboard master: Convert octavia-dashboard to use Octavia v2 API https://review.openstack.org/499858 | 08:35 |
*** salmankhan has joined #openstack-lbaas | 09:17 | |
*** yamamoto has quit IRC | 09:26 | |
*** eezhova has quit IRC | 09:29 | |
*** yamamoto has joined #openstack-lbaas | 09:32 | |
*** yamamoto has quit IRC | 09:34 | |
*** eezhova has joined #openstack-lbaas | 09:35 | |
*** aojea_ has joined #openstack-lbaas | 09:48 | |
*** aojea has quit IRC | 09:51 | |
*** reedip has quit IRC | 10:17 | |
*** reedip has joined #openstack-lbaas | 10:17 | |
*** eezhova_ has joined #openstack-lbaas | 10:28 | |
*** eezhova has quit IRC | 10:29 | |
*** eezhova_ has quit IRC | 10:38 | |
*** eezhova has joined #openstack-lbaas | 10:39 | |
*** reedip has quit IRC | 10:39 | |
*** reedip has joined #openstack-lbaas | 10:52 | |
*** reedip is now known as reedip_afk | 11:02 | |
*** bbbbzhao_ has joined #openstack-lbaas | 11:06 | |
*** gans819 has quit IRC | 11:15 | |
nmagnezi | johnsom, o/ | 11:16 |
nmagnezi | johnsom, working on those devstack examples | 11:16 |
nmagnezi | johnsom, we need to update our devstack plugin as well | 11:16 |
nmagnezi | johnsom, we still use the old client via cli | 11:17 |
nmagnezi | johnsom, i'll try to cover that as well | 11:17 |
openstackgerrit | Lingxian Kong proposed openstack/octavia master: Fix inappropriate provisioning_status of l7 policy https://review.openstack.org/503604 | 11:42 |
openstackgerrit | ZhaoBo proposed openstack/octavia master: WIP: Support UDP load balance https://review.openstack.org/503606 | 11:59 |
*** reedip_afk has quit IRC | 12:02 | |
*** reedip_afk has joined #openstack-lbaas | 12:14 | |
*** catintheroof has joined #openstack-lbaas | 12:38 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-octaviaclient master: Updated from global requirements https://review.openstack.org/500029 | 12:44 |
openstackgerrit | Nir Magnezi proposed openstack/octavia master: WIP: Update devstack plugin and examples https://review.openstack.org/503638 | 12:57 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/octavia master: Updated from global requirements https://review.openstack.org/502047 | 12:57 |
*** eezhova has quit IRC | 12:59 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-octaviaclient master: Updated from global requirements https://review.openstack.org/500029 | 13:02 |
johnsom | nmagnezi I have a patch up for the devstack plugin (though it doesn't work) | 13:04 |
johnsom | I think I did the host binding wrong | 13:06 |
*** fnaval has quit IRC | 13:24 | |
*** leitan has joined #openstack-lbaas | 13:27 | |
*** eezhova has joined #openstack-lbaas | 13:38 | |
*** armax has joined #openstack-lbaas | 13:43 | |
*** yamamoto has joined #openstack-lbaas | 13:48 | |
*** fnaval has joined #openstack-lbaas | 13:49 | |
*** links has quit IRC | 14:05 | |
openstackgerrit | YAMAMOTO Takashi proposed openstack/neutron-lbaas master: Update after the recent refactoring of Neutron options https://review.openstack.org/503688 | 14:11 |
openstackgerrit | Hengqing Hu proposed openstack/octavia-dashboard master: Able to change lb algorithm on pool updating https://review.openstack.org/503689 | 14:27 |
*** atoth has joined #openstack-lbaas | 14:35 | |
*** yamamoto has quit IRC | 14:38 | |
*** apuimedo has joined #openstack-lbaas | 14:38 | |
apuimedo | johnsom: Hi | 14:39 |
apuimedo | I know you're in the PTG, but if you could take a look at https://review.openstack.org/#/c/352471/17 | 14:40 |
johnsom | Hi | 14:40 |
apuimedo | dulek reports that it fixes our gate | 14:40 |
johnsom | Ok, yeah, those changes were in and out yesterday. We will look soon | 14:40 |
apuimedo | in and out? | 14:41 |
*** dulek has joined #openstack-lbaas | 14:41 | |
*** armax has quit IRC | 14:47 | |
*** tonygunk has joined #openstack-lbaas | 14:49 | |
tonygunk | Got Pike standalone without Neutron set up mostly but getting error on LB creation - something around certificates | 14:51 |
tonygunk | http://paste.openstack.org/raw/621043/ | 14:51 |
tonygunk | Error: [('PEM routines', 'PEM_read_bio', 'no start line'), ('SSL routines', 'SSL_CTX_use_PrivateKey_file', 'PEM lib')] | 14:51 |
tonygunk | something I'm doing I'm sure - but passphrase is correct for private ca key | 14:52 |
tonygunk | ideas on where to troubleshoot? | 14:54 |
*** yamamoto has joined #openstack-lbaas | 14:58 | |
*** yamamoto_ has joined #openstack-lbaas | 15:01 | |
*** yamamoto has quit IRC | 15:04 | |
openstackgerrit | YAMAMOTO Takashi proposed openstack/neutron-lbaas master: Update after the recent refactoring of Neutron options https://review.openstack.org/503688 | 15:05 |
*** Alex_Staf has joined #openstack-lbaas | 15:06 | |
*** tongl has joined #openstack-lbaas | 15:06 | |
*** armax has joined #openstack-lbaas | 15:07 | |
xgerman_ | /join openstack-ptg | 15:16 |
xgerman_ | \join openstack-ptg | 15:17 |
rm_work | Storyboard for Octavia: https://storyboard.openstack.org/#!/project/908 | 15:51 |
*** rcernin has quit IRC | 15:51 | |
openstackgerrit | Brian Haley proposed openstack/neutron-lbaas master: Updating import for linux/interface opts https://review.openstack.org/352471 | 15:52 |
rm_work | Project group: https://storyboard.openstack.org/#!/project_group/70 | 15:53 |
johnsom | https://www.openstack.org/videos/boston-2017/storyboard-101-survival-guide-to-the-great-migration | 16:00 |
*** ajo has joined #openstack-lbaas | 16:06 | |
*** Alex_Staf has quit IRC | 16:09 | |
*** ipsecguy_ has joined #openstack-lbaas | 16:14 | |
*** ipsecguy has quit IRC | 16:15 | |
*** eezhova has quit IRC | 16:17 | |
*** yamamoto_ has quit IRC | 16:26 | |
*** links has joined #openstack-lbaas | 16:28 | |
*** belharar has joined #openstack-lbaas | 16:29 | |
*** belharar has quit IRC | 16:31 | |
*** Alex_Staf has joined #openstack-lbaas | 16:31 | |
*** belharar has joined #openstack-lbaas | 16:31 | |
*** yamamoto has joined #openstack-lbaas | 16:31 | |
*** belharar has quit IRC | 16:33 | |
*** tesseract has quit IRC | 16:36 | |
*** sapd_ has joined #openstack-lbaas | 16:42 | |
*** apuimedo has quit IRC | 16:43 | |
*** sapd has quit IRC | 16:44 | |
*** eezhova has joined #openstack-lbaas | 16:47 | |
*** JudeC has joined #openstack-lbaas | 16:55 | |
*** sshank has joined #openstack-lbaas | 17:06 | |
*** rstarmer has joined #openstack-lbaas | 17:09 | |
openstackgerrit | Adam Harwell proposed openstack/octavia master: Gatefix: Migrate from testr to stestr https://review.openstack.org/503156 | 17:12 |
*** yamamoto has quit IRC | 17:17 | |
*** chlong_ has joined #openstack-lbaas | 17:22 | |
*** chlong has quit IRC | 17:24 | |
*** links has quit IRC | 17:27 | |
*** armax has quit IRC | 17:40 | |
*** sshank has quit IRC | 17:42 | |
*** apuimedo has joined #openstack-lbaas | 17:45 | |
*** Alex_Staf has quit IRC | 17:47 | |
*** Alex_Staf has joined #openstack-lbaas | 17:49 | |
*** Alex_Staf has quit IRC | 17:54 | |
*** sshank has joined #openstack-lbaas | 17:58 | |
*** tongl has quit IRC | 18:01 | |
*** ramishra has quit IRC | 18:14 | |
*** mixos has joined #openstack-lbaas | 18:24 | |
*** eezhova has quit IRC | 18:25 | |
*** rstarmer has quit IRC | 18:30 | |
*** rstarmer has joined #openstack-lbaas | 18:31 | |
*** rstarmer has quit IRC | 18:35 | |
*** med_ is now known as med | 18:37 | |
*** med is now known as Guest20317 | 18:38 | |
*** Guest20317 is now known as med_ | 18:38 | |
*** salmankhan has quit IRC | 18:39 | |
nmagnezi | rm_work, what is stestr ? | 18:47 |
*** sshank has quit IRC | 18:51 | |
rm_work | nmagnezi: fork of testr :) | 18:55 |
*** yamamoto has joined #openstack-lbaas | 18:59 | |
*** eezhova has joined #openstack-lbaas | 19:01 | |
*** eezhova has quit IRC | 19:01 | |
openstackgerrit | Merged openstack/neutron-lbaas master: Updating import for linux/interface opts https://review.openstack.org/352471 | 19:01 |
*** chlong__ has joined #openstack-lbaas | 19:02 | |
*** chlong_ has quit IRC | 19:04 | |
*** armax has joined #openstack-lbaas | 19:04 | |
*** rcernin has joined #openstack-lbaas | 19:06 | |
nmagnezi | rm_work, :D | 19:08 |
tonygunk | FYI issue with PEM error above was because I was using amphora_haproxy_rest_driver | 19:10 |
tonygunk | changed to noop and went away | 19:11 |
rm_work | errr | 19:11 |
*** mixos has quit IRC | 19:13 | |
*** mixos has joined #openstack-lbaas | 19:15 | |
*** mixos has quit IRC | 19:18 | |
*** pcaruana has quit IRC | 19:20 | |
*** tonygunk has quit IRC | 19:34 | |
*** rstarmer has joined #openstack-lbaas | 19:37 | |
*** Alex_Staf has joined #openstack-lbaas | 19:40 | |
*** Alex_Staf has quit IRC | 19:47 | |
*** mixos has joined #openstack-lbaas | 19:49 | |
*** rstarmer has quit IRC | 19:51 | |
*** khamtamtun has joined #openstack-lbaas | 19:53 | |
*** yamamoto has quit IRC | 19:53 | |
*** ramishra has joined #openstack-lbaas | 19:57 | |
*** sshank has joined #openstack-lbaas | 19:57 | |
*** atoth has quit IRC | 20:02 | |
*** yamamoto has joined #openstack-lbaas | 20:03 | |
*** rstarmer has joined #openstack-lbaas | 20:07 | |
*** khamtamtun has quit IRC | 20:08 | |
*** tonygunk has joined #openstack-lbaas | 20:08 | |
*** salmankhan has joined #openstack-lbaas | 20:12 | |
*** bzhao has quit IRC | 20:12 | |
*** ianychoi has quit IRC | 20:14 | |
*** Alex_Staf has joined #openstack-lbaas | 20:15 | |
*** rcernin has quit IRC | 20:18 | |
*** ramishra has quit IRC | 20:19 | |
*** ajo_ has joined #openstack-lbaas | 20:22 | |
*** tonygunk has quit IRC | 20:22 | |
ajo | apuimedo: ping | 20:22 |
*** tonygunk has joined #openstack-lbaas | 20:23 | |
ajo | do you want to connect with us to the octavia cointainers discussion via bluejeans | 20:23 |
ajo | ? | 20:23 |
apuimedo | ajo: when does it start? | 20:23 |
ajo | it is now | 20:25 |
*** yamamoto has quit IRC | 20:26 | |
apuimedo | ajo: link? | 20:27 |
*** yamamoto has joined #openstack-lbaas | 20:29 | |
*** csomerville has joined #openstack-lbaas | 20:32 | |
*** Alex_Staf has quit IRC | 20:36 | |
nmagnezi | ajo, o/ | 20:36 |
*** cody-somerville has joined #openstack-lbaas | 20:38 | |
*** cody-somerville has quit IRC | 20:38 | |
*** cody-somerville has joined #openstack-lbaas | 20:38 | |
*** csomerville has quit IRC | 20:41 | |
*** aojea_ has quit IRC | 20:42 | |
*** aojea has joined #openstack-lbaas | 20:42 | |
*** catintheroof has quit IRC | 20:42 | |
*** aojea_ has joined #openstack-lbaas | 20:43 | |
*** aojea has quit IRC | 20:44 | |
*** leitan has quit IRC | 20:45 | |
*** blogan has joined #openstack-lbaas | 20:45 | |
*** tongl has joined #openstack-lbaas | 20:47 | |
*** Alex_Staf has joined #openstack-lbaas | 20:50 | |
*** tonygunk has quit IRC | 20:52 | |
*** ajo_ has quit IRC | 20:57 | |
*** Alex_Staf has quit IRC | 21:00 | |
*** tongl has quit IRC | 21:00 | |
*** Alex_Staf has joined #openstack-lbaas | 21:07 | |
*** ajo_ has joined #openstack-lbaas | 21:08 | |
*** rstarmer has quit IRC | 21:09 | |
*** bbbbzhao_ has quit IRC | 21:12 | |
*** yamamoto has quit IRC | 21:27 | |
*** mixos has quit IRC | 21:28 | |
*** armax has quit IRC | 21:28 | |
*** mixos has joined #openstack-lbaas | 21:32 | |
*** cody-somerville has quit IRC | 21:35 | |
*** armax has joined #openstack-lbaas | 21:36 | |
*** sshank has quit IRC | 21:40 | |
*** sshank has joined #openstack-lbaas | 21:47 | |
*** yamamoto_ has joined #openstack-lbaas | 21:53 | |
openstackgerrit | Lingxian Kong proposed openstack/octavia master: Fix inappropriate provisioning_status of l7 policy https://review.openstack.org/503604 | 21:56 |
*** mixos has quit IRC | 21:58 | |
*** salmankhan has quit IRC | 22:02 | |
*** mixos has joined #openstack-lbaas | 22:02 | |
*** mixos has quit IRC | 22:02 | |
*** yamamoto_ has quit IRC | 22:03 | |
*** KeithMnemonic2 has joined #openstack-lbaas | 22:11 | |
openstackgerrit | Merged openstack/neutron-lbaas master: Stop registering "graphs" resource to quota https://review.openstack.org/501647 | 22:12 |
*** KeithMnemonic1 has quit IRC | 22:14 | |
*** armax has quit IRC | 22:17 | |
*** rstarmer has joined #openstack-lbaas | 22:21 | |
*** Alex_Staf has quit IRC | 22:24 | |
*** armax has joined #openstack-lbaas | 22:25 | |
*** yamamoto_ has joined #openstack-lbaas | 22:27 | |
*** armax has quit IRC | 22:30 | |
*** rstarmer has quit IRC | 22:31 | |
*** ianychoi has joined #openstack-lbaas | 22:32 | |
*** ipsecguy_ has quit IRC | 22:32 | |
*** ipsecguy has joined #openstack-lbaas | 22:34 | |
*** armax has joined #openstack-lbaas | 22:35 | |
*** armax has quit IRC | 22:36 | |
*** rstarmer has joined #openstack-lbaas | 22:38 | |
*** armax has joined #openstack-lbaas | 22:38 | |
openstackgerrit | Merged openstack/neutron-lbaas master: Updated from global requirements https://review.openstack.org/502697 | 22:42 |
*** fnaval has quit IRC | 22:46 | |
*** ajo_ has quit IRC | 22:46 | |
*** rstarmer has quit IRC | 22:47 | |
*** armax has quit IRC | 22:49 | |
*** rstarmer has joined #openstack-lbaas | 22:53 | |
*** salmankhan has joined #openstack-lbaas | 22:54 | |
-openstackstatus- NOTICE: CentOS 7.4 point release today has resulted in some mirror disruption, repair underway; expect jobs on centos7 nodes to potentially fail for a few hours longer | 23:04 | |
*** KeithMnemonic2 has quit IRC | 23:07 | |
kong | hello | 23:20 |
*** mixos has joined #openstack-lbaas | 23:24 | |
*** jniesz has joined #openstack-lbaas | 23:25 | |
*** mixos has quit IRC | 23:29 | |
*** catintheroof has joined #openstack-lbaas | 23:34 | |
*** catintheroof has quit IRC | 23:35 | |
*** catintheroof has joined #openstack-lbaas | 23:37 | |
kong | If i understand correctly, the current octavia tempest test cases are only covering v1 endpoint, right? | 23:39 |
*** armax has joined #openstack-lbaas | 23:39 | |
kong | I see there is octavia-tempest-plugin repo, but nothing inside, seems it's still in working in progress | 23:39 |
*** jniesz has quit IRC | 23:41 | |
johnsom | Correct, there are patches up for review | 23:42 |
rm_work | kong: there are a lot of patches | 23:42 |
rm_work | we're working on getting those going soon | 23:42 |
rm_work | so yes, octavia-tempest-plugin is the right place to look for the future tests for v2 | 23:42 |
kong | johnsom, rm_work, and octavia gate is broken? | 23:43 |
kong | http://logs.openstack.org/04/503604/2/check/gate-octavia-v1-dsvm-scenario-ubuntu-xenial/ae74f20/console.html | 23:43 |
rm_work | kong: fix is merging now | 23:43 |
rm_work | https://review.openstack.org/#/c/503156/ | 23:43 |
kong | hmm, ok | 23:43 |
rm_work | as soon as that merges you can recheck | 23:43 |
kong | i am in a good timing :-( | 23:43 |
rm_work | should be about an hour | 23:44 |
rm_work | i hope | 23:44 |
kong | seems i need to walk through current patches in review in different repos, to get an overview of current octavia development status | 23:45 |
kong | i found a bug, btw https://review.openstack.org/#/c/503156/ | 23:45 |
kong | Sorry, this one https://review.openstack.org/#/c/503604/ | 23:46 |
*** sshank has quit IRC | 23:46 | |
johnsom | kong This might help: https://review.openstack.org/#/q/(project:openstack/octavia+OR+project:openstack/octavia-dashboard+OR+project:openstack/python-octaviaclient+OR+project:openstack/octavia-tempest-plugin)+AND+status:open+AND+NOT+label:Code-Review%253C%253D0+AND+NOT+label:Verified%253C%253D0+AND+NOT+label:Workflow%253C%253D0 | 23:50 |
johnsom | Patches ready for review across our gerrits | 23:51 |
kong | yeah, i have a similar one. and i already watched all related projects to get notified if there is new patch proposed | 23:51 |
*** armax has quit IRC | 23:52 | |
kong | but thanks anyway for the useful link :-) | 23:53 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!