Tuesday, 2016-04-05

openstackgerritTin Lam proposed openstack/neutron-lbaas-dashboard: Update requirement for horizon in stable/mitaka  https://review.openstack.org/30140600:08
*** ChrisBenson1 has joined #openstack-lbaas00:17
*** ChrisBenson has quit IRC00:17
*** diogogmt has quit IRC00:49
*** ducttape_ has joined #openstack-lbaas01:07
*** Purandar has quit IRC01:12
*** ducttape_ has quit IRC01:37
*** mixos has joined #openstack-lbaas01:37
*** bana_k has quit IRC01:38
*** cody-somerville has quit IRC01:55
*** ducttape_ has joined #openstack-lbaas01:55
*** cody-somerville has joined #openstack-lbaas01:55
*** ducttape_ has quit IRC01:55
*** jaff_cheng has joined #openstack-lbaas01:56
*** diogogmt has joined #openstack-lbaas01:58
*** ducttape_ has joined #openstack-lbaas02:00
*** jaff_cheng has quit IRC02:11
*** jaff_cheng has joined #openstack-lbaas02:11
*** kevo has quit IRC02:19
*** Purandar has joined #openstack-lbaas02:20
*** chenghang has joined #openstack-lbaas02:23
*** jaff_cheng has quit IRC02:23
*** jaff_cheng has joined #openstack-lbaas02:23
*** ducttape_ has quit IRC02:23
*** ducttape_ has joined #openstack-lbaas02:27
*** chenghang has quit IRC02:27
*** yamamoto has quit IRC02:32
*** ducttape_ has quit IRC02:34
*** woodster_ has quit IRC02:37
*** yamamoto has joined #openstack-lbaas02:40
*** ducttape_ has joined #openstack-lbaas02:40
*** dnovosel has quit IRC02:43
*** yamamoto has quit IRC02:48
*** ducttape_ has quit IRC02:51
*** yamamot__ has joined #openstack-lbaas02:51
*** dhlorenz has quit IRC02:53
*** yamamot__ has quit IRC03:02
*** ducttape_ has joined #openstack-lbaas03:02
*** fawadkhaliq has joined #openstack-lbaas03:06
*** fawadkhaliq has quit IRC03:12
*** fawadkhaliq has joined #openstack-lbaas03:13
*** ducttape_ has quit IRC03:13
*** sekrit has joined #openstack-lbaas03:17
*** neelashah has joined #openstack-lbaas03:21
*** woodster_ has joined #openstack-lbaas03:21
*** fawadkhaliq has quit IRC03:21
*** fawadkhaliq has joined #openstack-lbaas03:22
*** fawadkhaliq has quit IRC03:22
*** fawadkhaliq has joined #openstack-lbaas03:22
*** neelashah has quit IRC03:23
*** bana_k has joined #openstack-lbaas03:34
*** links has joined #openstack-lbaas03:39
*** prabampm has quit IRC03:40
*** yamamot__ has joined #openstack-lbaas03:48
*** bana_k has quit IRC03:51
*** prabampm has joined #openstack-lbaas04:49
*** cody-somerville has quit IRC05:31
*** armax has quit IRC05:35
*** cody-somerville has joined #openstack-lbaas05:44
*** Purandar has quit IRC05:49
*** rcernin has joined #openstack-lbaas05:51
*** jaff_cheng has quit IRC05:55
*** prabampm has quit IRC05:55
*** prabampm1 has joined #openstack-lbaas05:55
*** anilvenkata has joined #openstack-lbaas05:59
*** fawadkhaliq has quit IRC06:02
*** bana_k has joined #openstack-lbaas06:08
*** Alex_Stef has joined #openstack-lbaas06:31
*** bana_k has quit IRC06:46
*** jaff_cheng has joined #openstack-lbaas06:48
kongping rm_work, today i spent some time on the tls termination implementation (especially for cert management part) in neutron-lbaas and octavia07:06
rm_workinteresting07:06
rm_workso what approach are you taking?07:06
kongwhen using local_cert_manager, I wonder how to get the cert info on users's perspective07:06
konglocal_cert_manager, i mean in neutron-lbaas side07:07
rm_workyes07:07
rm_workso, that is what I meant -- it needs to have an addition to the API07:07
kongrm_work: i am not doing any approach, just try to understand it07:07
rm_workto allow the API to accept EITHER a container_id for the cert (for things like Barbican) or to take in raw cert/key data (to store in LocalCertManager)07:08
rm_workor, even better would probably be DatabaseCertManager honestly07:08
rm_workand it would want to do something like a simple salted hash07:08
rm_workbut, this is not something we chose to move forward with07:08
kongbut adding another mechanism to do cert management seems to be far away from neutron and octavia...07:09
rm_workyes07:10
*** chenghang has joined #openstack-lbaas07:10
rm_workI mean, if you made a DatabaseCertManager, that would be within the system too, but would still need an API addition07:10
kongyes, need api to let user create/retrieve their cert info07:11
kongrm_work: I'm trying to find a best approach for us, deploy octavia without barbican. but find there is no better solution than using barbican, if we want to provide TLS termination07:12
kongand that's the feature our customers want, i have confirmed that07:12
rm_workyeah, deploying barbican is probably less effort than fixing LBaaS/Octavia07:13
kongbtw, I suspect the local_cert_manager driver in neutron-lbaas, doesn't make sense for real deployment07:13
*** nmagnezi has joined #openstack-lbaas07:13
rm_workright07:14
*** jaff_cheng has quit IRC07:14
rm_workactually i need to remove that too07:14
rm_workit has the same problem as Octavia07:14
rm_workI just didn't get to doing it yet07:14
kongbut I didn't find loca_cert part in octavia07:15
kongin certificate/manager, there is only barbican driver07:15
rm_workyes, it was removed07:15
rm_workbecause it is not possible to use it07:15
kongso, for now, only barbican is available, and there will be not another option in the near future, right?07:16
rm_worknot unless someone volunteers to write it07:17
kongis there other choice deserves a driver for that?07:17
rm_worknot any external services I'm aware of :/07:19
rm_workthe issue is that SOMEHOW the *user* needs to store the cert/key, which means something has to run an API07:20
rm_workwhich means either another service (like Barbican) or a change to the Neutron-LBaaS + Octavia APIs to allow taking in Certs/Keys as raw data, and then adding another driver that stores locally like a DBCertManager or LocalCertManager07:20
rm_workLocalCertManager is actually just a proof of concept, you would NEVER want to use that in production, it was just for "development"07:21
rm_workI could see an acceptable DatabaseCertManager driver for use in production07:21
rm_workif it was written properly07:21
rm_workthe reason Barbican is good is because in theory it is written properly, and people who do not understand security fully don't have to write code for it (and mess up!)07:22
*** pcaruana has joined #openstack-lbaas07:37
*** cody-somerville has quit IRC07:38
*** mixos has quit IRC07:44
*** ihrachys has joined #openstack-lbaas07:54
*** Alex_Stef has quit IRC07:55
*** Alex_Stef has joined #openstack-lbaas08:10
*** nmagnezi has quit IRC08:18
*** nmagnezi has joined #openstack-lbaas08:22
*** ihrachys has quit IRC08:31
*** ChrisBenson1 has quit IRC08:34
*** chlong has quit IRC08:35
*** woodster_ has quit IRC08:57
kongrm_work: sorry, have to distract for a while by the baby08:57
rm_workNo worries! :) Though I am about to go get dinner08:58
kongrm_work: then, an idea came to my mind, why we let users choose cert by themselves?08:58
rm_workThe user must provide the cert08:58
rm_workthey will have registered and paid for the cert from verisign or other for their domain08:58
rm_workin fact, ideally we are unable to see the private key ourselves (though this is not possible)08:59
rm_workanywhere the private key is read, is a security risk08:59
rm_workback in a while, though I assume you will be gone by the time I am back09:00
kongok, the last question, why not we just generate cert randomly for users, transparently?09:00
kongrm_work :-)09:00
rm_workwhat, like self-signed?09:01
rm_workthat is a useless certificate09:01
rm_workthe certificate is what is presented to the end user (in their web browser)09:01
rm_workthe purpose is to prove identity09:01
rm_workso the user has mywebsite.com and a certificate issued for it by a trusted issuer (Verisign, Symantec, etc)09:01
rm_workthey create a loadbalancer for mywebsite.com and provide the LB with the certificate09:02
rm_worknow when the user goes to mywebsite.com, it presents the correct certificate, and they get the little green lock that means the website is secure09:02
rm_workif we generate a random certificate, the user would get a red failure symbol and it would say the site is not secure!09:02
kongrm_work: in that scenario, the user won't use Barbican for certification, right?09:05
kongor, to some extent, the certification barbican generates is also useless, right?09:06
*** ajo_ is now known as ajo09:06
kongbarbican can be a trusted issuer?09:07
kongsorry for so many questions, i know they are bothering09:08
kongrm_work: maybe you are absent, I just want to say, thank you very much, really appreciate all your answers09:09
*** prabampm has joined #openstack-lbaas09:24
*** prabampm1 has quit IRC09:26
*** chenghang has quit IRC09:31
*** ihrachys has joined #openstack-lbaas09:37
*** kobis has joined #openstack-lbaas09:55
*** prabampm1 has joined #openstack-lbaas10:09
bharathmkong: Barbican can do two task: Certificate generation and Centificate container.. In the later case, all it does is securely store the certificates.. So In Octavia's case, we use Barbican as a default cert manager (aka just to store and retrieve certs)..10:10
*** prabampm has quit IRC10:11
kongbharathm: so, as a result, octaiva will work with barbican together tightly, if we want to provide TLS termination feature10:12
bharathmSo the user, running a web application load balanced through octavia, should buy a certificate from verisign (or some other CA) and store it in barbican container and create LbaaS listener with the barbican container id..10:12
kongour end user need create or upload certificate to barbican first, then he can use octavia10:13
kongyeah10:13
bharathmYes. Atleast for now, barbican is our cert manager.. This can be extended to support a different cert manager service in the future if needed10:14
kongok, seems deploying barbican is unavoidable :-(10:14
kongand our customers should be told there will be 2 new services when we provide lbaas10:15
kongand our operators should deploy 2 new service, too10:15
kongooh my god, kill me10:16
bharathmWell it's a matter of security consideration.. As rmwork pointed out, Barbican has been built considering these security factors so it's better to use that rather than reinventing the wheel (more like a crippled one).. :-)10:17
kongbharathm: yeah, correct10:19
bharathmUntil two days ago I was in the impression that we could use local_generator but rmwork englightened me it wasn't part of api10:19
bharathmok.. I am going to bed then..10:20
kongbharathm: yes, me too10:20
kongbharathm: what's your timezone?10:20
kongbharathm: 22:20 for me10:20
banszmarmestery: Hello Kyle. I'd like to ask you a question on LBAAS driver in networking-odl. It seems to me that it is not fully implemented. Is it working? I've raised a bug report (https://bugs.launchpad.net/networking-odl/+bug/1559939), but so far there was no response.10:21
openstackLaunchpad bug 1559939 in networking-odl "can't get networking-odl LBaaS driver to work" [Undecided,New]10:21
bharathmPacific time.. it's 3:21am here10:21
kongbharathm: ooh, really early10:21
banszmarmestery: I was thinking about fixing it but wanted to check with you first.10:22
*** ihrachys has quit IRC10:24
*** yamamot__ has quit IRC10:34
*** ihrachys has joined #openstack-lbaas10:53
*** numan_ has joined #openstack-lbaas11:04
*** jschwarz has joined #openstack-lbaas11:17
*** yamamoto has joined #openstack-lbaas11:20
*** Alex_Stef has quit IRC11:27
*** Alex_Stef has joined #openstack-lbaas11:39
*** rtheis has joined #openstack-lbaas11:44
*** yamamoto has quit IRC11:45
*** yamamoto has joined #openstack-lbaas11:47
*** yamamoto has quit IRC11:59
*** yamamoto has joined #openstack-lbaas12:00
*** yamamoto has quit IRC12:06
*** yamamoto has joined #openstack-lbaas12:09
*** yamamoto has quit IRC12:13
*** yamamoto has joined #openstack-lbaas12:15
*** yamamoto has quit IRC12:18
*** matt-borland has joined #openstack-lbaas12:19
reedip__blogan: ping12:25
*** yamamoto has joined #openstack-lbaas12:31
*** yamamoto has quit IRC12:36
*** prabampm1 has quit IRC12:57
*** yamamoto has joined #openstack-lbaas12:58
*** dougwig has quit IRC13:21
*** xgerman has quit IRC13:21
*** rtheis has quit IRC13:21
*** clduser has quit IRC13:21
*** ajmiller has quit IRC13:21
*** amit213 has quit IRC13:21
*** yuanying has quit IRC13:21
*** lunarlamp has quit IRC13:21
*** eezhova has quit IRC13:21
*** matt-borland has quit IRC13:21
*** rcernin has quit IRC13:21
*** harlowja has quit IRC13:21
*** ajo has quit IRC13:21
*** raginbajin has quit IRC13:21
*** cgross has quit IRC13:21
*** markvan has quit IRC13:21
*** mdavidson has quit IRC13:21
*** blogan has quit IRC13:21
*** _laco has quit IRC13:21
*** bradjones has quit IRC13:21
*** ptoohill has quit IRC13:21
*** numan_ has quit IRC13:21
*** reedip__ has quit IRC13:21
*** kong has quit IRC13:21
*** logan- has quit IRC13:21
*** kbyrne has quit IRC13:21
*** amitry has quit IRC13:21
*** krotscheck has quit IRC13:21
*** intr1nsic has quit IRC13:21
*** ctracey has quit IRC13:21
*** Kiall has quit IRC13:21
*** nmagnezi has quit IRC13:21
*** pcaruana has quit IRC13:21
*** openstackgerrit has quit IRC13:21
*** crc32_znc has quit IRC13:21
*** hockeynut has quit IRC13:21
*** yamamoto has quit IRC13:21
*** ljianbj has quit IRC13:21
*** redrobot has quit IRC13:21
*** reedip has quit IRC13:21
*** HenryG has quit IRC13:21
*** Frito has quit IRC13:21
*** bedis has quit IRC13:21
*** zigo has quit IRC13:21
*** elarson has quit IRC13:21
*** sekrit has quit IRC13:21
*** ktrmzn has quit IRC13:22
*** mestery has quit IRC13:22
*** Alex_Stef has quit IRC13:22
*** diogogmt has quit IRC13:22
*** kfox1111 has quit IRC13:22
*** mhayden has quit IRC13:22
*** bharathm has quit IRC13:22
*** haleyb has quit IRC13:22
*** itsuugo has quit IRC13:22
*** johnsom has quit IRC13:22
*** thomasem_ has quit IRC13:22
*** Dave has quit IRC13:22
*** kevinbenton has quit IRC13:22
*** anilvenkata has quit IRC13:22
*** jorgem has quit IRC13:22
*** barclaac has quit IRC13:22
*** kobis has quit IRC13:22
*** banszmar has quit IRC13:22
*** lmiccini has quit IRC13:22
*** jidar has quit IRC13:22
*** neelashah has joined #openstack-lbaas13:24
*** dougwig_ has joined #openstack-lbaas13:24
*** xgerman_ has joined #openstack-lbaas13:24
*** yamamoto has joined #openstack-lbaas13:24
*** matt-borland has joined #openstack-lbaas13:24
*** rtheis has joined #openstack-lbaas13:24
*** Alex_Stef has joined #openstack-lbaas13:24
*** numan_ has joined #openstack-lbaas13:24
*** kobis has joined #openstack-lbaas13:24
*** nmagnezi has joined #openstack-lbaas13:24
*** pcaruana has joined #openstack-lbaas13:24
*** anilvenkata has joined #openstack-lbaas13:24
*** rcernin has joined #openstack-lbaas13:24
*** sekrit has joined #openstack-lbaas13:24
*** diogogmt has joined #openstack-lbaas13:24
*** Frito has joined #openstack-lbaas13:24
*** johnsom has joined #openstack-lbaas13:24
*** ajmiller has joined #openstack-lbaas13:24
*** openstackgerrit has joined #openstack-lbaas13:24
*** banszmar has joined #openstack-lbaas13:24
*** mdavidson has joined #openstack-lbaas13:24
*** reedip__ has joined #openstack-lbaas13:24
*** kong has joined #openstack-lbaas13:24
*** amit213 has joined #openstack-lbaas13:24
*** jorgem has joined #openstack-lbaas13:24
*** ljianbj has joined #openstack-lbaas13:24
*** logan- has joined #openstack-lbaas13:24
*** harlowja has joined #openstack-lbaas13:24
*** blogan has joined #openstack-lbaas13:24
*** kbyrne has joined #openstack-lbaas13:24
*** yuanying has joined #openstack-lbaas13:24
*** redrobot has joined #openstack-lbaas13:24
*** ktrmzn has joined #openstack-lbaas13:24
*** amitry has joined #openstack-lbaas13:24
*** crc32_znc has joined #openstack-lbaas13:24
*** krotscheck has joined #openstack-lbaas13:24
*** ajo has joined #openstack-lbaas13:24
*** kfox1111 has joined #openstack-lbaas13:24
*** raginbajin has joined #openstack-lbaas13:24
*** thomasem_ has joined #openstack-lbaas13:24
*** hockeynut has joined #openstack-lbaas13:24
*** barclaac has joined #openstack-lbaas13:24
*** lmiccini has joined #openstack-lbaas13:24
*** cgross has joined #openstack-lbaas13:24
*** mhayden has joined #openstack-lbaas13:24
*** intr1nsic has joined #openstack-lbaas13:24
*** bharathm has joined #openstack-lbaas13:24
*** ctracey has joined #openstack-lbaas13:24
*** clduser has joined #openstack-lbaas13:24
*** mestery has joined #openstack-lbaas13:24
*** Kiall has joined #openstack-lbaas13:24
*** _laco has joined #openstack-lbaas13:24
*** haleyb has joined #openstack-lbaas13:24
*** bradjones has joined #openstack-lbaas13:24
*** lunarlamp has joined #openstack-lbaas13:24
*** eezhova has joined #openstack-lbaas13:24
*** itsuugo has joined #openstack-lbaas13:24
*** reedip has joined #openstack-lbaas13:24
*** ptoohill has joined #openstack-lbaas13:24
*** Dave has joined #openstack-lbaas13:24
*** HenryG has joined #openstack-lbaas13:24
*** markvan has joined #openstack-lbaas13:24
*** kevinbenton has joined #openstack-lbaas13:24
*** bedis has joined #openstack-lbaas13:24
*** zigo has joined #openstack-lbaas13:24
*** jidar has joined #openstack-lbaas13:24
*** elarson has joined #openstack-lbaas13:24
*** xgerman_ is now known as xgerman13:24
*** amitry has quit IRC13:27
*** dougwig_ is now known as dougwig13:29
*** amitry has joined #openstack-lbaas13:31
*** yamamoto has quit IRC13:34
*** banszmar has quit IRC13:34
*** links has quit IRC13:35
*** Kiall has quit IRC13:36
*** Kiall has joined #openstack-lbaas13:37
*** yamamoto has joined #openstack-lbaas13:41
mesterybanszmar: have at it, I don't work on ODL any longer.13:42
*** nmagnezi has quit IRC13:49
*** nmagnezi has joined #openstack-lbaas13:49
*** banszmar has joined #openstack-lbaas13:51
*** prabampm has joined #openstack-lbaas14:15
*** ducttape_ has joined #openstack-lbaas14:36
*** diogogmt has quit IRC14:39
*** kobis has quit IRC14:42
*** kobis has joined #openstack-lbaas14:46
*** kobis has quit IRC14:47
*** pcaruana has quit IRC15:06
*** mixos has joined #openstack-lbaas15:09
nmagnezidougwig, ping re: haproxy15:10
dougwignmagnezi: ack15:10
*** links has joined #openstack-lbaas15:14
*** mixos has quit IRC15:21
*** Bjoern_ has joined #openstack-lbaas15:21
*** Purandar has joined #openstack-lbaas15:22
*** links has quit IRC15:25
*** mixos has joined #openstack-lbaas15:26
*** diogogmt has joined #openstack-lbaas15:28
*** TrevorV has joined #openstack-lbaas15:29
*** armax has joined #openstack-lbaas15:36
*** mixos has quit IRC15:40
*** armax has quit IRC15:41
openstackgerritNir Magnezi proposed openstack/neutron-lbaas: (WIP) Adds option to auto reschedule loadbalancers from dead lbaas agents  https://review.openstack.org/29999815:42
nmagnezihi dougwig, still around?15:42
dougwignmagnezi: what's up?15:48
nmagnezidougwig, hi :)15:49
nmagnezidougwig, following to a chat we had number of weeks ago, I have submitted this https://review.openstack.org/29999815:49
nmagnezidougwig, also, wanted to ask for your opinion about https://bugs.launchpad.net/neutron/+bug/156580115:50
openstackLaunchpad bug 1565801 in neutron "[RFE] Add process monitor for haproxy" [Undecided,New]15:50
nmagnezidougwig, should we go with an RFE path for the latter?15:50
*** bana_k has joined #openstack-lbaas15:51
*** anilvenkata has quit IRC15:52
*** mixos has joined #openstack-lbaas15:52
*** mixos has quit IRC15:56
nmagnezidougwig, ?15:57
nmagnezidougwig, going offline. catch you later15:59
dougwignmagnezi: one sec15:59
nmagnezidougwig, aye15:59
*** mixos has joined #openstack-lbaas16:00
dougwignmagnezi: check with kevinbenton about how we're handling that with other agents. i don't want to invent some new scheme if we already have one.16:00
nmagnezidougwig, there is something very similar to this in l3 agent16:01
nmagnezidougwig, we have a server side loop spawned if allow_automatic_l3agent_failover=True to reschedule routers from deal l3 agents.16:02
johnsomnmagnezi You might look at my upstart script in Octavia.  It auto-restarts haproxy16:02
nmagnezijohnsom, cloud you elaborate?16:03
johnsomhttps://github.com/openstack/octavia/blob/master/octavia/amphorae/backends/agent/api_server/templates/upstart.conf.j216:03
johnsomnmagnezi Upstart will respawn haproxy in the Octavia Amphora.  If you want to take it to the next level, you can use active/standby in Octavia.16:05
*** diogogmt_ has joined #openstack-lbaas16:06
nmagnezijohnsom, this is a solution for octavia, but can it be used for haproxy in namepsace? (with regular lbaasv2 agent)16:06
*** diogogmt has quit IRC16:07
*** diogogmt_ is now known as diogogmt16:07
johnsomIt could be adapted easily I think.16:07
nmagnezijohnsom, aye, but as ajo said it's distro specific16:08
ajohi johnsom nmagnezi  :)16:08
ajoI need to leave now :)16:08
nmagneziactually me too16:08
ajojohnsom, in other agents with spawn processes we use the neutron process monitor, it's rather simple16:08
nmagnezidougwig, i will speak with kevinbenton but please see what I also wrote here and in the commit msg :)16:08
ajojohnsom, for the amphora (if looking only to ubuntu) I guess upstart does a good job,16:09
ajoprobably when looking at other amphoraed distros we may need systemd I guess... :) and nothing if we had containers :)16:09
johnsomSure.  I just wanted to highlight an option.  Systemd has something similar16:09
ajo:)16:10
ajojohnsom, you mean the respawn ?16:11
johnsomYes16:11
ajowe looked at something like this, but when we wrote ProcessMonitor I think systemd was not widely available,16:11
johnsomYep, agreed16:12
ajomay be it's something we can revisit I'll think about it16:12
ajothanks for the feedback :)16:12
ajobut anyway, I believe we should just use the ProcessMonitor interface, and may be write another driver to use systemd for example16:12
ajoor upstart16:12
ajoor whatever the distro has16:12
ajothat'd be cool :)16:12
*** nmagnezi has quit IRC16:13
*** fawadkhaliq has joined #openstack-lbaas16:21
*** fawadkhaliq has quit IRC16:22
*** numan_ has quit IRC16:25
*** armax has joined #openstack-lbaas16:30
*** Alex_Stef has quit IRC16:31
*** Alex_Stef has joined #openstack-lbaas16:31
*** piet has joined #openstack-lbaas16:33
*** jschwarz has quit IRC16:35
*** mixos has quit IRC16:37
*** mixos has joined #openstack-lbaas16:38
*** mixos has quit IRC16:40
*** bana_k has quit IRC16:49
openstackgerritLucas Palm proposed openstack/neutron-lbaas-dashboard: Show the member status properties  https://review.openstack.org/29962916:53
*** Bjoern_ is now known as Bjoern_zZzZzZzZ16:57
*** cody-somerville has joined #openstack-lbaas17:01
*** cody-somerville has quit IRC17:04
*** cody-somerville has joined #openstack-lbaas17:05
*** cody-somerville has quit IRC17:05
*** cody-somerville has joined #openstack-lbaas17:05
*** bana_k has joined #openstack-lbaas17:06
*** cody-somerville has quit IRC17:08
*** cody-somerville has joined #openstack-lbaas17:09
*** Alex_Stef has quit IRC17:17
bana_khi, Is there any option in laabs v1 to restrict the traffic from some particular subnet?17:22
*** Bjoern_zZzZzZzZ is now known as Bjoern_17:39
*** davidlenwell has quit IRC17:42
*** kevo has joined #openstack-lbaas17:48
*** haleyb has quit IRC17:48
*** davidlenwell has joined #openstack-lbaas17:49
*** reedip__ has quit IRC17:52
*** haleyb has joined #openstack-lbaas18:01
*** diogogmt_ has joined #openstack-lbaas18:04
*** ihrachys has quit IRC18:04
*** Purandar has quit IRC18:04
*** Purandar has joined #openstack-lbaas18:06
*** diogogmt has quit IRC18:06
*** diogogmt_ is now known as diogogmt18:06
*** mixos has joined #openstack-lbaas18:11
*** yamamoto has quit IRC18:12
*** yamamoto has joined #openstack-lbaas18:16
*** diogogmt has quit IRC18:17
*** piet has quit IRC18:21
*** yamamoto has quit IRC18:21
*** piet has joined #openstack-lbaas18:27
*** diogogmt has joined #openstack-lbaas18:29
*** mixos has quit IRC18:31
*** ChrisBenson has joined #openstack-lbaas18:35
*** Bjoern_ has quit IRC18:35
*** crc32 has joined #openstack-lbaas18:37
*** rcernin has quit IRC18:41
*** mixos has joined #openstack-lbaas18:41
*** yamamoto has joined #openstack-lbaas18:46
*** ihrachys has joined #openstack-lbaas18:52
*** mixos has quit IRC18:52
*** yamamoto has quit IRC18:54
*** mixos has joined #openstack-lbaas18:56
*** mixos has quit IRC19:04
*** mixos has joined #openstack-lbaas19:05
*** crc32 has quit IRC19:15
*** crc32 has joined #openstack-lbaas19:15
*** yamamoto has joined #openstack-lbaas19:24
*** yamamoto has quit IRC19:24
*** yamamoto has joined #openstack-lbaas19:31
*** yamamoto has quit IRC19:36
*** crc32 has quit IRC19:36
*** crc32 has joined #openstack-lbaas19:37
*** ajmiller has quit IRC19:57
*** crc32 has quit IRC19:57
*** crc32 has joined #openstack-lbaas19:58
*** mixos has quit IRC20:00
*** ajmiller has joined #openstack-lbaas20:04
*** mixos has joined #openstack-lbaas20:09
*** mixos has quit IRC20:14
*** crc32 has quit IRC20:18
*** crc32 has joined #openstack-lbaas20:19
*** prabampm has quit IRC20:24
*** yamamoto has joined #openstack-lbaas20:30
*** prabampm has joined #openstack-lbaas20:31
*** yamamoto has quit IRC20:36
*** crc32 has quit IRC20:39
*** ihrachys has quit IRC20:39
*** crc32 has joined #openstack-lbaas20:40
*** divya has joined #openstack-lbaas20:56
*** yamamoto has joined #openstack-lbaas21:01
*** yamamoto has quit IRC21:06
*** piet has quit IRC21:17
*** kong has quit IRC21:18
*** kong has joined #openstack-lbaas21:19
*** rtheis has quit IRC21:21
*** Purandar has quit IRC21:34
*** GreenGraph has joined #openstack-lbaas21:40
*** GreenGraph has quit IRC21:40
*** yamamoto has joined #openstack-lbaas21:46
*** yamamoto has quit IRC21:50
*** matt-borland has quit IRC21:52
*** neelashah has quit IRC21:53
*** ducttape_ has quit IRC21:56
*** Purandar has joined #openstack-lbaas22:06
*** reedip__ has joined #openstack-lbaas22:08
*** yamamoto_ has joined #openstack-lbaas22:31
*** woodster_ has joined #openstack-lbaas22:34
*** yamamoto_ has quit IRC22:35
*** crc32 has quit IRC22:36
*** diogogmt has quit IRC22:48
*** diogogmt has joined #openstack-lbaas22:51
*** yamamoto_ has joined #openstack-lbaas23:16
*** yamamoto_ has quit IRC23:21
*** ChrisBenson has quit IRC23:42
*** TrevorV has quit IRC23:46
openstackgerritTrevor Vardeman proposed openstack/neutron-lbaas: WIP - Get Me A LB  https://review.openstack.org/25720123:50
*** yamamoto_ has joined #openstack-lbaas23:50
*** ajmiller has quit IRC23:58

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