*** yamamoto has quit IRC | 00:02 | |
openstackgerrit | Merged openstack/octavia master: Add admin endpoint for amphora info https://review.openstack.org/505404 | 00:23 |
---|---|---|
*** csomerville has quit IRC | 00:43 | |
*** yamamoto has joined #openstack-lbaas | 00:45 | |
*** yamamoto has quit IRC | 00:49 | |
*** JudeC has quit IRC | 01:01 | |
*** openstackstatus has quit IRC | 01:14 | |
*** openstackstatus has joined #openstack-lbaas | 01:15 | |
*** ChanServ sets mode: +v openstackstatus | 01:15 | |
*** nmagnezi has quit IRC | 01:25 | |
*** nmagnezi has joined #openstack-lbaas | 01:26 | |
*** zigo has quit IRC | 01:27 | |
*** zigo has joined #openstack-lbaas | 01:31 | |
daidv | johnsom, hi | 01:32 |
openstackgerrit | Lingxian Kong proposed openstack/octavia-tempest-plugin master: Create scenario tests for loadbalancers https://review.openstack.org/486775 | 01:44 |
*** yamamoto has joined #openstack-lbaas | 01:47 | |
*** yamamoto has quit IRC | 01:53 | |
*** tongl has quit IRC | 01:54 | |
*** vegarl has quit IRC | 02:06 | |
*** vegarl has joined #openstack-lbaas | 02:08 | |
*** amitry_ has joined #openstack-lbaas | 02:10 | |
*** kong_ has joined #openstack-lbaas | 02:11 | |
*** kong has quit IRC | 02:12 | |
*** amitry has quit IRC | 02:12 | |
*** logan- has quit IRC | 02:12 | |
*** kong_ is now known as kong | 02:12 | |
*** amitry_ is now known as amitry | 02:12 | |
*** logan- has joined #openstack-lbaas | 02:15 | |
*** reedip has joined #openstack-lbaas | 02:23 | |
*** sapd has joined #openstack-lbaas | 02:38 | |
*** sapd has quit IRC | 02:38 | |
*** afranc has quit IRC | 02:38 | |
*** afranc has joined #openstack-lbaas | 02:45 | |
*** longstaff has joined #openstack-lbaas | 02:46 | |
johnsom | daidv Hi | 02:50 |
longstaff | johnsom: I'm ready to upload provider driver spec. Is there an existing story (bug?) for me to reference, or do I create a new one? | 02:50 |
daidv | I just want to confirm with you on my recent comment at https://review.openstack.org/#/c/509389/ | 02:51 |
daidv | about separate node of neutron-lbaas | 02:51 |
*** sanfern has joined #openstack-lbaas | 02:51 | |
daidv | IMO, basically, we can deploy neutron-lbaas standalone | 02:51 |
johnsom | longstaff I think there is a story, I can search in a few minutes | 02:52 |
johnsom | daidv No, neutron-lbaas cannot be deployed standalone, it doesn't have an API server. Neutron is the API server for neutron-lbaas. Only Octavia can be deployed stand alone. | 02:55 |
daidv | johnsom, I saw that we have RPC server? right? | 02:56 |
johnsom | longstaff Put "Story: 1655768" in the commit message | 02:57 |
johnsom | https://storyboard.openstack.org/#!/story/1655768 | 02:57 |
longstaff | johnsom thanks | 02:57 |
johnsom | daidv No, the neutron-lbaas agent for the old haproxy namespace driver uses RPC when talking with neutron and the agent. | 02:58 |
johnsom | daidv All user interactions with neutron-lbaas comes through neutron. | 03:00 |
johnsom | This diagram might help you: https://docs.openstack.org/octavia/latest/_images/octavia-component-overview.svg | 03:01 |
daidv | johnsom, Humm, I saw we already started an RPC server for neutron-lbaas: https://github.com/openstack/neutron-lbaas/blob/master/neutron_lbaas/agent/agent.py | 03:04 |
johnsom | That is the agent. Not user accessible | 03:04 |
openstackgerrit | Jeffrey Longstaff proposed openstack/octavia master: First draft provider drivers spec https://review.openstack.org/509957 | 03:04 |
daidv | johnsom, Yep, I'm OK with that. agent but that agent can keep it own policies, not push them into neutron? | 03:06 |
johnsom | No, all of the neutron-lbaas policies are in neutron and will stay in neutron. | 03:07 |
daidv | So how about the policy.json file in neutron-lbaas project? | 03:08 |
johnsom | We have no plans to move them out of neutron. We have already implemented the policies in code in the Octavia API that is the new lbaas API. | 03:08 |
daidv | I saw it keep neutron-lbaas own policies which we can't find in neutron | 03:08 |
johnsom | It's just for documentation / sample. You will note those are all in the neutron policy.json file. | 03:08 |
johnsom | daidv For example: https://github.com/openstack/neutron/blob/master/etc/policy.json#L136 | 03:10 |
daidv | Ok, then we no need to migrate neutron-lbaas policy.json into codebase, that's all? | 03:11 |
daidv | But where will we check these rules? https://github.com/openstack/neutron-lbaas/blob/master/etc/neutron/policy.json.sample#L5 | 03:11 |
johnsom | daidv They are all checked in neutron. neutron owns all RBAC policies for neutron-lbaas. | 03:14 |
*** longstaff has left #openstack-lbaas | 03:14 | |
johnsom | neutron-lbaas is not a service, it is only an extension to neutron. It's a plugin | 03:14 |
*** longstaff has joined #openstack-lbaas | 03:15 | |
johnsom | They are enforced here: https://github.com/openstack/neutron/blob/master/neutron/pecan_wsgi/hooks/policy_enforcement.py | 03:15 |
johnsom | We don't do enforcement in neutron-lbaas | 03:16 |
daidv | But we can register default rules in neutron-lbaas for easier to read? | 03:18 |
johnsom | We do not register any rules in neutorn-lbaas. | 03:18 |
johnsom | neutron-lbaas does not have an API | 03:19 |
johnsom | They are registered in neutron | 03:19 |
*** longstaff has quit IRC | 03:19 | |
daidv | OK, We have a policy.json in neutron and other one in neutron-lbass, I have made me confused. | 03:22 |
daidv | Thank for spending your time to clear it for me. | 03:23 |
johnsom | Yeah, the file in neutron-lbaas is just for documentation. You have to add those to neutron if you want to configure them | 03:23 |
johnsom | Sure, NP | 03:23 |
*** links has joined #openstack-lbaas | 03:32 | |
kong | rm_work, johnsom, https://review.openstack.org/#/c/486775/ is ready to go | 03:33 |
kong | i will be off today, really hope it could be merged asap so i can continue with other patches | 03:33 |
rm_work | will look | 03:54 |
rm_work | kong: one last comment | 03:58 |
*** yamamoto has joined #openstack-lbaas | 04:15 | |
*** tongl has joined #openstack-lbaas | 04:15 | |
*** armax has quit IRC | 04:23 | |
*** eezhova has joined #openstack-lbaas | 04:44 | |
*** avtar_ has joined #openstack-lbaas | 05:04 | |
*** longstaff has joined #openstack-lbaas | 05:17 | |
*** sanfern has quit IRC | 05:21 | |
*** sanfern has joined #openstack-lbaas | 05:21 | |
*** eezhova has quit IRC | 05:23 | |
*** longstaff has quit IRC | 05:31 | |
*** spectr has joined #openstack-lbaas | 05:56 | |
*** rcernin has joined #openstack-lbaas | 06:17 | |
*** pcaruana has joined #openstack-lbaas | 06:24 | |
*** rcernin has quit IRC | 06:41 | |
*** links has quit IRC | 06:42 | |
*** rcernin has joined #openstack-lbaas | 06:43 | |
*** tongl has quit IRC | 06:48 | |
*** links has joined #openstack-lbaas | 06:59 | |
*** tesseract has joined #openstack-lbaas | 07:25 | |
*** JudeC has joined #openstack-lbaas | 07:36 | |
*** links has quit IRC | 07:46 | |
*** longstaff has joined #openstack-lbaas | 07:58 | |
*** links has joined #openstack-lbaas | 07:59 | |
*** longstaff has quit IRC | 08:02 | |
*** eezhova has joined #openstack-lbaas | 08:18 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron-lbaas-dashboard master: Imported Translations from Zanata https://review.openstack.org/509555 | 08:21 |
*** JudeC has quit IRC | 08:37 | |
*** daidv has quit IRC | 08:38 | |
*** sanfern has quit IRC | 08:41 | |
*** sanfern has joined #openstack-lbaas | 08:43 | |
*** salmankhan has joined #openstack-lbaas | 08:52 | |
*** spectr has quit IRC | 09:26 | |
*** spectr has joined #openstack-lbaas | 09:34 | |
*** spectr has quit IRC | 09:34 | |
*** spectr has joined #openstack-lbaas | 09:36 | |
*** spectr has quit IRC | 09:36 | |
*** spectr has joined #openstack-lbaas | 09:37 | |
*** spectr has quit IRC | 09:38 | |
*** spectr has joined #openstack-lbaas | 09:40 | |
*** spectr has quit IRC | 09:40 | |
*** spectr has joined #openstack-lbaas | 09:41 | |
*** spectr has quit IRC | 09:43 | |
*** spectr has joined #openstack-lbaas | 09:43 | |
*** spectr has quit IRC | 09:56 | |
*** spectr has joined #openstack-lbaas | 09:57 | |
*** spectr has quit IRC | 09:57 | |
*** spectr has joined #openstack-lbaas | 09:58 | |
*** gcheresh_ has joined #openstack-lbaas | 10:06 | |
openstackgerrit | Lingxian Kong proposed openstack/octavia-tempest-plugin master: Create scenario tests for loadbalancers https://review.openstack.org/486775 | 10:29 |
*** salmankhan has quit IRC | 10:47 | |
*** yamamoto has quit IRC | 10:53 | |
*** yamamoto has joined #openstack-lbaas | 10:54 | |
*** yamamoto has quit IRC | 10:54 | |
*** longstaff has joined #openstack-lbaas | 10:59 | |
*** longstaff has quit IRC | 11:03 | |
*** salmankhan has joined #openstack-lbaas | 11:10 | |
*** yamamoto has joined #openstack-lbaas | 11:25 | |
avtar_ | Hi johnsom . | 11:41 |
avtar_ | I followed your sample file , first there was authentication error then I copied octaiva credentials in [service_auth] in neutron . That worked now I am stuck with this error | 11:42 |
avtar_ | http://paste.openstack.org/show/622828/ | 11:42 |
*** spectr has quit IRC | 12:02 | |
*** spectr has joined #openstack-lbaas | 12:03 | |
*** longstaff has joined #openstack-lbaas | 12:05 | |
*** leitan has joined #openstack-lbaas | 12:10 | |
*** salmankhan has quit IRC | 12:15 | |
*** spectr has quit IRC | 12:28 | |
*** spectr has joined #openstack-lbaas | 12:39 | |
*** salmankhan has joined #openstack-lbaas | 13:04 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/octavia master: Updated from global requirements https://review.openstack.org/510107 | 13:15 |
*** yamamoto has quit IRC | 13:21 | |
*** spectr has quit IRC | 13:35 | |
*** yamamoto has joined #openstack-lbaas | 13:35 | |
*** spectr has joined #openstack-lbaas | 13:36 | |
*** links has quit IRC | 13:48 | |
*** catintheroof has joined #openstack-lbaas | 14:05 | |
*** slaweq has quit IRC | 14:05 | |
*** catinthe_ has joined #openstack-lbaas | 14:06 | |
*** catintheroof has quit IRC | 14:07 | |
*** spectr has quit IRC | 14:11 | |
*** longstaff has quit IRC | 14:21 | |
*** longstaff has joined #openstack-lbaas | 14:21 | |
*** longstaff has quit IRC | 14:26 | |
*** armax has joined #openstack-lbaas | 14:26 | |
*** fnaval_ has joined #openstack-lbaas | 14:29 | |
*** sanfern has quit IRC | 14:30 | |
*** sanfern has joined #openstack-lbaas | 14:30 | |
*** fnaval has quit IRC | 14:32 | |
*** reedip has quit IRC | 14:34 | |
*** avtar_ has quit IRC | 14:42 | |
*** avtar_ has joined #openstack-lbaas | 14:43 | |
*** reedip has joined #openstack-lbaas | 14:46 | |
*** eezhova_ has joined #openstack-lbaas | 14:47 | |
*** eezhova has quit IRC | 14:50 | |
*** yamamoto has quit IRC | 14:52 | |
*** fnaval_ has quit IRC | 14:52 | |
*** yamamoto has joined #openstack-lbaas | 14:53 | |
*** yamamoto has quit IRC | 14:53 | |
*** eezhova__ has joined #openstack-lbaas | 15:01 | |
*** eezhova_ has quit IRC | 15:03 | |
*** spectr has joined #openstack-lbaas | 15:04 | |
*** spectr has quit IRC | 15:04 | |
*** links has joined #openstack-lbaas | 15:07 | |
*** fnaval has joined #openstack-lbaas | 15:13 | |
*** rcernin has quit IRC | 15:19 | |
*** tongl has joined #openstack-lbaas | 15:39 | |
*** jniesz has joined #openstack-lbaas | 15:45 | |
*** yamamoto has joined #openstack-lbaas | 15:53 | |
*** sshank has joined #openstack-lbaas | 15:58 | |
*** yamamoto has quit IRC | 16:02 | |
*** JudeC has joined #openstack-lbaas | 16:05 | |
*** eezhova__ has quit IRC | 16:12 | |
*** pcaruana has quit IRC | 16:13 | |
*** tongl has quit IRC | 16:18 | |
*** tongl has joined #openstack-lbaas | 16:18 | |
*** longstaff has joined #openstack-lbaas | 16:25 | |
*** sanfern has quit IRC | 16:56 | |
*** sanfern has joined #openstack-lbaas | 16:58 | |
*** longstaff has quit IRC | 17:00 | |
*** longstaff has joined #openstack-lbaas | 17:01 | |
*** sshank has quit IRC | 17:02 | |
*** openstackstatus has quit IRC | 17:05 | |
*** openstack has joined #openstack-lbaas | 17:09 | |
*** ChanServ sets mode: +o openstack | 17:09 | |
*** longstaff has joined #openstack-lbaas | 17:13 | |
*** sshank has joined #openstack-lbaas | 17:15 | |
*** sshank has quit IRC | 17:15 | |
*** sshank has joined #openstack-lbaas | 17:15 | |
*** links has quit IRC | 17:32 | |
xgerman_ | avtar I think I once saw that when the LB in front of the Octavia API wasn’t right but details are hazy. Make sure to check if you cna reach the Octavia API endpoint with curl or similar | 17:35 |
*** salmankhan has quit IRC | 17:35 | |
*** sanfern has quit IRC | 17:37 | |
*** sanfern has joined #openstack-lbaas | 17:37 | |
*** sanfern has quit IRC | 17:38 | |
*** sanfern has joined #openstack-lbaas | 17:38 | |
johnsom | Yeah, my guess is the URL to the octavia API is not right in the neutron-lbaas config | 17:38 |
*** sanfern has quit IRC | 17:38 | |
*** sanfern has joined #openstack-lbaas | 17:39 | |
*** sanfern has quit IRC | 17:39 | |
*** sanfern has joined #openstack-lbaas | 17:40 | |
*** sanfern has quit IRC | 17:40 | |
*** sanfern has joined #openstack-lbaas | 17:40 | |
*** sanfern has quit IRC | 17:41 | |
*** sanfern has joined #openstack-lbaas | 17:41 | |
*** sanfern has quit IRC | 17:42 | |
*** sanfern has joined #openstack-lbaas | 17:42 | |
*** eezhova has joined #openstack-lbaas | 17:42 | |
*** sanfern has quit IRC | 17:42 | |
*** sanfern has joined #openstack-lbaas | 17:43 | |
*** sanfern has quit IRC | 17:43 | |
*** sanfern has joined #openstack-lbaas | 17:44 | |
*** armax has quit IRC | 17:44 | |
*** sanfern has quit IRC | 17:44 | |
*** oomichi_afk is now known as oomichi | 17:44 | |
*** sanfern has joined #openstack-lbaas | 17:45 | |
*** yamamoto has joined #openstack-lbaas | 17:45 | |
*** sanfern has quit IRC | 17:45 | |
*** sanfern has joined #openstack-lbaas | 17:45 | |
*** sanfern has quit IRC | 17:46 | |
*** sanfern has joined #openstack-lbaas | 17:46 | |
*** sanfern has quit IRC | 17:47 | |
*** sanfern has joined #openstack-lbaas | 17:47 | |
*** sanfern has quit IRC | 17:47 | |
*** sanfern has joined #openstack-lbaas | 17:48 | |
*** sanfern has quit IRC | 17:48 | |
*** sanfern has joined #openstack-lbaas | 17:49 | |
*** sanfern has quit IRC | 17:49 | |
*** sanfern has joined #openstack-lbaas | 17:49 | |
*** sanfern has quit IRC | 17:50 | |
*** sanfern has joined #openstack-lbaas | 17:50 | |
*** sanfern has quit IRC | 17:51 | |
*** sanfern has joined #openstack-lbaas | 17:51 | |
avtar_ | I am able to curl the Octavia API. But my neutron-lbaas config doesn't contain octavia API URL | 17:51 |
*** sanfern has quit IRC | 17:51 | |
*** sanfern has joined #openstack-lbaas | 17:52 | |
*** sanfern has quit IRC | 17:52 | |
*** sanfern has joined #openstack-lbaas | 17:53 | |
*** sanfern has quit IRC | 17:53 | |
*** yamamoto has quit IRC | 17:53 | |
*** sanfern has joined #openstack-lbaas | 17:53 | |
*** sanfern has quit IRC | 17:54 | |
*** sanfern has joined #openstack-lbaas | 17:54 | |
*** sanfern has quit IRC | 17:55 | |
*** leitan has quit IRC | 17:55 | |
*** sanfern has joined #openstack-lbaas | 17:55 | |
*** leitan has joined #openstack-lbaas | 17:55 | |
*** sanfern has quit IRC | 17:55 | |
openstackgerrit | Adam Harwell proposed openstack/octavia master: Spec: Amphora Maintenance Mode https://review.openstack.org/509933 | 17:59 |
*** eezhova has quit IRC | 18:07 | |
*** jniesz_ has joined #openstack-lbaas | 18:09 | |
*** longstaff has quit IRC | 18:11 | |
*** jniesz has quit IRC | 18:12 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/octavia master: Updated from global requirements https://review.openstack.org/510107 | 18:57 |
*** sshank has quit IRC | 18:59 | |
*** chlong has joined #openstack-lbaas | 19:06 | |
*** longstaff has joined #openstack-lbaas | 19:09 | |
*** tesseract has quit IRC | 19:31 | |
*** longstaf_ has joined #openstack-lbaas | 19:41 | |
*** longstaff has quit IRC | 19:42 | |
*** avtar_ has quit IRC | 19:46 | |
openstackgerrit | Adam Harwell proposed openstack/octavia master: Add availability_zone to the amphora record https://review.openstack.org/510225 | 19:56 |
rm_work | first draft, haven't tested, expect SOMETHING is broken | 19:56 |
*** sshank has joined #openstack-lbaas | 19:57 | |
rm_work | but that is a prerequisite for basically any way I can think of to do the features I'm planning (be it maintenance mode, or evacuation, or even just allowing operators a quick way to do the lookup so they can manually do something) | 19:57 |
*** longstaf_ has quit IRC | 19:57 | |
*** longstaff has joined #openstack-lbaas | 19:58 | |
openstackgerrit | Merged openstack/octavia master: Fix KeyError in failover error log https://review.openstack.org/509390 | 19:58 |
*** sshank has quit IRC | 20:00 | |
*** sshank has joined #openstack-lbaas | 20:08 | |
*** gcheresh_ has quit IRC | 20:08 | |
*** leitan has quit IRC | 20:09 | |
*** leitan has joined #openstack-lbaas | 20:10 | |
*** leitan has quit IRC | 20:14 | |
*** leitan has joined #openstack-lbaas | 20:17 | |
*** catinthe_ has quit IRC | 20:28 | |
*** spectr has joined #openstack-lbaas | 20:34 | |
*** spectr has quit IRC | 20:36 | |
*** leitan has quit IRC | 20:46 | |
*** aojea has joined #openstack-lbaas | 20:55 | |
*** longstaff has quit IRC | 21:06 | |
*** longstaff has joined #openstack-lbaas | 21:21 | |
*** longstaff_ has joined #openstack-lbaas | 21:25 | |
*** longstaff_ has quit IRC | 21:25 | |
*** longstaff has quit IRC | 21:29 | |
*** longstaff has joined #openstack-lbaas | 21:31 | |
*** longstaff has quit IRC | 21:38 | |
*** jniesz_ has quit IRC | 21:54 | |
johnsom | rm_work Posted my initial thoughts on maintenance spec | 21:58 |
*** sshank has quit IRC | 22:03 | |
*** JudeC has quit IRC | 22:10 | |
*** sshank has joined #openstack-lbaas | 22:11 | |
*** chlong has quit IRC | 22:14 | |
*** sshank has quit IRC | 22:16 | |
rm_work | k | 22:17 |
rm_work | notice that the evacuate option IS listed in alternatives | 22:17 |
rm_work | and i'm considering it | 22:17 |
*** aojea has quit IRC | 22:18 | |
*** JudeC has joined #openstack-lbaas | 22:20 | |
*** armax has joined #openstack-lbaas | 22:23 | |
*** armax has quit IRC | 22:28 | |
*** fnaval has quit IRC | 22:28 | |
rm_work | xgerman_: https://review.openstack.org/#/c/508017/ | 22:30 |
xgerman_ | looking | 22:30 |
xgerman_ | so if we can’t failover we being back the health bit causing a potential failover… | 22:32 |
rm_work | johnsom: is it healthmanager or health manager or health-manager? | 22:32 |
*** armax has joined #openstack-lbaas | 22:32 | |
rm_work | xgerman_: yeah because the failure to failover is probably temporary and we should try again, I think? because otherwise a single failure means that LB is sitting there forever | 22:33 |
*** armax has quit IRC | 22:33 | |
rm_work | in my experience turning off the bit causes it to work the next time | 22:33 |
rm_work | but it's a fair point | 22:33 |
xgerman_ | yeah, I am worried that in some env. it will go into a failover loop | 22:34 |
johnsom | rm_work In documents I usually do the proper health manager | 22:35 |
xgerman_ | @johnsom while I have you - how do you feel about that failover reset | 22:36 |
xgerman_ | risk for a loop crashing a cloud or not? | 22:37 |
johnsom | I think I +2'd it, but did I miss something? | 22:37 |
xgerman_ | maybe, I am not sure if under some edge case it will keep attempting to failover , reset the bit, do it again, etc. | 22:37 |
johnsom | Well, in our current design that is what we want. We want it to keep trying until it restores the LB... | 22:38 |
johnsom | I don't disagree that maybe some kind of back off would be a good idea, and to some degree with have that with build rate limiting, but I think that would be a new feature/patch | 22:39 |
xgerman_ | yeah, rate limiting could save us but those failovers have a high priority so could crowd out other work - I dunno | 22:39 |
johnsom | True | 22:40 |
johnsom | It's either keep trying to restore it or give up and leave it for the operator to clean up | 22:40 |
xgerman_ | well, or limit the retries… | 22:41 |
johnsom | I could see a "retry count" field for the amp, but again, another patch IMO | 22:41 |
xgerman_ | yeah, me too | 22:41 |
xgerman_ | guess I gotta learn how to file stuff in storyboard | 22:41 |
johnsom | That is like DB changes, reset API, etc. | 22:41 |
johnsom | +1 | 22:41 |
*** sshank has joined #openstack-lbaas | 22:41 | |
openstackgerrit | Merged openstack/octavia master: Updated from global requirements https://review.openstack.org/510107 | 22:45 |
*** fnaval has joined #openstack-lbaas | 22:47 | |
rm_work | johnsom: responded to your maintenance comments, and new patchset in a second | 22:53 |
openstackgerrit | Adam Harwell proposed openstack/octavia master: Spec: Amphora Maintenance Mode https://review.openstack.org/509933 | 22:53 |
johnsom | Ok, will take a look in a bit. Need to finish up my facilities maintenance by shipping some UPS batteries back for recycle. Back in 10. | 22:54 |
rm_work | AUGH GERRIT WHY | 22:54 |
rm_work | scrolling is f@*$#ed now in the code preview | 22:54 |
rm_work | anyone else unable to scroll sanely anymore? | 22:55 |
rm_work | maybe just need to reopen the tab or something | 22:55 |
rm_work | kong: hey you on? | 23:03 |
rm_work | kong: JudeC is making some changes to that test to fix some stuff, are you working on anything right now for it? | 23:04 |
rm_work | uhhhh wut... my change for availability_zone worked the first time in devstack O_o | 23:07 |
rm_work | wtf is happening | 23:07 |
JudeC | Basically I am just making it more configurable. So it can work with supplied networks, subnets, etc because not all clouds can just create them like that. | 23:07 |
JudeC | (ours -.-) | 23:08 |
johnsom | Ok, back | 23:11 |
johnsom | rm_work I have strange things with gerrit jumping around in the scroll | 23:12 |
rm_work | >_< | 23:12 |
rm_work | johnsom: so i think REALLY, even if we decide not to land this maintenance mode thing *at all*, I really just need https://review.openstack.org/510225 | 23:14 |
rm_work | if we can agree to land that ... i'll be happy | 23:14 |
johnsom | Functional tests don't like you there. | 23:14 |
rm_work | yeah uhh i'll figure that out | 23:15 |
rm_work | but it *works*, just fixing tests | 23:15 |
rm_work | I tested it in devstack, A++ | 23:15 |
johnsom | hahaha | 23:15 |
johnsom | These aren't the gates you are looking for..... | 23:15 |
rm_work | where's my "it worked in devstack" shirt... | 23:16 |
rm_work | also, ugh, my docs tests won't run | 23:16 |
rm_work | are you on OSX? | 23:16 |
rm_work | can you try running `tox -e docs` on master? | 23:17 |
johnsom | If it makes you feel better, I can't figure out why this horizon gate is failing for neutron-lbaas-dashboard: https://review.openstack.org/#/c/501618/ | 23:17 |
johnsom | Neither can one of the horizon folks. | 23:17 |
rm_work | T_T | 23:17 |
johnsom | Strangest part, octavia-dashboard is passing | 23:17 |
johnsom | I try not to run tox on OSX, I run them all in ubuntu VMs | 23:17 |
johnsom | Be like the gate and all | 23:18 |
rm_work | heh | 23:19 |
rm_work | huh. functional passes locally.... | 23:22 |
rm_work | oh derp i just ruined it by checking out master | 23:22 |
johnsom | I certainly hope functional passes on master. Otherwise... It's beer-30 time and I try to forget about it until Monday | 23:23 |
rm_work | johnsom: oh i found the problem. you're using Node.js | 23:26 |
rm_work | Node.js: not even once | 23:26 |
johnsom | I didn't write it, I'm just stuck with it | 23:26 |
rm_work | T_T | 23:27 |
johnsom | BTW, the rest of horizon is moving too, so.... | 23:27 |
johnsom | Pong, back to you | 23:29 |
johnsom | Octavia spec reviews: | 23:32 |
johnsom | http://www.reactiongifs.com/r/pong.gif | 23:32 |
openstackgerrit | Adam Harwell proposed openstack/octavia master: Add availability_zone to the amphora record https://review.openstack.org/510225 | 23:32 |
*** sshank has quit IRC | 23:35 | |
xgerman_ | beer-30 | 23:39 |
xgerman_ | already 9 minutes in :-)\ | 23:39 |
johnsom | Trying to get a start on my third spec review of the day.... | 23:39 |
*** harlowja has quit IRC | 23:45 | |
xgerman_ | Would probably be easier with Bourbon ;-) | 23:49 |
*** yamamoto has joined #openstack-lbaas | 23:53 | |
johnsom | Wouldn't want to skew the review too positively.... | 23:56 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!