Friday, 2017-06-16

*** neiljerram has quit IRC00:09
*** hongbin has quit IRC00:38
*** limao has joined #openstack-kuryr00:48
*** yedongcan has joined #openstack-kuryr01:36
*** edisonxiang has joined #openstack-kuryr01:56
*** hongbin has joined #openstack-kuryr03:17
*** limao has quit IRC03:34
*** limao has joined #openstack-kuryr03:35
*** limao has quit IRC03:39
*** hongbin has quit IRC03:52
*** mattmceuen has joined #openstack-kuryr04:22
*** yedongcan1 has joined #openstack-kuryr04:22
*** yedongcan has quit IRC04:24
*** salv-orlando has joined #openstack-kuryr04:50
openstackgerritvikas choudhary proposed openstack/kuryr-kubernetes master: [WIP] Add support to install Kuryr as a network addon  https://review.openstack.org/46667504:55
*** limao has joined #openstack-kuryr05:12
*** mattmceuen has quit IRC05:14
*** salv-orl_ has joined #openstack-kuryr05:15
*** salv-orlando has quit IRC05:18
*** gouthamr has quit IRC05:25
*** ltomasbo|away is now known as ltomasbo05:36
*** janki has joined #openstack-kuryr05:41
*** tonanhngo has joined #openstack-kuryr06:09
*** pcaruana has joined #openstack-kuryr06:43
*** tonanhngo has quit IRC07:10
*** tonanhngo has joined #openstack-kuryr07:11
*** tonanhngo has quit IRC07:15
*** tonanhngo has joined #openstack-kuryr07:24
*** limao has quit IRC07:33
*** limao_ has joined #openstack-kuryr07:33
*** tonanhngo has quit IRC07:38
*** tonanhngo has joined #openstack-kuryr07:38
*** tonanhngo has quit IRC07:42
*** egonzalez has joined #openstack-kuryr07:48
dmelladoirenab: I was out traveling, I had some issues with the script which I'm sorting now ;)07:54
apuimedodmellado: it's weekend in TLV07:56
dmelladoapuimedo: oh, true!07:56
dmelladoapuimedo: I'm melting07:56
dmelladoI shouldn't ever have gotten back to Madrid07:56
apuimedodmellado: you should take a one way ticket out of there07:57
openstackgerritvikas choudhary proposed openstack/kuryr-kubernetes master: Add support to install Kuryr as a network addon  https://review.openstack.org/46667508:00
*** garyloug has joined #openstack-kuryr08:05
openstackgerritMerged openstack/kuryr-kubernetes master: Stopping Thread from oslo_service  https://review.openstack.org/47451908:07
openstackgerritvikas choudhary proposed openstack/kuryr-kubernetes master: Add support to install Kuryr as a network addon  https://review.openstack.org/46667508:12
apuimedovikasc: how is the investigation on the debian container based cni binary building08:14
apuimedo?08:14
vikascapuimedo, i will start that now, i dint test cni yesterday. So today was completing testing and addressing your comments08:15
apuimedocool08:15
apuimedothanks08:15
vikascapuimedo, now its debian container turn08:15
apuimedogreat08:15
vikascapuimedo, can you please elaborate a bit once again what is the expectation?08:16
vikascapuimedo, wasnt focussing on it till now08:16
apuimedohow pyinstaller works08:16
apuimedois that it makes a static binary08:16
vikascyes08:16
apuimedo(but still uses libc IIRC)08:16
vikascit creates a static binary08:16
apuimedoso, it is better that you use a container to build the binary08:17
apuimedothat includes an old libc08:17
apuimedoin this way, the binary will work in any distro with newer libc08:17
vikascthis part i need to investigate. i am also using pyinstaller first time and it was two weeks back08:17
apuimedoso the idea is to use a debian:wheezy container to build the binary08:17
vikascit is building binary in the container only08:17
apuimedothen include the binary in the real CNI container08:18
vikasccni daemonset pods container08:18
apuimedothat writes it in a mounted path in /opt/bin/cni/kuryr-cni08:18
apuimedothis building container is not part of kuryr.yml08:18
vikascno08:18
apuimedoit's only to prepare the binary that cni.Dockerfile will use08:18
vikascit is in cni_ds_init08:18
vikascsorry, i will read back again your comments to see if i miss something08:19
apuimedook08:19
vikascare you saying rhel7 container has old libc while debian:wheezy will have new libc?08:21
apuimedothe opposite08:21
vikascok08:21
vikascso cant this be achieved by just modifying cni dockerfile to use debian as base image?08:22
apuimedoLet's go over the steps again08:23
apuimedoThere should be two containers08:23
apuimedoa) Building container08:23
apuimedob) cni container08:23
apuimedoThe building container should be based on an image with an old libc08:23
apuimedowhat it does is. Build Python2/3 from source or use devel packages08:24
vikasci got your point, i am saying current container is build container only08:24
apuimedoThen use pyinstaller to generate the binary08:24
vikascwhich is building and copying the cni at mounted path08:24
apuimedocopying the cni should be the (b) container08:24
vikascwhy this extra handover08:25
apuimedotwo different containers. You don't want the whole build system in the daemon set08:25
apuimedoit's a waste08:25
apuimedootherwise you run it on every darned machine08:25
apuimedoyou only one a container copying on each machine08:25
apuimedonot building on each machine08:25
vikascok, so this build container would be launched on master?08:25
vikasci think so08:26
apuimedono08:27
apuimedoit's only for building the (b) container that gets pushed to hub.docker.com/r/kuryr/cni08:27
vikascm just thinking how the binary will be copied to all the nodes?08:27
vikascok08:28
apuimedoyou can make a script, in tools/build/cni_container.sh08:28
apuimedothat will be similar to docker/compose scripts/build/linux08:29
apuimedobut, once it has the binary08:29
vikasccool08:29
vikasci got it08:29
apuimedoit does a docker build -t kuryr/cni -f ../../cni.Dockerfile ../../08:29
apuimedogood08:29
vikascbut before that.. are sure on this libc part08:30
vikascor i need to confirm once again08:30
vikasc1. pyoinstaller depends on libc08:30
vikasc2. which distro has oldest libc08:31
apuimedoI am sure08:38
apuimedothat if it's an older distro, then people can build the kuryr/cni from almost any distro and it will work08:38
vikascsure, thanks08:39
apuimedoif the binary ran from the cni container it would not matter08:39
apuimedobut the fact is that the binary runs in the host08:39
vikasctrue08:39
apuimedoand we should make sure it works in any decent distro08:39
vikascagree08:39
*** neiljerram has joined #openstack-kuryr08:40
apuimedofkautz: ping08:44
fkautzapuimedo: what's up?08:45
apuimedofkautz: ltomasbo would like to join the networking-odl + kuryr effort08:46
apuimedocould we sync on the status08:46
fkautzgreat, definitely08:46
ltomasbohi fkautz08:46
apuimedoand have him join the next SIG meeting?08:46
ltomasboyep, it there is some document I can take a look to check the current status, gaps, ... that would be great08:47
*** foutatoro has quit IRC08:47
apuimedofkautz: ltomasbo: or a syncup short call if you prefer08:48
apuimedoI don't mind08:48
fkautzwe recently finished the ddf so we have something i can share08:49
fkautzit would be good to talk as well08:49
fkautzi can get you up to sync quickly and answer questions08:49
ltomasbofkautz, perhaps I can take a look to the document first, so that I have a better understanding (completely new to ODL)08:50
ltomasboand then we can sync up next week08:50
apuimedoboth options sound good to me08:50
fkautzmmm, got signed out, give me a few moments08:51
*** salv-orl_ has quit IRC08:51
dmelladoltomasbo: I've got an apex installation, we could try to check it with that too08:54
ltomasbodmellado, that sounds great!08:54
dmelladoltomasbo: btw did you melt yeat? I did...08:54
ltomasbonext week at the office?08:54
dmellado+108:54
ltomasboI was at the office yesterday, so, not yet...08:54
ltomasbobut today I may...08:54
fkautzltomasbo: join #opendaylight-coe  as well if you haven't already08:55
ltomasboohh, thanks fkautz08:55
fkautzmeetings are every wednesday, i'll make sure you get the link08:56
apuimedofkautz: still with skype?08:57
fkautzit isn't09:01
fkautzwe're using bj09:01
*** kzaitsev_ws has joined #openstack-kuryr09:01
ltomasbogreat!09:02
dmelladofkautz: please cc me as well ;)09:05
fkautzsure09:05
*** salv-orlando has joined #openstack-kuryr09:05
*** limao_ has quit IRC09:24
*** limao has joined #openstack-kuryr09:25
*** limao has quit IRC09:29
openstackgerritJaivish Kothari(janonymous) proposed openstack/kuryr-kubernetes master: Kubernetes client usage from upstream K8s repo  https://review.openstack.org/45455509:30
*** vikasc has quit IRC09:34
*** tonanhngo has joined #openstack-kuryr09:38
openstackgerritAntoni Segura Puimedon proposed openstack/kuryr-kubernetes master: devstack: Use devstack's etcd3 service  https://review.openstack.org/47421109:43
*** tonanhngo has quit IRC09:43
apuimedoltomasbo: I addressed your comments to ^^09:43
ltomasbogreat! I'll take another look asap09:45
apuimedothanks09:45
openstackgerritAntoni Segura Puimedon proposed openstack/kuryr-kubernetes master: devstack: Move to devstack-plugin-container  https://review.openstack.org/47423809:45
*** limao has joined #openstack-kuryr09:50
*** limao_ has joined #openstack-kuryr09:53
*** limao has quit IRC09:55
*** limao_ has quit IRC10:01
*** limao has joined #openstack-kuryr10:02
*** limao has quit IRC10:13
*** limao has joined #openstack-kuryr10:13
janonymousapuimedo: ping10:14
apuimedojanonymous: pong10:15
janonymousIn https://git.openstack.org/cgit/openstack/kuryr-kubernetes/tree/kuryr_kubernetes/controller/handlers/lbaas.py#n157 it get endpoint from services, but from https://git.openstack.org/cgit/openstack/kuryr-kubernetes/tree/devstack/plugin.sh#n126 no corresponding endpoint exists which leads to a request in annotate which will give not found, any impact from this or can we leave it safely.10:15
apuimedoI know10:15
apuimedojanonymous: I filed a bug on that10:15
apuimedolet me link you to it10:15
*** vikasc has joined #openstack-kuryr10:16
janonymousapuimedo: ohh i see, i was testing client locally, i thought i missed something :D10:16
apuimedojanonymous: https://bugs.launchpad.net/kuryr-kubernetes/+bug/169794210:16
openstackLaunchpad bug 1697942 in kuryr-kubernetes "Endpoint-less Services keep the lbaasspec handler endlessly retrying" [High,Triaged]10:16
apuimedono it's fine10:16
apuimedoyou'll get error messages10:16
janonymouscool!10:16
apuimedobut all other things should still work10:16
apuimedoit's a noisy thing in the logs though10:17
janonymousyup!10:17
janonymousanother this i will upload a patch for keystone10:17
janonymousi guess it do not use port 5000 which is used in vagrant10:17
janonymousIt uses something like http://127.0.0.1/identity10:18
apuimedowhere?10:20
openstackgerritJaivish Kothari(janonymous) proposed openstack/kuryr-kubernetes master: Removing Hardcoded Keystone Port in vagrant kury_rc  https://review.openstack.org/47493810:21
janonymousapuimedo: ^^10:21
*** limao has quit IRC10:24
apuimedojanonymous: shouldn't it be detected instead of hardcoded?10:26
openstackgerritJaivish Kothari(janonymous) proposed openstack/kuryr-kubernetes master: Removing detected Keystone Port in vagrant kury_rc  https://review.openstack.org/47493810:27
janonymousapuimedo: +1 changed10:27
vikascapuimedo, https://gist.github.com/wagenet/35adca1a032cec2999d47b6c40aa45b1#summary10:32
vikascapuimedo, Out of all versions with published EOLs, 2.12 is the oldest glibc still active, found in CentOS 6.8.10:32
apuimedointeresting10:32
vikascapuimedo, debian wheezy is 2.1310:33
apuimedovikasc: 6.8 is outdated10:40
vikascapuimedo, outdated means not supported by RH anymore?10:41
vikascapuimedo, cool then will try with debian wheezy10:41
apuimedovikasc: it means it is not the latest release10:42
apuimedothe latest is centos:6.910:42
apuimedowith glibc 2.12 as well10:42
vikascapuimedo, ok, so i am using centos:6 in dockerfile, it should get 6.910:43
openstackgerritAntoni Segura Puimedon proposed openstack/kuryr-kubernetes master: contrib: devstack-overcloud-heat  https://review.openstack.org/47276310:56
*** salv-orl_ has joined #openstack-kuryr11:15
vikascapuimedo, facing this error when trying to "pip install ." on centos 6.9, http://paste.openstack.org/show/612841/11:17
*** salv-orlando has quit IRC11:17
vikascapuimedo, any clue11:17
apuimedolol11:18
apuimedohow did you install pip?11:18
vikascapuimedo, yum install python-pip11:21
apuimedovikasc: maybe some outdated setuptools who knows11:22
vikascapuimedo, looks like11:23
apuimedoyou'd probably be best installing pip from internet rather than from the package11:23
vikascapuimedo, hmm, ok going to try that11:23
apuimedovikasc: check https://stackoverflow.com/questions/6587507/how-to-install-pip-with-python-311:23
apuimedothe manual way11:23
vikascapuimedo, thanks, trying it11:24
vikascapuimedo, python is 2.6 :)11:25
vikascapuimedo, i think i should upgrade it as well11:25
*** tonanhngo has joined #openstack-kuryr11:27
*** tonanhngo has quit IRC11:32
vikascapuimedo, having hard time gsetting python2.7 and pip with 2.7 on 6.911:46
*** tonanhngo has joined #openstack-kuryr11:46
*** tonanhngo_ has joined #openstack-kuryr11:50
*** tonanhngo has quit IRC11:51
apuimedovikasc: I told you to compile it from source in the container like docker compose does ;-)11:56
apuimedoI'd go with 3.6 from source11:56
vikascapuimedo,  i amtrying to install python2.7 from source11:57
vikascapuimedo, but facing errors11:57
vikascapuimedo, while doing 'make'11:57
apuimedovikasc: like?11:58
vikascapuimedo, like first this one , zipimport.ZipImportError: can't decompress data; zlib not available11:58
apuimedothat's in comppiling 2.7?11:58
apuimedocan you make a pastebin?11:58
vikascapuimedo, i overcome it using --withlibs and path /us/local/lib11:59
vikascapuimedo, now i am struggling with  "This platform's pyconfig.h needs to define PY_FORMAT_LONG_LONG"12:00
*** tonanhngo_ has quit IRC12:00
vikascapuimedo, work-arounded zlib error following this, https://github.com/pypa/pip/issues/191912:01
apuimedovikasc: I'm trying to compile it myself. I'll let you know what I come up with12:05
vikascapuimedo, i am also trying out meanwhile, thanks!12:06
openstackgerritOpenStack Proposal Bot proposed openstack/kuryr-kubernetes master: Updated from global requirements  https://review.openstack.org/46948912:13
*** tonanhngo has joined #openstack-kuryr12:23
vikascapuimedo, i have oversome earlier errors after installing zlib-devel and python-gzipstream. After this now when trying to install pip throwing some TLS/SSL related error.12:25
vikascapuimedo, i will figure it out12:25
vikascapuimedo, i will ask in cas ei will get stuck12:25
vikascs/case12:25
vikascapuimedo, this is the solution, nice post, http://www.javavirtues.com/2016/12/installing-python-on-linux-without.html12:28
apuimedovikasc: I built it nicely without doing anything special12:29
vikascapuimedo, on centos6?12:29
apuimedoyup12:29
vikascapuimedo, great, how did you install12:29
apuimedoI'll send you the yum history in a few minutes12:30
vikascapuimedo, if i do just ./configure and make altinstall12:30
apuimedowhy altinstall instead of install?12:30
vikascapuimedo, are yo able to install pip as well manually with python2.7?12:30
vikascapuimedo, because this is where i was facing issue12:30
*** tonanhngo has quit IRC12:30
apuimedoI'm doing python 3.512:32
vikascapuimedo, we need 2.7 for kuryr , right?12:32
apuimedovikasc: nope12:34
vikascapuimedo, i am confused, i thought kuryr supports python2 only and not python312:35
vikascapuimedo, i mean kuryr supports 2.7 as well12:36
apuimedowe have gates for python 2.7 and python3.5 for some time12:36
vikascso should not it be installed with 2.712:37
vikascyeah12:37
vikasci meant that it supports 2.7 as well12:37
vikascits both, so i am trying 2.712:38
apuimedoif it supports both, best use the latest12:38
apuimedoarggggh. Do you know why if I do 'make install' the bastard runs the 391 tests12:39
apuimedoit's such a bother12:39
apuimedoit ran them all in make, now in make install as well12:39
apuimedosuch a huge bother12:39
vikasci got pip with 2.7 though12:39
vikasc:)12:39
vikascapuimedo, so which version should i use to create kuryr binary, 2 or 3?12:42
apuimedo312:42
apuimedo3.5 to be more specific12:42
vikascapuimedo, cool12:42
apuimedoand the only deps you need to build it on 6.9 are12:42
apuimedoyum groupinstall "Development tools"12:42
vikascapuimedo, thanks12:43
*** tonanhngo has joined #openstack-kuryr12:47
*** rwallner has joined #openstack-kuryr12:50
*** limao has joined #openstack-kuryr12:51
*** rwallner has quit IRC12:52
*** rwallner has joined #openstack-kuryr12:52
*** tonanhngo has quit IRC12:52
*** zengchen has quit IRC12:54
apuimedovikasc: you should also install openssl-devel and zlib-devel12:56
vikascapuimedo, yep12:56
vikascapuimedo, i figured that out12:56
vikascapuimedo, i got kuryr installed12:56
vikascapuimedo, thanks!12:56
vikascapuimedo, just openssl-devel12:57
apuimedozlib-devel too12:57
apuimedofor ensure-pip12:57
vikascapuimedo, yeah, right12:58
*** limao has quit IRC12:58
vikascapuimedo, opesnssl-devel only for pip12:58
*** limao has joined #openstack-kuryr13:00
*** limao has quit IRC13:02
*** limao_ has joined #openstack-kuryr13:02
*** gouthamr has joined #openstack-kuryr13:03
*** limao has joined #openstack-kuryr13:08
*** limao_ has quit IRC13:10
*** atoth has quit IRC13:18
*** limao has quit IRC13:18
*** atoth has joined #openstack-kuryr13:19
*** limao has joined #openstack-kuryr13:19
*** limao has quit IRC13:20
* dmellado wondering about libffi-devel13:22
*** limao has joined #openstack-kuryr13:23
apuimedodmellado: what for?13:24
dmelladoopenssl-devel reminded me of python-cryptography reqs xD13:24
apuimedoah13:25
*** yedongcan has joined #openstack-kuryr13:29
*** yedongcan1 has quit IRC13:31
*** limao_ has joined #openstack-kuryr13:32
*** limao has quit IRC13:35
*** yamamoto_ has joined #openstack-kuryr13:41
*** limao has joined #openstack-kuryr13:41
*** limao_ has quit IRC13:41
openstackgerritAntoni Segura Puimedon proposed openstack/kuryr-kubernetes master: [WIP] Build system to generate cni binary  https://review.openstack.org/47497713:42
apuimedovikasc: https://review.openstack.org/47497713:43
apuimedoThis patch works, it only needs the cni.spec that you did13:43
*** yamamoto has quit IRC13:44
*** reedip has quit IRC13:46
*** reedip has joined #openstack-kuryr13:47
*** limao has quit IRC13:49
*** limao has joined #openstack-kuryr13:49
*** limao_ has joined #openstack-kuryr14:00
*** limao has quit IRC14:02
*** limao has joined #openstack-kuryr14:03
*** limao_ has quit IRC14:05
*** limao has quit IRC14:12
*** limao has joined #openstack-kuryr14:13
*** yedongcan has left #openstack-kuryr14:21
*** limao_ has joined #openstack-kuryr14:24
*** limao__ has joined #openstack-kuryr14:27
*** limao has quit IRC14:27
*** limao_ has quit IRC14:28
*** limao__ has quit IRC14:31
*** limao has joined #openstack-kuryr14:31
*** janki has quit IRC14:38
*** gsagie has joined #openstack-kuryr14:38
*** limao_ has joined #openstack-kuryr14:41
*** limao has quit IRC14:42
*** limao has joined #openstack-kuryr14:50
*** limao_ has quit IRC14:54
*** limao has quit IRC15:01
*** limao has joined #openstack-kuryr15:02
*** egonzalez has quit IRC15:10
*** egonzalez has joined #openstack-kuryr15:13
*** limao_ has joined #openstack-kuryr15:13
*** limao has quit IRC15:17
*** pcaruana has quit IRC15:20
*** limao_ has quit IRC15:24
*** limao has joined #openstack-kuryr15:24
kzaitsev_wsapuimedo: mind if update https://review.openstack.org/#/c/474211 the etcd-devstack migration patch?15:33
*** limao_ has joined #openstack-kuryr15:35
*** limao has quit IRC15:38
*** yamamoto_ has quit IRC15:39
*** yamamoto has joined #openstack-kuryr15:40
*** yamamoto has quit IRC15:44
*** rwallner has quit IRC15:55
*** tonanhngo has joined #openstack-kuryr15:56
*** tonanhngo has quit IRC16:00
*** limao_ has quit IRC16:09
*** ltomasbo is now known as ltomasbo|away16:10
*** yamamoto has joined #openstack-kuryr16:13
*** egonzalez has quit IRC16:18
*** yamamoto has quit IRC16:38
*** neiljerram has quit IRC17:12
*** salv-orlando has joined #openstack-kuryr17:15
*** salv-orl_ has quit IRC17:18
openstackgerritKirill Zaitsev proposed openstack/kuryr-kubernetes master: devstack: Use devstack's etcd3 service  https://review.openstack.org/47421117:29
openstackgerritKirill Zaitsev proposed openstack/kuryr-kubernetes master: Switch gate hook to use etcd3 instead of legacy  https://review.openstack.org/47503617:29
*** rwallner has joined #openstack-kuryr17:35
*** yamamoto has joined #openstack-kuryr17:39
*** yamamoto has quit IRC17:43
*** tonanhngo has joined #openstack-kuryr17:48
apuimedokzaitsev_ws: please do17:53
apuimedo;-)17:53
apuimedokzaitsev_ws: it may not look like it. But I hate devstack, bash and all that is related to it17:54
kzaitsev_wsapuimedo: already took the liberty =) two commits up above. both are green. 1st one proves that legacy_etcd works well17:55
kzaitsev_wssecond switches the gare to actual etcd3 =)17:55
apuimedoawesome17:55
apuimedoI'm just gonna go ahead and merge it17:56
kzaitsev_wscan squash them, just wanted to double-check17:56
apuimedonah17:58
apuimedotwo is better than one in this case17:58
*** gsagie has quit IRC18:00
apuimedothanks a lot kzaitsev_ws18:02
apuimedoI totally forgot about the devstackrc18:02
kzaitsev_wsnp =)18:03
*** pcaruana has joined #openstack-kuryr18:04
*** kzaitsev_ws has quit IRC18:07
openstackgerritMerged openstack/kuryr-kubernetes master: devstack: Use devstack's etcd3 service  https://review.openstack.org/47421118:16
openstackgerritMerged openstack/kuryr-kubernetes master: Switch gate hook to use etcd3 instead of legacy  https://review.openstack.org/47503618:16
*** tonanhngo has quit IRC18:23
*** tonanhngo has joined #openstack-kuryr18:24
*** tonanhngo has quit IRC18:28
*** hongbin has joined #openstack-kuryr18:38
hongbinapuimedo: hi toni, there?18:39
*** lakerzhou2 has joined #openstack-kuryr18:40
*** yamamoto has joined #openstack-kuryr18:40
*** pcaruana has quit IRC18:41
hongbinapuimedo: to introduce, lakerzhou2 is zun's contributor, he is looking at the SR-IOV support for kuryr-libnetwork, and wants to ask you several questions18:41
hongbinlakerzhou2: i think you could leave a message to apuimedo , i believe he will reply back once he has a chance18:42
openstackgerritMerged openstack/kuryr-kubernetes master: Update installation documentation  https://review.openstack.org/47265318:42
*** yamamoto has quit IRC18:44
*** yamamoto has joined #openstack-kuryr19:41
*** yamamoto has quit IRC19:45
*** gouthamr has quit IRC20:28
*** lakerzhou2 has quit IRC20:38
*** garyloug has quit IRC20:42
*** neiljerram has joined #openstack-kuryr20:43
*** rwallner has quit IRC21:03
*** gouthamr has joined #openstack-kuryr21:08
*** yamamoto has joined #openstack-kuryr21:42
*** yamamoto has quit IRC21:47
*** neiljerram has quit IRC22:24
*** yamamoto has joined #openstack-kuryr22:43
*** yamamoto has quit IRC22:49
*** salv-orl_ has joined #openstack-kuryr23:15
*** salv-orlando has quit IRC23:18
*** jgriffith has quit IRC23:26
*** apuimedo has quit IRC23:26
*** yuval has quit IRC23:26
*** bradjones has quit IRC23:26
*** yuval has joined #openstack-kuryr23:27
*** apuimedo has joined #openstack-kuryr23:28
*** jgriffith has joined #openstack-kuryr23:29
*** bradjones has joined #openstack-kuryr23:31
*** bradjones has quit IRC23:32
*** bradjones has joined #openstack-kuryr23:32
*** 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!