Wednesday, 2018-06-20

*** rh-jelabarre has joined #openstack-kuryr00:03
*** maysamacedos has joined #openstack-kuryr00:04
*** rh-jelabarre has quit IRC00:13
*** rh-jelabarre has joined #openstack-kuryr00:17
*** yamamoto has joined #openstack-kuryr00:48
*** yamamoto has quit IRC00:53
*** rh-jelabarre has quit IRC00:54
*** lan2 has quit IRC01:21
openstackgerritLv Jiawei proposed openstack/kuryr-kubernetes master: Devstack install fail if docker cgroup driver is systemd  https://review.openstack.org/57531901:31
*** yamamoto has joined #openstack-kuryr01:49
*** yamamoto has quit IRC01:56
*** pliu has quit IRC02:00
*** pliu has joined #openstack-kuryr02:15
*** maysamacedos has quit IRC02:45
*** yamamoto has joined #openstack-kuryr02:51
*** yamamoto has quit IRC02:57
*** fkautz has quit IRC03:43
*** fkautz has joined #openstack-kuryr03:45
*** ajo has quit IRC03:49
*** portdirect has quit IRC03:50
*** fkautz has quit IRC03:51
*** lxkong has quit IRC03:51
*** yamamoto has joined #openstack-kuryr03:53
*** yamamoto has quit IRC03:59
*** openstack has joined #openstack-kuryr04:29
*** ChanServ sets mode: +o openstack04:29
*** yamamoto has joined #openstack-kuryr04:55
*** yamamoto has quit IRC04:58
*** yamamoto has joined #openstack-kuryr04:59
*** lxkong has joined #openstack-kuryr05:24
*** ajo has joined #openstack-kuryr05:24
*** janki has joined #openstack-kuryr05:31
*** ajo has quit IRC05:58
*** lxkong has quit IRC05:58
*** dims has quit IRC06:09
*** dims has joined #openstack-kuryr06:10
*** dims has quit IRC06:16
*** dims has joined #openstack-kuryr06:17
*** gcheresh has joined #openstack-kuryr06:19
*** fkautz has joined #openstack-kuryr06:19
*** portdirect has joined #openstack-kuryr06:21
*** lxkong has joined #openstack-kuryr06:21
*** portdirect has quit IRC06:21
*** portdirect has joined #openstack-kuryr06:22
*** lxkong has quit IRC06:22
*** lxkong has joined #openstack-kuryr06:22
*** gcheresh_ has joined #openstack-kuryr06:24
*** ajo has joined #openstack-kuryr06:24
*** gcheresh has quit IRC06:24
*** yboaron has joined #openstack-kuryr07:44
*** celebdor1 has joined #openstack-kuryr07:48
*** jistr is now known as jistr|mtg08:07
*** pcaruana has joined #openstack-kuryr08:11
openstackgerritLuis Tomas Bolivar proposed openstack/kuryr-tempest-plugin master: Namespace network resources cleanup  https://review.openstack.org/57647608:46
*** jistr|mtg is now known as jistr09:12
openstackgerritAntoni Segura Puimedon proposed openstack/kuryr-kubernetes master: Really use the test handler  https://review.openstack.org/57577109:15
celebdor1dulek: I addressed your comment in a slightly less magical number way ^^09:15
dulekcelebdor1: Nice, thanks!09:16
ltomasbocelebdor1, nice!09:16
celebdor1dulek: ltomasbo: irenab: Let's get this in and backport09:20
ltomasboyep!09:20
celebdor1dulek: regarding https://review.openstack.org/#/c/575119/5/kuryr_kubernetes/watcher.py09:21
celebdor1the idea is that we check as well that we don't have any idling watcher, as I don't think we should exit if there's some idling watcher that may resume work at any moment09:21
celebdor1but I'm not 100% sure on that09:22
celebdor1like, can we have something idling while there's nothing on the watching dict?09:22
dulekcelebdor1: idle is just a dict with path as key and True/False. You would need to iterate over it to do what you want.09:23
dulekcelebdor1: And you probably should as stop() isn't popping stuff from that dict.09:25
celebdor1dulek: exit gracefully does pop from there though09:27
celebdor1you make a good point that there may be endings which do not lead to entries being popped from there09:28
celebdor1dulek: did you get around to trying with label entries to see the json impact with a lot of containers?09:30
dulekcelebdor1: Hm, yes. It shouldn't matter too much, I guess.09:30
celebdor1dulek: what shouldn't matter?09:31
dulekcelebdor1: The condition.09:32
dulekcelebdor1: I haven't checked it, I've assumed dict can handle label access by key for reasonable numbers09:33
celebdor1ok09:34
ltomasbodulek, regarding this: https://review.openstack.org/#/c/556181/5/doc/source/devref/port_crd_usage.rst09:36
ltomasbois your proposal to have a new object (kuryr-vif-crd or something) which defines a dict of 'ethX': CRD-selflink?09:37
dulekltomasbo: Yup. Basically we need that anyway - we need a way to have compatibility with old-style annotations.09:39
ltomasbodulek, should that change be made before adding the KuryrPortCRDs?09:40
ltomasboso that we have current version as 1.009:40
ltomasboand newer as 1.1 or 2.0?09:40
ltomasboand what about the previous one before the multi vif?09:41
ltomasbodulek, and... for the spec, you just want me to mention that we will use a o.vo for the annotation, right?09:42
dulekltomasbo: I don't care too much when this happens, but we need to take care of that compatibility.09:42
*** aojea_ has joined #openstack-kuryr09:42
dulekltomasbo: Yes, and the format of your example will be different then.09:43
dulekltomasbo: o.vo's serialize with some additions like version.09:43
ltomasbook09:44
ltomasbothanks! I'll try to update it09:44
ltomasbodulek, let me know if you are happy with my other replies :D09:44
dulekltomasbo: I've answered.09:46
*** aojea_ has quit IRC09:47
ltomasbothanks!09:47
celebdor1dulek: there's a problem with your patch09:48
celebdor1regarding the path09:48
celebdor1in 1.13.1 container list is at http://containers/json09:50
celebdor1as you put09:50
celebdor1however, in 17.05 I have it at http://docker/containers/json09:50
dulekDamn…09:54
celebdor1dulek: I have a solution already09:54
celebdor1give me a sec09:54
celebdor1dulek: like this it will work curl -s --unix-socket /var/run/docker.sock http://v1.26/containers/json09:56
celebdor1this is telling docker to use v1.26 of the unix socket API09:56
celebdor1so it will work on docker 1.13.1+09:56
celebdor1more info at https://docs.docker.com/engine/api/v1.26/#section/Versioning09:58
openstackgerritYossi Boaron proposed openstack/kuryr-kubernetes master: OCP-Router:  Add Zuul experimental gates for Openshift Route  https://review.openstack.org/56506009:58
celebdor1maybe better to use 1.24 which is for Docker 1.12.x09:59
*** yboaron_ has joined #openstack-kuryr10:01
*** yboaron has quit IRC10:04
openstackgerritLuis Tomas Bolivar proposed openstack/kuryr-tempest-plugin master: Namespace network resources cleanup  https://review.openstack.org/57647610:10
*** yamamoto has quit IRC10:18
openstackgerritYossi Boaron proposed openstack/kuryr-kubernetes master: OCP-Router: Update Devref documentation  https://review.openstack.org/57681810:22
*** yboaron_ has quit IRC10:58
*** gcheresh_ has quit IRC11:10
*** yamamoto has joined #openstack-kuryr11:19
*** yamamoto has quit IRC11:24
*** yboaron_ has joined #openstack-kuryr11:29
*** atoth has joined #openstack-kuryr11:42
*** rh-jelabarre has joined #openstack-kuryr11:47
openstackgerritMichał Dulko proposed openstack/kuryr-kubernetes master: Fetch CONTAINERID from Docker API in kuryr-cni  https://review.openstack.org/57607111:49
*** yamamoto has joined #openstack-kuryr11:49
*** yamamoto has quit IRC12:00
*** ajo has quit IRC12:00
*** ajo has joined #openstack-kuryr12:01
*** celebdor1 has quit IRC12:22
*** maysamacedos has joined #openstack-kuryr12:25
*** yboaron_ has quit IRC12:26
*** celebdor1 has joined #openstack-kuryr12:33
*** maysamacedos has quit IRC12:40
*** yamamoto has joined #openstack-kuryr12:51
openstackgerritPeng Liu proposed openstack/kuryr-kubernetes master: Implement multi-vif driver  https://review.openstack.org/57562913:07
openstackgerritLuis Tomas Bolivar proposed openstack/kuryr-tempest-plugin master: Namespace network resources cleanup  https://review.openstack.org/57647613:19
openstackgerritsunqingliang proposed openstack/kuryr-kubernetes master: add a link to release notes in README file  https://review.openstack.org/57685313:22
*** rh-jelabarre has quit IRC13:28
*** rh-jelabarre has joined #openstack-kuryr13:33
openstackgerritLuis Tomas Bolivar proposed openstack/kuryr-kubernetes master: Kuryr Kubernetes Port and PortPool CRD design reference document  https://review.openstack.org/55618113:42
celebdor1dulek: how many containers did you try it with?13:53
*** rh-jelabarre has quit IRC14:01
*** rh-jelabarre has joined #openstack-kuryr14:04
*** rh-jelabarre has quit IRC14:05
*** janki has quit IRC14:58
*** rh-jelabarre has joined #openstack-kuryr15:02
*** janki has joined #openstack-kuryr15:57
*** yamamoto has quit IRC16:12
*** yamamoto has joined #openstack-kuryr16:22
*** AlexeyPerevalov has joined #openstack-kuryr16:25
*** maysamacedos has joined #openstack-kuryr16:26
*** yamamoto has quit IRC16:27
*** AlexeyPerevalov has quit IRC16:28
*** salv-orlando has joined #openstack-kuryr16:28
*** salv-orlando has quit IRC16:32
*** yamamoto has joined #openstack-kuryr16:37
*** yamamoto has quit IRC16:41
*** yamamoto has joined #openstack-kuryr16:52
*** yamamoto has quit IRC16:56
*** atoth has quit IRC17:01
*** yamamoto has joined #openstack-kuryr17:07
*** yamamoto has quit IRC17:12
*** atoth has joined #openstack-kuryr17:14
*** yamamoto has joined #openstack-kuryr17:22
*** yamamoto has quit IRC17:27
*** atoth has quit IRC17:39
*** atoth has joined #openstack-kuryr17:39
*** yamamoto has joined #openstack-kuryr17:52
*** yamamoto has quit IRC17:57
*** gcheresh_ has joined #openstack-kuryr18:00
*** yamamoto has joined #openstack-kuryr18:02
*** yamamoto has quit IRC18:02
*** celebdor1 has quit IRC18:30
*** yamamoto has joined #openstack-kuryr18:36
*** atoth has quit IRC18:40
*** yamamoto has quit IRC18:41
*** yamamoto has joined #openstack-kuryr18:51
*** yamamoto has quit IRC18:56
*** aojea_ has joined #openstack-kuryr19:03
*** yamamoto has joined #openstack-kuryr19:06
*** yamamoto has quit IRC19:10
*** aojea_ has quit IRC19:16
*** yamamoto has joined #openstack-kuryr19:22
*** yamamoto has quit IRC19:26
*** yamamoto has joined #openstack-kuryr19:37
*** yamamoto has quit IRC19:43
*** gcheresh_ has quit IRC19:55
*** aojea has joined #openstack-kuryr20:31
*** yamamoto has joined #openstack-kuryr20:39
*** pcaruana has quit IRC20:41
*** yamamoto has quit IRC20:44
*** maysamacedos has quit IRC21:41
*** yamamoto has joined #openstack-kuryr21:41
*** yamamoto has quit IRC21:47
*** aojea has quit IRC22:36
*** yamamoto has joined #openstack-kuryr22:43
*** yamamoto has quit IRC22:49
*** pmannidi has joined #openstack-kuryr23:00
*** yamamoto has joined #openstack-kuryr23:45
*** yamamoto has quit IRC23:50

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