*** mrostecki_ has joined #openstack-kuryr | 01:45 | |
*** mrostecki__ has quit IRC | 01:45 | |
*** mrostecki__ has joined #openstack-kuryr | 03:33 | |
*** mrostecki_ has quit IRC | 03:33 | |
*** gcheresh has joined #openstack-kuryr | 06:05 | |
*** yamamoto has joined #openstack-kuryr | 06:12 | |
*** yamamoto has quit IRC | 06:18 | |
*** reedip has joined #openstack-kuryr | 06:19 | |
*** yamamoto has joined #openstack-kuryr | 06:33 | |
*** yamamoto has quit IRC | 06:33 | |
*** yboaron has joined #openstack-kuryr | 06:42 | |
*** mrostecki__ has quit IRC | 07:05 | |
*** mrostecki__ has joined #openstack-kuryr | 07:12 | |
*** yamamoto has joined #openstack-kuryr | 07:31 | |
*** yamamoto has quit IRC | 07:36 | |
*** yamamoto has joined #openstack-kuryr | 07:37 | |
*** yamamoto has quit IRC | 07:53 | |
*** yamamoto has joined #openstack-kuryr | 08:02 | |
*** mrostecki__ has quit IRC | 08:06 | |
*** gcheresh has quit IRC | 08:07 | |
*** yamamoto has quit IRC | 08:07 | |
*** gcheresh has joined #openstack-kuryr | 08:07 | |
openstackgerrit | Yossi Boaron proposed openstack/kuryr-kubernetes master: Kuryr-Kubernetes ingress integration devref https://review.openstack.org/529966 | 08:07 |
---|---|---|
*** mrostecki has joined #openstack-kuryr | 08:13 | |
*** yamamoto has joined #openstack-kuryr | 08:16 | |
*** yamamoto has quit IRC | 08:21 | |
*** yamamoto has joined #openstack-kuryr | 08:30 | |
*** gcheresh has quit IRC | 08:34 | |
*** gcheresh has joined #openstack-kuryr | 08:34 | |
*** dougbtv__ has joined #openstack-kuryr | 09:06 | |
*** dougbtv_ has quit IRC | 09:06 | |
*** mrostecki has quit IRC | 09:22 | |
*** mrostecki has joined #openstack-kuryr | 09:29 | |
*** dougbtv_ has joined #openstack-kuryr | 09:49 | |
*** dougbtv__ has quit IRC | 09:53 | |
*** mrostecki has quit IRC | 10:07 | |
*** mrostecki has joined #openstack-kuryr | 10:14 | |
*** gcheresh_ has joined #openstack-kuryr | 10:38 | |
*** gcheresh has quit IRC | 10:39 | |
*** yamamoto has quit IRC | 10:43 | |
*** vikasc has quit IRC | 11:25 | |
*** vikasc has joined #openstack-kuryr | 11:36 | |
*** yamamoto has joined #openstack-kuryr | 11:56 | |
*** yamamoto has quit IRC | 12:01 | |
*** aojea has joined #openstack-kuryr | 12:05 | |
*** livelace-link has joined #openstack-kuryr | 12:07 | |
*** aojea_ has joined #openstack-kuryr | 12:11 | |
*** livelace-link has quit IRC | 12:11 | |
*** aojea__ has joined #openstack-kuryr | 12:13 | |
*** aojea_ has quit IRC | 12:13 | |
*** aojea has quit IRC | 12:14 | |
yboaron | irenab, Hi | 12:16 |
*** aojea__ has quit IRC | 12:18 | |
*** phuoc has joined #openstack-kuryr | 12:21 | |
irenab | yboaron, hi | 12:23 |
yboaron | Happy New Year ! | 12:24 |
irenab | Happy New Year :-) | 12:24 |
yboaron | irenab, just a minute please | 12:25 |
irenab | yboaron, leyal are you into having weekly today or shall we wait till the rest of the team for next week? | 12:25 |
yboaron | irenab, I'm fine with skipping today's meeting | 12:26 |
yboaron | irenab, Regarding your comment at : https://review.openstack.org/#/c/523900/5/kuryr_kubernetes/controller/service.py | 12:26 |
irenab | If there are some topics, we can discuss here on the channel | 12:26 |
irenab | yboaron, line? | 12:27 |
yboaron | irenab, 63 | 12:27 |
*** livelace-link has joined #openstack-kuryr | 12:27 | |
yboaron | Could u please explain why u think it shouldn't run as part of controller service ? | 12:27 |
leyal | irenab, I also ok with waiting to next week | 12:28 |
irenab | yboaron, in my opinion cotroller service is just the one that kicks the relevant watchers, so I think that more applicative specific tasks such as router | 12:30 |
irenab | such as router setup should be performed one 'level' below | 12:30 |
irenab | Controller service maintains k8s controller pipeline and watchers, it does not enter into the business logic of each one | 12:32 |
yboaron | irenab, Yep , Sounds reasonable to have an Infra/common application , but that mean we should an application manager or something equivalent that will orchestrate all of them | 12:32 |
irenab | once we make pipeline configurable via statement in config file, it won't be modified even when new Handler or watcher is added | 12:33 |
irenab | another question, why should the router be setup upon init and not before? | 12:34 |
irenab | Like stuff in the devstack | 12:34 |
yboaron | In dvestack there's a limitation that Router can start only when OCTAVIA service is applicable , which is " [[ "$1" == "stack" && "$2" == "test-config" ]]; then " | 12:36 |
*** gcheresh has joined #openstack-kuryr | 12:37 | |
yboaron | irenab, As you said the Router could be created anytime the LB provider (e.g OCTAVIA ) is UP and running | 12:37 |
irenab | regarding the original question, take Neutron for example. The service is not modified when new plugin/extension/mechanism driver is added | 12:37 |
*** gcheresh_ has quit IRC | 12:37 | |
irenab | my question was why to bind the creation to the kuryr service initialization. And what is there is the controller restart and router is already there. You need to handle this case anyway, so why not to require router existance? | 12:39 |
yboaron | irenab, but we need to remember also that if router configured ,we should start watching (Ingress,Service) after Router is created. | 12:39 |
irenab | To simplify this, it can be just the config option if to watch Ingress/Service | 12:40 |
irenab | if router is not present; NotReadyException can be raised | 12:41 |
irenab | yboaron, it just seems to me that kuryr service is not the right place to put router setup logic there | 12:42 |
irenab | somehow feels more like a hack.. | 12:42 |
yboaron | irenab, I agree that it should be in another piece of SW , but that means we should design/think about kuryr-k8s SW modules , as you mentioned the one level below | 12:45 |
yboaron | irenab, the connection between them , etc | 12:45 |
irenab | We have the Handlers | 12:46 |
irenab | and pipeline | 12:48 |
irenab | let me check a bit more on our current implementation and go through the original devref https://github.com/openstack/kuryr-kubernetes/blob/master/doc/source/devref/kuryr_kubernetes_design.rst | 12:50 |
yboaron | irenab, Sure | 12:52 |
yboaron | irenab, I must go to another meeting , can I contact u later ? | 12:58 |
*** gcheresh has quit IRC | 13:15 | |
*** gcheresh has joined #openstack-kuryr | 13:16 | |
irenab | yboaron, sure | 13:22 |
*** yamamoto has joined #openstack-kuryr | 13:45 | |
*** gcheresh has quit IRC | 14:21 | |
*** gcheresh has joined #openstack-kuryr | 14:24 | |
*** irenab has quit IRC | 14:34 | |
*** oanson has quit IRC | 14:34 | |
*** leyal has quit IRC | 14:34 | |
*** lihi has quit IRC | 14:34 | |
*** irenab has joined #openstack-kuryr | 14:35 | |
*** oanson has joined #openstack-kuryr | 14:35 | |
*** irenab has quit IRC | 14:36 | |
*** oanson has quit IRC | 14:36 | |
*** oanson has joined #openstack-kuryr | 14:36 | |
*** irenab has joined #openstack-kuryr | 14:37 | |
*** oanson has quit IRC | 14:38 | |
*** irenab has quit IRC | 14:38 | |
*** oanson has joined #openstack-kuryr | 14:39 | |
*** lihi has joined #openstack-kuryr | 14:40 | |
*** yboaron has quit IRC | 14:41 | |
*** oanson has quit IRC | 14:42 | |
*** lihi has quit IRC | 14:42 | |
*** irenab has joined #openstack-kuryr | 14:42 | |
*** oanson has joined #openstack-kuryr | 14:43 | |
*** lihi has joined #openstack-kuryr | 14:44 | |
*** irenab has quit IRC | 14:52 | |
*** lihi has quit IRC | 14:52 | |
*** oanson has quit IRC | 14:52 | |
*** irenab has joined #openstack-kuryr | 14:54 | |
*** oanson has joined #openstack-kuryr | 14:56 | |
*** lihi has joined #openstack-kuryr | 14:58 | |
*** vikasc has quit IRC | 15:03 | |
*** maysamacedos has joined #openstack-kuryr | 15:11 | |
*** gcheresh has quit IRC | 15:14 | |
*** leyal has joined #openstack-kuryr | 15:51 | |
*** kiennt26 has joined #openstack-kuryr | 15:56 | |
*** kiennt26 has quit IRC | 16:11 | |
*** yboaron has joined #openstack-kuryr | 16:15 | |
*** maysamacedos has quit IRC | 16:21 | |
*** maysamacedos has joined #openstack-kuryr | 16:22 | |
*** gcheresh has joined #openstack-kuryr | 16:29 | |
*** mrostecki_ has joined #openstack-kuryr | 16:41 | |
*** mrostecki has quit IRC | 16:41 | |
openstackgerrit | Eyal Leshem proposed openstack/kuryr-kubernetes master: Kubernetes Network Policy support Spec https://review.openstack.org/519239 | 16:44 |
openstackgerrit | Eyal Leshem proposed openstack/kuryr-kubernetes master: Translate k8s policy to SG https://review.openstack.org/526916 | 16:44 |
openstackgerrit | Eyal Leshem proposed openstack/kuryr-kubernetes master: [WIP] Create network policy handler and driver https://review.openstack.org/530655 | 16:44 |
*** mrostecki_ has quit IRC | 16:56 | |
*** mrostecki_ has joined #openstack-kuryr | 16:56 | |
*** mrostecki_ has quit IRC | 17:27 | |
*** mrostecki_ has joined #openstack-kuryr | 17:33 | |
*** gcheresh has quit IRC | 17:42 | |
openstackgerrit | Maysa de Macedo Souza proposed openstack/kuryr-kubernetes master: [WIP] Add readiness checks for Kuryr Controller https://review.openstack.org/529335 | 17:57 |
*** maysamacedos has quit IRC | 18:03 | |
*** maysamacedos has joined #openstack-kuryr | 18:10 | |
*** maysamacedos has quit IRC | 18:14 | |
*** gcheresh has joined #openstack-kuryr | 18:29 | |
*** gcheresh has quit IRC | 18:38 | |
*** mrostecki_ has quit IRC | 18:42 | |
*** mrostecki__ has joined #openstack-kuryr | 18:42 | |
*** aojea has joined #openstack-kuryr | 18:45 | |
*** aojea_ has joined #openstack-kuryr | 18:50 | |
*** aojea has quit IRC | 18:53 | |
*** aojea has joined #openstack-kuryr | 18:55 | |
*** aojea_ has quit IRC | 18:58 | |
*** aojea_ has joined #openstack-kuryr | 19:00 | |
*** aojea has quit IRC | 19:03 | |
*** aojea has joined #openstack-kuryr | 19:05 | |
*** aojea_ has quit IRC | 19:08 | |
*** aojea_ has joined #openstack-kuryr | 19:11 | |
*** aojea has quit IRC | 19:13 | |
*** aojea has joined #openstack-kuryr | 19:15 | |
*** aojea_ has quit IRC | 19:19 | |
*** aojea_ has joined #openstack-kuryr | 19:20 | |
*** aojea has quit IRC | 19:23 | |
*** aojea has joined #openstack-kuryr | 19:26 | |
*** aojea_ has quit IRC | 19:29 | |
*** aojea_ has joined #openstack-kuryr | 19:30 | |
*** aojea has quit IRC | 19:33 | |
*** aojea has joined #openstack-kuryr | 19:38 | |
*** aojea_ has quit IRC | 19:39 | |
*** aojea_ has joined #openstack-kuryr | 19:44 | |
*** aojea has quit IRC | 19:47 | |
*** aojea has joined #openstack-kuryr | 19:49 | |
*** aojea_ has quit IRC | 19:52 | |
*** aojea_ has joined #openstack-kuryr | 19:55 | |
*** aojea has quit IRC | 19:58 | |
*** aojea has joined #openstack-kuryr | 19:59 | |
*** aojea_ has quit IRC | 20:03 | |
*** aojea has quit IRC | 20:06 | |
*** aojea has joined #openstack-kuryr | 20:24 | |
*** aojea_ has joined #openstack-kuryr | 20:30 | |
*** aojea has quit IRC | 20:33 | |
*** aojea has joined #openstack-kuryr | 20:36 | |
*** aojea_ has quit IRC | 20:38 | |
*** aojea_ has joined #openstack-kuryr | 20:40 | |
*** aojea has quit IRC | 20:44 | |
*** aojea has joined #openstack-kuryr | 20:45 | |
*** aojea_ has quit IRC | 20:48 | |
*** aojea_ has joined #openstack-kuryr | 20:50 | |
*** aojea has quit IRC | 20:53 | |
*** aojea has joined #openstack-kuryr | 20:55 | |
*** aojea_ has quit IRC | 20:58 | |
*** yboaron has quit IRC | 20:58 | |
*** aojea_ has joined #openstack-kuryr | 21:00 | |
*** aojea has quit IRC | 21:02 | |
*** aojea has joined #openstack-kuryr | 21:05 | |
*** aojea_ has quit IRC | 21:08 | |
*** aojea_ has joined #openstack-kuryr | 21:10 | |
*** aojea_ has quit IRC | 21:11 | |
*** aojea_ has joined #openstack-kuryr | 21:11 | |
*** aojea has quit IRC | 21:13 | |
*** aojea has joined #openstack-kuryr | 21:17 | |
*** aojea_ has quit IRC | 21:18 | |
*** aojea_ has joined #openstack-kuryr | 21:22 | |
*** aojea has quit IRC | 21:25 | |
*** aojea has joined #openstack-kuryr | 21:28 | |
*** aojea_ has quit IRC | 21:31 | |
*** aojea_ has joined #openstack-kuryr | 21:33 | |
*** aojea has quit IRC | 21:35 | |
*** aojea has joined #openstack-kuryr | 21:38 | |
*** aojea_ has quit IRC | 21:41 | |
*** aojea_ has joined #openstack-kuryr | 21:44 | |
*** aojea has quit IRC | 21:47 | |
*** aojea has joined #openstack-kuryr | 21:48 | |
*** aojea_ has quit IRC | 21:51 | |
*** aojea has quit IRC | 21:55 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!