*** neiljerram has quit IRC | 00:09 | |
*** hongbin has quit IRC | 00:38 | |
*** limao has joined #openstack-kuryr | 00:48 | |
*** yedongcan has joined #openstack-kuryr | 01:36 | |
*** edisonxiang has joined #openstack-kuryr | 01:56 | |
*** hongbin has joined #openstack-kuryr | 03:17 | |
*** limao has quit IRC | 03:34 | |
*** limao has joined #openstack-kuryr | 03:35 | |
*** limao has quit IRC | 03:39 | |
*** hongbin has quit IRC | 03:52 | |
*** mattmceuen has joined #openstack-kuryr | 04:22 | |
*** yedongcan1 has joined #openstack-kuryr | 04:22 | |
*** yedongcan has quit IRC | 04:24 | |
*** salv-orlando has joined #openstack-kuryr | 04:50 | |
openstackgerrit | vikas choudhary proposed openstack/kuryr-kubernetes master: [WIP] Add support to install Kuryr as a network addon https://review.openstack.org/466675 | 04:55 |
---|---|---|
*** limao has joined #openstack-kuryr | 05:12 | |
*** mattmceuen has quit IRC | 05:14 | |
*** salv-orl_ has joined #openstack-kuryr | 05:15 | |
*** salv-orlando has quit IRC | 05:18 | |
*** gouthamr has quit IRC | 05:25 | |
*** ltomasbo|away is now known as ltomasbo | 05:36 | |
*** janki has joined #openstack-kuryr | 05:41 | |
*** tonanhngo has joined #openstack-kuryr | 06:09 | |
*** pcaruana has joined #openstack-kuryr | 06:43 | |
*** tonanhngo has quit IRC | 07:10 | |
*** tonanhngo has joined #openstack-kuryr | 07:11 | |
*** tonanhngo has quit IRC | 07:15 | |
*** tonanhngo has joined #openstack-kuryr | 07:24 | |
*** limao has quit IRC | 07:33 | |
*** limao_ has joined #openstack-kuryr | 07:33 | |
*** tonanhngo has quit IRC | 07:38 | |
*** tonanhngo has joined #openstack-kuryr | 07:38 | |
*** tonanhngo has quit IRC | 07:42 | |
*** egonzalez has joined #openstack-kuryr | 07:48 | |
dmellado | irenab: I was out traveling, I had some issues with the script which I'm sorting now ;) | 07:54 |
apuimedo | dmellado: it's weekend in TLV | 07:56 |
dmellado | apuimedo: oh, true! | 07:56 |
dmellado | apuimedo: I'm melting | 07:56 |
dmellado | I shouldn't ever have gotten back to Madrid | 07:56 |
apuimedo | dmellado: you should take a one way ticket out of there | 07:57 |
openstackgerrit | vikas choudhary proposed openstack/kuryr-kubernetes master: Add support to install Kuryr as a network addon https://review.openstack.org/466675 | 08:00 |
*** garyloug has joined #openstack-kuryr | 08:05 | |
openstackgerrit | Merged openstack/kuryr-kubernetes master: Stopping Thread from oslo_service https://review.openstack.org/474519 | 08:07 |
openstackgerrit | vikas choudhary proposed openstack/kuryr-kubernetes master: Add support to install Kuryr as a network addon https://review.openstack.org/466675 | 08:12 |
apuimedo | vikasc: how is the investigation on the debian container based cni binary building | 08:14 |
apuimedo | ? | 08:14 |
vikasc | apuimedo, i will start that now, i dint test cni yesterday. So today was completing testing and addressing your comments | 08:15 |
apuimedo | cool | 08:15 |
apuimedo | thanks | 08:15 |
vikasc | apuimedo, now its debian container turn | 08:15 |
apuimedo | great | 08:15 |
vikasc | apuimedo, can you please elaborate a bit once again what is the expectation? | 08:16 |
vikasc | apuimedo, wasnt focussing on it till now | 08:16 |
apuimedo | how pyinstaller works | 08:16 |
apuimedo | is that it makes a static binary | 08:16 |
vikasc | yes | 08:16 |
apuimedo | (but still uses libc IIRC) | 08:16 |
vikasc | it creates a static binary | 08:16 |
apuimedo | so, it is better that you use a container to build the binary | 08:17 |
apuimedo | that includes an old libc | 08:17 |
apuimedo | in this way, the binary will work in any distro with newer libc | 08:17 |
vikasc | this part i need to investigate. i am also using pyinstaller first time and it was two weeks back | 08:17 |
apuimedo | so the idea is to use a debian:wheezy container to build the binary | 08:17 |
vikasc | it is building binary in the container only | 08:17 |
apuimedo | then include the binary in the real CNI container | 08:18 |
vikasc | cni daemonset pods container | 08:18 |
apuimedo | that writes it in a mounted path in /opt/bin/cni/kuryr-cni | 08:18 |
apuimedo | this building container is not part of kuryr.yml | 08:18 |
vikasc | no | 08:18 |
apuimedo | it's only to prepare the binary that cni.Dockerfile will use | 08:18 |
vikasc | it is in cni_ds_init | 08:18 |
vikasc | sorry, i will read back again your comments to see if i miss something | 08:19 |
apuimedo | ok | 08:19 |
vikasc | are you saying rhel7 container has old libc while debian:wheezy will have new libc? | 08:21 |
apuimedo | the opposite | 08:21 |
vikasc | ok | 08:21 |
vikasc | so cant this be achieved by just modifying cni dockerfile to use debian as base image? | 08:22 |
apuimedo | Let's go over the steps again | 08:23 |
apuimedo | There should be two containers | 08:23 |
apuimedo | a) Building container | 08:23 |
apuimedo | b) cni container | 08:23 |
apuimedo | The building container should be based on an image with an old libc | 08:23 |
apuimedo | what it does is. Build Python2/3 from source or use devel packages | 08:24 |
vikasc | i got your point, i am saying current container is build container only | 08:24 |
apuimedo | Then use pyinstaller to generate the binary | 08:24 |
vikasc | which is building and copying the cni at mounted path | 08:24 |
apuimedo | copying the cni should be the (b) container | 08:24 |
vikasc | why this extra handover | 08:25 |
apuimedo | two different containers. You don't want the whole build system in the daemon set | 08:25 |
apuimedo | it's a waste | 08:25 |
apuimedo | otherwise you run it on every darned machine | 08:25 |
apuimedo | you only one a container copying on each machine | 08:25 |
apuimedo | not building on each machine | 08:25 |
vikasc | ok, so this build container would be launched on master? | 08:25 |
vikasc | i think so | 08:26 |
apuimedo | no | 08:27 |
apuimedo | it's only for building the (b) container that gets pushed to hub.docker.com/r/kuryr/cni | 08:27 |
vikasc | m just thinking how the binary will be copied to all the nodes? | 08:27 |
vikasc | ok | 08:28 |
apuimedo | you can make a script, in tools/build/cni_container.sh | 08:28 |
apuimedo | that will be similar to docker/compose scripts/build/linux | 08:29 |
apuimedo | but, once it has the binary | 08:29 |
vikasc | cool | 08:29 |
vikasc | i got it | 08:29 |
apuimedo | it does a docker build -t kuryr/cni -f ../../cni.Dockerfile ../../ | 08:29 |
apuimedo | good | 08:29 |
vikasc | but before that.. are sure on this libc part | 08:30 |
vikasc | or i need to confirm once again | 08:30 |
vikasc | 1. pyoinstaller depends on libc | 08:30 |
vikasc | 2. which distro has oldest libc | 08:31 |
apuimedo | I am sure | 08:38 |
apuimedo | that if it's an older distro, then people can build the kuryr/cni from almost any distro and it will work | 08:38 |
vikasc | sure, thanks | 08:39 |
apuimedo | if the binary ran from the cni container it would not matter | 08:39 |
apuimedo | but the fact is that the binary runs in the host | 08:39 |
vikasc | true | 08:39 |
apuimedo | and we should make sure it works in any decent distro | 08:39 |
vikasc | agree | 08:39 |
*** neiljerram has joined #openstack-kuryr | 08:40 | |
apuimedo | fkautz: ping | 08:44 |
fkautz | apuimedo: what's up? | 08:45 |
apuimedo | fkautz: ltomasbo would like to join the networking-odl + kuryr effort | 08:46 |
apuimedo | could we sync on the status | 08:46 |
fkautz | great, definitely | 08:46 |
ltomasbo | hi fkautz | 08:46 |
apuimedo | and have him join the next SIG meeting? | 08:46 |
ltomasbo | yep, it there is some document I can take a look to check the current status, gaps, ... that would be great | 08:47 |
*** foutatoro has quit IRC | 08:47 | |
apuimedo | fkautz: ltomasbo: or a syncup short call if you prefer | 08:48 |
apuimedo | I don't mind | 08:48 |
fkautz | we recently finished the ddf so we have something i can share | 08:49 |
fkautz | it would be good to talk as well | 08:49 |
fkautz | i can get you up to sync quickly and answer questions | 08:49 |
ltomasbo | fkautz, perhaps I can take a look to the document first, so that I have a better understanding (completely new to ODL) | 08:50 |
ltomasbo | and then we can sync up next week | 08:50 |
apuimedo | both options sound good to me | 08:50 |
fkautz | mmm, got signed out, give me a few moments | 08:51 |
*** salv-orl_ has quit IRC | 08:51 | |
dmellado | ltomasbo: I've got an apex installation, we could try to check it with that too | 08:54 |
ltomasbo | dmellado, that sounds great! | 08:54 |
dmellado | ltomasbo: btw did you melt yeat? I did... | 08:54 |
ltomasbo | next week at the office? | 08:54 |
dmellado | +1 | 08:54 |
ltomasbo | I was at the office yesterday, so, not yet... | 08:54 |
ltomasbo | but today I may... | 08:54 |
fkautz | ltomasbo: join #opendaylight-coe as well if you haven't already | 08:55 |
ltomasbo | ohh, thanks fkautz | 08:55 |
fkautz | meetings are every wednesday, i'll make sure you get the link | 08:56 |
apuimedo | fkautz: still with skype? | 08:57 |
fkautz | it isn't | 09:01 |
fkautz | we're using bj | 09:01 |
*** kzaitsev_ws has joined #openstack-kuryr | 09:01 | |
ltomasbo | great! | 09:02 |
dmellado | fkautz: please cc me as well ;) | 09:05 |
fkautz | sure | 09:05 |
*** salv-orlando has joined #openstack-kuryr | 09:05 | |
*** limao_ has quit IRC | 09:24 | |
*** limao has joined #openstack-kuryr | 09:25 | |
*** limao has quit IRC | 09:29 | |
openstackgerrit | Jaivish Kothari(janonymous) proposed openstack/kuryr-kubernetes master: Kubernetes client usage from upstream K8s repo https://review.openstack.org/454555 | 09:30 |
*** vikasc has quit IRC | 09:34 | |
*** tonanhngo has joined #openstack-kuryr | 09:38 | |
openstackgerrit | Antoni Segura Puimedon proposed openstack/kuryr-kubernetes master: devstack: Use devstack's etcd3 service https://review.openstack.org/474211 | 09:43 |
*** tonanhngo has quit IRC | 09:43 | |
apuimedo | ltomasbo: I addressed your comments to ^^ | 09:43 |
ltomasbo | great! I'll take another look asap | 09:45 |
apuimedo | thanks | 09:45 |
openstackgerrit | Antoni Segura Puimedon proposed openstack/kuryr-kubernetes master: devstack: Move to devstack-plugin-container https://review.openstack.org/474238 | 09:45 |
*** limao has joined #openstack-kuryr | 09:50 | |
*** limao_ has joined #openstack-kuryr | 09:53 | |
*** limao has quit IRC | 09:55 | |
*** limao_ has quit IRC | 10:01 | |
*** limao has joined #openstack-kuryr | 10:02 | |
*** limao has quit IRC | 10:13 | |
*** limao has joined #openstack-kuryr | 10:13 | |
janonymous | apuimedo: ping | 10:14 |
apuimedo | janonymous: pong | 10:15 |
janonymous | In 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 |
apuimedo | I know | 10:15 |
apuimedo | janonymous: I filed a bug on that | 10:15 |
apuimedo | let me link you to it | 10:15 |
*** vikasc has joined #openstack-kuryr | 10:16 | |
janonymous | apuimedo: ohh i see, i was testing client locally, i thought i missed something :D | 10:16 |
apuimedo | janonymous: https://bugs.launchpad.net/kuryr-kubernetes/+bug/1697942 | 10:16 |
openstack | Launchpad bug 1697942 in kuryr-kubernetes "Endpoint-less Services keep the lbaasspec handler endlessly retrying" [High,Triaged] | 10:16 |
apuimedo | no it's fine | 10:16 |
apuimedo | you'll get error messages | 10:16 |
janonymous | cool! | 10:16 |
apuimedo | but all other things should still work | 10:16 |
apuimedo | it's a noisy thing in the logs though | 10:17 |
janonymous | yup! | 10:17 |
janonymous | another this i will upload a patch for keystone | 10:17 |
janonymous | i guess it do not use port 5000 which is used in vagrant | 10:17 |
janonymous | It uses something like http://127.0.0.1/identity | 10:18 |
apuimedo | where? | 10:20 |
openstackgerrit | Jaivish Kothari(janonymous) proposed openstack/kuryr-kubernetes master: Removing Hardcoded Keystone Port in vagrant kury_rc https://review.openstack.org/474938 | 10:21 |
janonymous | apuimedo: ^^ | 10:21 |
*** limao has quit IRC | 10:24 | |
apuimedo | janonymous: shouldn't it be detected instead of hardcoded? | 10:26 |
openstackgerrit | Jaivish Kothari(janonymous) proposed openstack/kuryr-kubernetes master: Removing detected Keystone Port in vagrant kury_rc https://review.openstack.org/474938 | 10:27 |
janonymous | apuimedo: +1 changed | 10:27 |
vikasc | apuimedo, https://gist.github.com/wagenet/35adca1a032cec2999d47b6c40aa45b1#summary | 10:32 |
vikasc | apuimedo, Out of all versions with published EOLs, 2.12 is the oldest glibc still active, found in CentOS 6.8. | 10:32 |
apuimedo | interesting | 10:32 |
vikasc | apuimedo, debian wheezy is 2.13 | 10:33 |
apuimedo | vikasc: 6.8 is outdated | 10:40 |
vikasc | apuimedo, outdated means not supported by RH anymore? | 10:41 |
vikasc | apuimedo, cool then will try with debian wheezy | 10:41 |
apuimedo | vikasc: it means it is not the latest release | 10:42 |
apuimedo | the latest is centos:6.9 | 10:42 |
apuimedo | with glibc 2.12 as well | 10:42 |
vikasc | apuimedo, ok, so i am using centos:6 in dockerfile, it should get 6.9 | 10:43 |
openstackgerrit | Antoni Segura Puimedon proposed openstack/kuryr-kubernetes master: contrib: devstack-overcloud-heat https://review.openstack.org/472763 | 10:56 |
*** salv-orl_ has joined #openstack-kuryr | 11:15 | |
vikasc | apuimedo, facing this error when trying to "pip install ." on centos 6.9, http://paste.openstack.org/show/612841/ | 11:17 |
*** salv-orlando has quit IRC | 11:17 | |
vikasc | apuimedo, any clue | 11:17 |
apuimedo | lol | 11:18 |
apuimedo | how did you install pip? | 11:18 |
vikasc | apuimedo, yum install python-pip | 11:21 |
apuimedo | vikasc: maybe some outdated setuptools who knows | 11:22 |
vikasc | apuimedo, looks like | 11:23 |
apuimedo | you'd probably be best installing pip from internet rather than from the package | 11:23 |
vikasc | apuimedo, hmm, ok going to try that | 11:23 |
apuimedo | vikasc: check https://stackoverflow.com/questions/6587507/how-to-install-pip-with-python-3 | 11:23 |
apuimedo | the manual way | 11:23 |
vikasc | apuimedo, thanks, trying it | 11:24 |
vikasc | apuimedo, python is 2.6 :) | 11:25 |
vikasc | apuimedo, i think i should upgrade it as well | 11:25 |
*** tonanhngo has joined #openstack-kuryr | 11:27 | |
*** tonanhngo has quit IRC | 11:32 | |
vikasc | apuimedo, having hard time gsetting python2.7 and pip with 2.7 on 6.9 | 11:46 |
*** tonanhngo has joined #openstack-kuryr | 11:46 | |
*** tonanhngo_ has joined #openstack-kuryr | 11:50 | |
*** tonanhngo has quit IRC | 11:51 | |
apuimedo | vikasc: I told you to compile it from source in the container like docker compose does ;-) | 11:56 |
apuimedo | I'd go with 3.6 from source | 11:56 |
vikasc | apuimedo, i amtrying to install python2.7 from source | 11:57 |
vikasc | apuimedo, but facing errors | 11:57 |
vikasc | apuimedo, while doing 'make' | 11:57 |
apuimedo | vikasc: like? | 11:58 |
vikasc | apuimedo, like first this one , zipimport.ZipImportError: can't decompress data; zlib not available | 11:58 |
apuimedo | that's in comppiling 2.7? | 11:58 |
apuimedo | can you make a pastebin? | 11:58 |
vikasc | apuimedo, i overcome it using --withlibs and path /us/local/lib | 11:59 |
vikasc | apuimedo, now i am struggling with "This platform's pyconfig.h needs to define PY_FORMAT_LONG_LONG" | 12:00 |
*** tonanhngo_ has quit IRC | 12:00 | |
vikasc | apuimedo, work-arounded zlib error following this, https://github.com/pypa/pip/issues/1919 | 12:01 |
apuimedo | vikasc: I'm trying to compile it myself. I'll let you know what I come up with | 12:05 |
vikasc | apuimedo, i am also trying out meanwhile, thanks! | 12:06 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/kuryr-kubernetes master: Updated from global requirements https://review.openstack.org/469489 | 12:13 |
*** tonanhngo has joined #openstack-kuryr | 12:23 | |
vikasc | apuimedo, 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 |
vikasc | apuimedo, i will figure it out | 12:25 |
vikasc | apuimedo, i will ask in cas ei will get stuck | 12:25 |
vikasc | s/case | 12:25 |
vikasc | apuimedo, this is the solution, nice post, http://www.javavirtues.com/2016/12/installing-python-on-linux-without.html | 12:28 |
apuimedo | vikasc: I built it nicely without doing anything special | 12:29 |
vikasc | apuimedo, on centos6? | 12:29 |
apuimedo | yup | 12:29 |
vikasc | apuimedo, great, how did you install | 12:29 |
apuimedo | I'll send you the yum history in a few minutes | 12:30 |
vikasc | apuimedo, if i do just ./configure and make altinstall | 12:30 |
apuimedo | why altinstall instead of install? | 12:30 |
vikasc | apuimedo, are yo able to install pip as well manually with python2.7? | 12:30 |
vikasc | apuimedo, because this is where i was facing issue | 12:30 |
*** tonanhngo has quit IRC | 12:30 | |
apuimedo | I'm doing python 3.5 | 12:32 |
vikasc | apuimedo, we need 2.7 for kuryr , right? | 12:32 |
apuimedo | vikasc: nope | 12:34 |
vikasc | apuimedo, i am confused, i thought kuryr supports python2 only and not python3 | 12:35 |
vikasc | apuimedo, i mean kuryr supports 2.7 as well | 12:36 |
apuimedo | we have gates for python 2.7 and python3.5 for some time | 12:36 |
vikasc | so should not it be installed with 2.7 | 12:37 |
vikasc | yeah | 12:37 |
vikasc | i meant that it supports 2.7 as well | 12:37 |
vikasc | its both, so i am trying 2.7 | 12:38 |
apuimedo | if it supports both, best use the latest | 12:38 |
apuimedo | arggggh. Do you know why if I do 'make install' the bastard runs the 391 tests | 12:39 |
apuimedo | it's such a bother | 12:39 |
apuimedo | it ran them all in make, now in make install as well | 12:39 |
apuimedo | such a huge bother | 12:39 |
vikasc | i got pip with 2.7 though | 12:39 |
vikasc | :) | 12:39 |
vikasc | apuimedo, so which version should i use to create kuryr binary, 2 or 3? | 12:42 |
apuimedo | 3 | 12:42 |
apuimedo | 3.5 to be more specific | 12:42 |
vikasc | apuimedo, cool | 12:42 |
apuimedo | and the only deps you need to build it on 6.9 are | 12:42 |
apuimedo | yum groupinstall "Development tools" | 12:42 |
vikasc | apuimedo, thanks | 12:43 |
*** tonanhngo has joined #openstack-kuryr | 12:47 | |
*** rwallner has joined #openstack-kuryr | 12:50 | |
*** limao has joined #openstack-kuryr | 12:51 | |
*** rwallner has quit IRC | 12:52 | |
*** rwallner has joined #openstack-kuryr | 12:52 | |
*** tonanhngo has quit IRC | 12:52 | |
*** zengchen has quit IRC | 12:54 | |
apuimedo | vikasc: you should also install openssl-devel and zlib-devel | 12:56 |
vikasc | apuimedo, yep | 12:56 |
vikasc | apuimedo, i figured that out | 12:56 |
vikasc | apuimedo, i got kuryr installed | 12:56 |
vikasc | apuimedo, thanks! | 12:56 |
vikasc | apuimedo, just openssl-devel | 12:57 |
apuimedo | zlib-devel too | 12:57 |
apuimedo | for ensure-pip | 12:57 |
vikasc | apuimedo, yeah, right | 12:58 |
*** limao has quit IRC | 12:58 | |
vikasc | apuimedo, opesnssl-devel only for pip | 12:58 |
*** limao has joined #openstack-kuryr | 13:00 | |
*** limao has quit IRC | 13:02 | |
*** limao_ has joined #openstack-kuryr | 13:02 | |
*** gouthamr has joined #openstack-kuryr | 13:03 | |
*** limao has joined #openstack-kuryr | 13:08 | |
*** limao_ has quit IRC | 13:10 | |
*** atoth has quit IRC | 13:18 | |
*** limao has quit IRC | 13:18 | |
*** atoth has joined #openstack-kuryr | 13:19 | |
*** limao has joined #openstack-kuryr | 13:19 | |
*** limao has quit IRC | 13:20 | |
* dmellado wondering about libffi-devel | 13:22 | |
*** limao has joined #openstack-kuryr | 13:23 | |
apuimedo | dmellado: what for? | 13:24 |
dmellado | openssl-devel reminded me of python-cryptography reqs xD | 13:24 |
apuimedo | ah | 13:25 |
*** yedongcan has joined #openstack-kuryr | 13:29 | |
*** yedongcan1 has quit IRC | 13:31 | |
*** limao_ has joined #openstack-kuryr | 13:32 | |
*** limao has quit IRC | 13:35 | |
*** yamamoto_ has joined #openstack-kuryr | 13:41 | |
*** limao has joined #openstack-kuryr | 13:41 | |
*** limao_ has quit IRC | 13:41 | |
openstackgerrit | Antoni Segura Puimedon proposed openstack/kuryr-kubernetes master: [WIP] Build system to generate cni binary https://review.openstack.org/474977 | 13:42 |
apuimedo | vikasc: https://review.openstack.org/474977 | 13:43 |
apuimedo | This patch works, it only needs the cni.spec that you did | 13:43 |
*** yamamoto has quit IRC | 13:44 | |
*** reedip has quit IRC | 13:46 | |
*** reedip has joined #openstack-kuryr | 13:47 | |
*** limao has quit IRC | 13:49 | |
*** limao has joined #openstack-kuryr | 13:49 | |
*** limao_ has joined #openstack-kuryr | 14:00 | |
*** limao has quit IRC | 14:02 | |
*** limao has joined #openstack-kuryr | 14:03 | |
*** limao_ has quit IRC | 14:05 | |
*** limao has quit IRC | 14:12 | |
*** limao has joined #openstack-kuryr | 14:13 | |
*** yedongcan has left #openstack-kuryr | 14:21 | |
*** limao_ has joined #openstack-kuryr | 14:24 | |
*** limao__ has joined #openstack-kuryr | 14:27 | |
*** limao has quit IRC | 14:27 | |
*** limao_ has quit IRC | 14:28 | |
*** limao__ has quit IRC | 14:31 | |
*** limao has joined #openstack-kuryr | 14:31 | |
*** janki has quit IRC | 14:38 | |
*** gsagie has joined #openstack-kuryr | 14:38 | |
*** limao_ has joined #openstack-kuryr | 14:41 | |
*** limao has quit IRC | 14:42 | |
*** limao has joined #openstack-kuryr | 14:50 | |
*** limao_ has quit IRC | 14:54 | |
*** limao has quit IRC | 15:01 | |
*** limao has joined #openstack-kuryr | 15:02 | |
*** egonzalez has quit IRC | 15:10 | |
*** egonzalez has joined #openstack-kuryr | 15:13 | |
*** limao_ has joined #openstack-kuryr | 15:13 | |
*** limao has quit IRC | 15:17 | |
*** pcaruana has quit IRC | 15:20 | |
*** limao_ has quit IRC | 15:24 | |
*** limao has joined #openstack-kuryr | 15:24 | |
kzaitsev_ws | apuimedo: mind if update https://review.openstack.org/#/c/474211 the etcd-devstack migration patch? | 15:33 |
*** limao_ has joined #openstack-kuryr | 15:35 | |
*** limao has quit IRC | 15:38 | |
*** yamamoto_ has quit IRC | 15:39 | |
*** yamamoto has joined #openstack-kuryr | 15:40 | |
*** yamamoto has quit IRC | 15:44 | |
*** rwallner has quit IRC | 15:55 | |
*** tonanhngo has joined #openstack-kuryr | 15:56 | |
*** tonanhngo has quit IRC | 16:00 | |
*** limao_ has quit IRC | 16:09 | |
*** ltomasbo is now known as ltomasbo|away | 16:10 | |
*** yamamoto has joined #openstack-kuryr | 16:13 | |
*** egonzalez has quit IRC | 16:18 | |
*** yamamoto has quit IRC | 16:38 | |
*** neiljerram has quit IRC | 17:12 | |
*** salv-orlando has joined #openstack-kuryr | 17:15 | |
*** salv-orl_ has quit IRC | 17:18 | |
openstackgerrit | Kirill Zaitsev proposed openstack/kuryr-kubernetes master: devstack: Use devstack's etcd3 service https://review.openstack.org/474211 | 17:29 |
openstackgerrit | Kirill Zaitsev proposed openstack/kuryr-kubernetes master: Switch gate hook to use etcd3 instead of legacy https://review.openstack.org/475036 | 17:29 |
*** rwallner has joined #openstack-kuryr | 17:35 | |
*** yamamoto has joined #openstack-kuryr | 17:39 | |
*** yamamoto has quit IRC | 17:43 | |
*** tonanhngo has joined #openstack-kuryr | 17:48 | |
apuimedo | kzaitsev_ws: please do | 17:53 |
apuimedo | ;-) | 17:53 |
apuimedo | kzaitsev_ws: it may not look like it. But I hate devstack, bash and all that is related to it | 17:54 |
kzaitsev_ws | apuimedo: already took the liberty =) two commits up above. both are green. 1st one proves that legacy_etcd works well | 17:55 |
kzaitsev_ws | second switches the gare to actual etcd3 =) | 17:55 |
apuimedo | awesome | 17:55 |
apuimedo | I'm just gonna go ahead and merge it | 17:56 |
kzaitsev_ws | can squash them, just wanted to double-check | 17:56 |
apuimedo | nah | 17:58 |
apuimedo | two is better than one in this case | 17:58 |
*** gsagie has quit IRC | 18:00 | |
apuimedo | thanks a lot kzaitsev_ws | 18:02 |
apuimedo | I totally forgot about the devstackrc | 18:02 |
kzaitsev_ws | np =) | 18:03 |
*** pcaruana has joined #openstack-kuryr | 18:04 | |
*** kzaitsev_ws has quit IRC | 18:07 | |
openstackgerrit | Merged openstack/kuryr-kubernetes master: devstack: Use devstack's etcd3 service https://review.openstack.org/474211 | 18:16 |
openstackgerrit | Merged openstack/kuryr-kubernetes master: Switch gate hook to use etcd3 instead of legacy https://review.openstack.org/475036 | 18:16 |
*** tonanhngo has quit IRC | 18:23 | |
*** tonanhngo has joined #openstack-kuryr | 18:24 | |
*** tonanhngo has quit IRC | 18:28 | |
*** hongbin has joined #openstack-kuryr | 18:38 | |
hongbin | apuimedo: hi toni, there? | 18:39 |
*** lakerzhou2 has joined #openstack-kuryr | 18:40 | |
*** yamamoto has joined #openstack-kuryr | 18:40 | |
*** pcaruana has quit IRC | 18:41 | |
hongbin | apuimedo: to introduce, lakerzhou2 is zun's contributor, he is looking at the SR-IOV support for kuryr-libnetwork, and wants to ask you several questions | 18:41 |
hongbin | lakerzhou2: i think you could leave a message to apuimedo , i believe he will reply back once he has a chance | 18:42 |
openstackgerrit | Merged openstack/kuryr-kubernetes master: Update installation documentation https://review.openstack.org/472653 | 18:42 |
*** yamamoto has quit IRC | 18:44 | |
*** yamamoto has joined #openstack-kuryr | 19:41 | |
*** yamamoto has quit IRC | 19:45 | |
*** gouthamr has quit IRC | 20:28 | |
*** lakerzhou2 has quit IRC | 20:38 | |
*** garyloug has quit IRC | 20:42 | |
*** neiljerram has joined #openstack-kuryr | 20:43 | |
*** rwallner has quit IRC | 21:03 | |
*** gouthamr has joined #openstack-kuryr | 21:08 | |
*** yamamoto has joined #openstack-kuryr | 21:42 | |
*** yamamoto has quit IRC | 21:47 | |
*** neiljerram has quit IRC | 22:24 | |
*** yamamoto has joined #openstack-kuryr | 22:43 | |
*** yamamoto has quit IRC | 22:49 | |
*** salv-orl_ has joined #openstack-kuryr | 23:15 | |
*** salv-orlando has quit IRC | 23:18 | |
*** jgriffith has quit IRC | 23:26 | |
*** apuimedo has quit IRC | 23:26 | |
*** yuval has quit IRC | 23:26 | |
*** bradjones has quit IRC | 23:26 | |
*** yuval has joined #openstack-kuryr | 23:27 | |
*** apuimedo has joined #openstack-kuryr | 23:28 | |
*** jgriffith has joined #openstack-kuryr | 23:29 | |
*** bradjones has joined #openstack-kuryr | 23:31 | |
*** bradjones has quit IRC | 23:32 | |
*** bradjones has joined #openstack-kuryr | 23:32 | |
*** yamamoto has joined #openstack-kuryr | 23:45 | |
*** yamamoto has quit IRC | 23:50 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!