*** sdake has joined #openstack-kolla | 00:02 | |
*** unicell has quit IRC | 00:03 | |
*** unicell has joined #openstack-kolla | 00:03 | |
*** sdake_ has joined #openstack-kolla | 00:04 | |
sdake_ | hey peeps | 00:06 |
---|---|---|
*** sdake has quit IRC | 00:07 | |
kfox1111 | hey | 00:09 |
*** chas_ has joined #openstack-kolla | 00:10 | |
*** chas_ has quit IRC | 00:15 | |
*** chas_ has joined #openstack-kolla | 00:16 | |
jascott1 | o/ | 00:20 |
*** chas_ has quit IRC | 00:21 | |
kfox1111 | hi | 00:21 |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP helm https://review.openstack.org/396296 | 00:22 |
sdake_ | kfox1111 havey ou looked at the sapcc code | 00:39 |
*** dcwangmit01 has quit IRC | 00:39 | |
kfox1111 | sdake_: just a little bit. | 00:40 |
kfox1111 | its pretty opinionated from what I saw. | 00:40 |
sdake_ | wondering where it deltas from what you have in mind with kolla-kubernetes | 00:40 |
sdake_ | i picked upon that part | 00:40 |
sdake_ | i see its also using helm | 00:41 |
kfox1111 | yeah. and opinionated there too. | 00:41 |
sdake_ | kolla-kubernetes not opinionated? | 00:41 |
kfox1111 | if your hardware/environment looks exactly like there's, it will work well. otherwise, really badly. | 00:41 |
kfox1111 | no. been trying very very hard to keep it unopinionated. | 00:41 |
kfox1111 | as I have some very bizar environments. :) | 00:42 |
sdake_ | coo, can you explain how | 00:42 |
kfox1111 | for example, we're running tenant networks over vxlans over ip over ib in some of my clouds. :) | 00:42 |
sdake_ | i understand requirement for unopnionated | 00:42 |
kfox1111 | we're also running split controllers with multiple rabbits/mariadb's | 00:42 |
kfox1111 | with their stuff, they assume helm vars are flexible enough to configure the whole system. | 00:43 |
kfox1111 | the whole, docker env vars vs openstack config conversation we had.... :) | 00:43 |
sdake_ | right | 00:43 |
sdake_ | ok, but how do you solve that in kolla-kubernetes ;) | 00:44 |
kfox1111 | they are using helm packages per service. so its kind of a single shot, stand up a whole service. which is nice, until you need finer grained access. | 00:44 |
kfox1111 | keep config / workflow / deployment / packaging as seperate as possible. | 00:44 |
kfox1111 | so don't put config maps in your helm packages. | 00:44 |
sdake_ | sapcc puts config maps in helm packages then? | 00:45 |
kfox1111 | yeah. | 00:46 |
sdake_ | and that is only delta? | 00:46 |
kfox1111 | then very slightly templates them with helm vars. | 00:46 |
kfox1111 | no. | 00:46 |
kfox1111 | we're better at reusing code so we dont write the same code over and over. | 00:46 |
sdake_ | well i dont want it to be a competition :) | 00:46 |
kfox1111 | so we can add features like new log capture container types (heka->something else) much easier | 00:46 |
sdake_ | I wan tto learn from waht they have | 00:46 |
sdake_ | thats the reason they published their code - so we can use it as a reference for their ideas | 00:47 |
kfox1111 | and I've been doing fine grained packages rather then corse ones like they are. | 00:47 |
sdake_ | kfox1111 mind showing me an example? | 00:48 |
kfox1111 | I do need to inspect their stuff further. but we're feature wise, already sitting very preetty from what I've seen. | 00:48 |
kfox1111 | sdake_: an example of what? | 00:48 |
sdake_ | the fine grained packages vs course grained | 00:48 |
kfox1111 | sure. sec | 00:48 |
sdake_ | i want to be able to explain what we learned might be better | 00:49 |
sdake_ | thats part of how we exchange information :) | 00:49 |
kfox1111 | so, like look at: https://github.com/sapcc/openstack-helm/tree/master/neutron | 00:49 |
sdake_ | k | 00:50 |
kfox1111 | anything in the templates dir that isn't prefixed with a _ | 00:50 |
kfox1111 | will all be spawned at the same time when the package is launched. | 00:50 |
kfox1111 | so, helm install neutron..... "everything" | 00:50 |
kfox1111 | then look at what I"m trying to do here: | 00:51 |
kfox1111 | https://review.openstack.org/#/c/396296/12 | 00:51 |
kfox1111 | I'm playing around with having a package for a service, like neutron, but make it fine grained: | 00:51 |
kfox1111 | helm install kolla/openstack-neutron --version 2.0.2 --set resource=l3-agent-daemonset,type=network | 00:52 |
kfox1111 | launches a new instance of the l3-agent for the network use case | 00:52 |
kfox1111 | and I was able to continue to follow our pattern of code reuse by doing this: | 00:53 |
kfox1111 | https://review.openstack.org/#/c/396296/12/helm/openstack-kolla-common/templates/_common_lib.yaml | 00:53 |
kfox1111 | makeing a openstack-kolla-common package and putting our shared code in it, then including it in the l3-agent template like we've been doing in the jinja2 version. | 00:53 |
kfox1111 | the helm dependency machinism actually makes that work pretty well. | 00:54 |
sdake_ | how do you get config into that neutron helm launch? | 00:54 |
kfox1111 | thats outside of helm. same way as before for now. | 00:54 |
kfox1111 | longer term, the operator will assist in that. | 00:54 |
sdake_ | right | 00:54 |
kfox1111 | so the configmap name will be a helm arg, | 00:55 |
kfox1111 | and default to something sane. | 00:55 |
kfox1111 | then you can overrid e the configmap if you want. | 00:55 |
sdake_ | so really the delta is in being ableto override configmaps? | 00:55 |
kfox1111 | I listed like 3 tings above. thats one thing. | 00:55 |
sdake_ | ok, the other 2 are what :) | 00:56 |
sdake_ | broken down into indivudal microservices is second thing? | 00:56 |
kfox1111 | 1. fine grained building blocks/packaging capabilities. 2. unopinionated config (overridable config for everything). 3. code sharing between templates for much easier maintenence/feature management | 00:56 |
kfox1111 | those are just the first 3 things I found by quickly looking. there may be more. | 00:57 |
kfox1111 | their aproach is fine if your buying a cloud system just like theirs to deploy something on and never want to deviate from it. we're already much more flexible/maintainable though I think. | 00:58 |
*** sgordon has quit IRC | 01:01 | |
*** sgordon has joined #openstack-kolla | 01:02 | |
sdake_ | kfox1111 is there nothign to be learned from the sapcc repo? | 01:02 |
kfox1111 | I'm sure there will be some good ideas to borrow. | 01:03 |
kfox1111 | it needs further study. | 01:03 |
sdake_ | cool - recommend the study - again the is reason they upstream their code - they want to get on a kolla-kubneretes upstream or atleast have a shared world view on what the implementation should look like | 01:04 |
kfox1111 | yeah. | 01:04 |
sdake_ | to me #2 above is the key thing they are missing - but they may not care ;) | 01:05 |
kfox1111 | yeah. likely. | 01:05 |
sdake_ | #1 may be tolerable to them | 01:05 |
kfox1111 | or they wont care for a while. | 01:05 |
sdake_ | and #3 is an implementation detail imo | 01:05 |
kfox1111 | yeah, and implementation detail though that maeans you need fewer developers. | 01:06 |
kfox1111 | so long term, that can pay off big | 01:06 |
sdake_ | not saying its not valuable | 01:06 |
kfox1111 | yeah. I understand. | 01:06 |
kfox1111 | I think I'm pretty close to having a helm package launched service woven into the gate. | 01:12 |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP: External openvswitch https://review.openstack.org/396812 | 01:14 |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP helm https://review.openstack.org/396296 | 01:15 |
*** amaged__ has quit IRC | 01:16 | |
*** amaged__ has joined #openstack-kolla | 01:16 | |
*** neilus has quit IRC | 01:17 | |
*** neilus has joined #openstack-kolla | 01:18 | |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP: External openvswitch https://review.openstack.org/396812 | 01:29 |
*** g3ek has quit IRC | 01:32 | |
*** haplo37 has quit IRC | 01:33 | |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP: External openvswitch https://review.openstack.org/396812 | 01:33 |
*** adrian_otto has joined #openstack-kolla | 01:34 | |
sdake_ | re the curdini | 01:35 |
sdake_ | whats that part about? | 01:35 |
sdake_ | kfox1111 ^^ | 01:35 |
*** adrian_otto has quit IRC | 01:36 | |
kfox1111 | which part? | 01:36 |
sdake_ | crudini --set /srv/pod-main-config/l3_agent.ini DEFAULT agent_mode dvr_snat; | 01:36 |
kfox1111 | based on what type of daemonset its launching, it tweaks the dvr settings. | 01:37 |
sdake_ | that seems like that would make the system not overrideable? | 01:37 |
kfox1111 | dvr enabled nodes need to be dvr_snat on network nodes, or dvr on compute nodes. | 01:37 |
sdake_ | i see, so that is like "default settings" for the config | 01:38 |
sdake_ | i just cringe when i see crudini ;-) | 01:38 |
kfox1111 | once we get the helm stuff in place, multiple instances should be smoother. | 01:38 |
*** g3ek has joined #openstack-kolla | 01:39 | |
kfox1111 | the -network/-compute stuff was a little less then ideal due to kolla-kubernetes constraints. | 01:39 |
kfox1111 | helm doesn't have the same constraints there. | 01:39 |
*** haplo37 has joined #openstack-kolla | 01:39 | |
kfox1111 | so far, I'm trying to port what we have. then can make it take advantage of more helm features. | 01:39 |
sdake_ | with "more helm features" does that mean removal of crudini? | 01:40 |
kfox1111 | easier to test that way against the working gate. | 01:40 |
kfox1111 | maybe/maybe not. | 01:40 |
kfox1111 | crudini has its advantages. | 01:40 |
Pavo | I feel ya sdake_ I hate crudini also | 01:40 |
kfox1111 | for example, the ip addrress must be put in the config in some places. | 01:40 |
Pavo | would rather write my own python script with ConfigParser than use crudini | 01:41 |
kfox1111 | crudini's way less evil looking then sed in that case. | 01:41 |
kfox1111 | why? | 01:41 |
Pavo | bad experiences with crudini | 01:41 |
sdake_ | i was just thinking genconfig would generate all this config ;) | 01:41 |
kfox1111 | I've thorwn a lot of crazy looking ini files at it and it hasn't munged one yet. | 01:41 |
kfox1111 | badly written sed on the other hand.... | 01:41 |
kfox1111 | gencofnig can't. | 01:41 |
kfox1111 | some config must be done at instantiation time, inside the container. | 01:41 |
kfox1111 | genconfig gets us 99.99% of the way there. | 01:42 |
sdake_ | i understand the ip address thing | 01:42 |
sdake_ | because the ip address inside kube changes on start | 01:42 |
kfox1111 | yeah. | 01:42 |
sdake_ | don't understand the dvr case | 01:42 |
kfox1111 | it could be split back out and done in genconfig. | 01:43 |
kfox1111 | it was just expedient to implement it this way for now as getting changes in genconfig was not quick to get something running. | 01:43 |
sdake_ | not criticising want to understand :) | 01:44 |
kfox1111 | having gencofnig spit out a l3-agent-compute and l3-agent-network would work too. | 01:44 |
sdake_ | i take fast paths too and optimize later | 01:44 |
kfox1111 | yeah. i take no offence. | 01:44 |
kfox1111 | long term, I think its just the ip address stuff that needs overrides at runtime. | 01:45 |
kfox1111 | oh. and interface names. | 01:45 |
sdake_ | i would think ip address could be passed as an env variable | 01:45 |
kfox1111 | eth0/ enp4s0d0, etc. | 01:45 |
sdake_ | and set is the container startup scripts | 01:45 |
kfox1111 | no way to konw the ip to pass it. | 01:45 |
*** inc0 has quit IRC | 01:46 | |
kfox1111 | best pattern so far is to probe it in the init container and tweak the config before the real container sees it. | 01:46 |
sdake_ | i mean have kubernetes itself pas the ip adress | 01:46 |
kfox1111 | kube doesn't care or know in a lot of cases. | 01:46 |
kfox1111 | for a daemonset running net=host, | 01:46 |
sdake_ | kubernetes surely knows the ip addresses of the compute nodes ;) | 01:46 |
kfox1111 | there are too many ip addresses/interfaces for k8s to handle. | 01:46 |
kfox1111 | its our logic that says, I should look up the ip address on the "tunnel_interface", however we defined that. | 01:47 |
kfox1111 | gotta head out in a few | 01:47 |
sdake_ | cool ttyl | 01:47 |
sdake_ | thanks for the time | 01:47 |
kfox1111 | np. :) | 01:48 |
kfox1111 | release name "neutron-l3-agent-network" exceeds max length of 14 ugg... :/ | 01:48 |
kfox1111 | l8r | 01:48 |
Pavo | just name it neutron-l3-agent-net | 01:48 |
kfox1111 | kind of weak though. we've named our things very consistently so far, and that restriction breaks that. :/ | 01:49 |
kfox1111 | nameing the pod after the binary makes it soo much easier to understand. without having to map around things a lot. :/ | 01:50 |
kfox1111 | oh well. we'll figure something out. | 01:50 |
kfox1111 | l8r | 01:50 |
Pavo | l8r | 01:50 |
kfox1111 | rrr. even neutron-l3a-net is too long.... | 01:51 |
Pavo | yeah thats 15 chars | 01:51 |
Pavo | lol | 01:51 |
kfox1111 | 14 is really really short. :/ | 01:51 |
Pavo | is that a k8s limit? | 01:52 |
kfox1111 | no. helm. | 01:52 |
Pavo | ah | 01:52 |
*** sdake_ has quit IRC | 01:58 | |
*** chas_ has joined #openstack-kolla | 02:18 | |
*** sdake has joined #openstack-kolla | 02:21 | |
*** chas_ has quit IRC | 02:22 | |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP helm https://review.openstack.org/396296 | 02:25 |
*** eaguilar has quit IRC | 02:36 | |
*** tyrola_ has quit IRC | 02:36 | |
*** eaguilar has joined #openstack-kolla | 02:36 | |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP: External openvswitch https://review.openstack.org/396812 | 02:37 |
*** sdake_ has joined #openstack-kolla | 02:58 | |
*** sdake has quit IRC | 02:59 | |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP helm https://review.openstack.org/396296 | 03:01 |
*** fragatin_ has joined #openstack-kolla | 03:07 | |
*** fragatina has quit IRC | 03:10 | |
*** sdake_ has quit IRC | 03:14 | |
*** chas_ has joined #openstack-kolla | 03:18 | |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP: External openvswitch https://review.openstack.org/396812 | 03:21 |
*** tovin07 has quit IRC | 03:21 | |
*** hieulq has quit IRC | 03:22 | |
*** fragatina has joined #openstack-kolla | 03:22 | |
*** eaguilar has quit IRC | 03:23 | |
*** chas_ has quit IRC | 03:23 | |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: WIP helm https://review.openstack.org/396296 | 03:24 |
*** fragatina has quit IRC | 03:29 | |
*** tovin07 has joined #openstack-kolla | 03:36 | |
*** hieulq has joined #openstack-kolla | 03:36 | |
*** jroll has quit IRC | 03:38 | |
*** jroll has joined #openstack-kolla | 03:48 | |
*** zhubingbing has joined #openstack-kolla | 04:17 | |
*** chas_ has joined #openstack-kolla | 04:19 | |
*** chas_ has quit IRC | 04:24 | |
*** zhubingbing has quit IRC | 04:29 | |
*** zhubingbing has joined #openstack-kolla | 04:30 | |
*** zhubingbing has quit IRC | 04:33 | |
*** adrian_otto has joined #openstack-kolla | 04:42 | |
*** zhubingbing has joined #openstack-kolla | 04:45 | |
*** zhubingbing has quit IRC | 04:50 | |
*** zhubingbing has joined #openstack-kolla | 04:50 | |
*** zhubingbing has quit IRC | 04:52 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla: Add tarballs-base parameter for kolla-build https://review.openstack.org/396830 | 04:55 |
*** Administrator_ has quit IRC | 05:04 | |
*** Administrator_ has joined #openstack-kolla | 05:05 | |
*** tonanhngo_ has quit IRC | 05:05 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla: Load murano dashbaord dynamic https://review.openstack.org/395957 | 05:05 |
*** tonanhngo has joined #openstack-kolla | 05:14 | |
*** tonanhngo has quit IRC | 05:16 | |
*** zhubingbing_ has joined #openstack-kolla | 05:18 | |
*** fragatina has joined #openstack-kolla | 05:26 | |
*** zhubingbing_ has quit IRC | 05:28 | |
*** zhubingbing has joined #openstack-kolla | 05:29 | |
*** fragatina has quit IRC | 05:31 | |
*** tonanhngo has joined #openstack-kolla | 05:35 | |
*** zhubingbing has quit IRC | 05:35 | |
*** tonanhngo has quit IRC | 05:36 | |
*** adrian_otto1 has joined #openstack-kolla | 05:44 | |
*** adrian_otto has quit IRC | 05:48 | |
*** chas_ has joined #openstack-kolla | 06:21 | |
*** chas_ has quit IRC | 06:25 | |
*** zhubingbing has joined #openstack-kolla | 06:38 | |
*** tonanhngo has joined #openstack-kolla | 06:44 | |
*** tonanhngo has quit IRC | 06:46 | |
*** msimonin has joined #openstack-kolla | 06:57 | |
*** tonanhngo has joined #openstack-kolla | 07:05 | |
*** tonanhngo has quit IRC | 07:07 | |
*** zhubingbing has quit IRC | 07:23 | |
*** tonanhngo has joined #openstack-kolla | 07:24 | |
*** tonanhngo has quit IRC | 07:25 | |
*** fragatina has joined #openstack-kolla | 07:28 | |
*** fragatina has quit IRC | 07:33 | |
*** tonanhngo has joined #openstack-kolla | 07:43 | |
*** tonanhngo has quit IRC | 07:44 | |
*** tonanhngo has joined #openstack-kolla | 08:01 | |
*** tonanhngo has quit IRC | 08:03 | |
*** tonanhngo has joined #openstack-kolla | 08:07 | |
*** Kdecherf has quit IRC | 08:18 | |
*** Kdecherf has joined #openstack-kolla | 08:23 | |
*** adrian_otto1 has quit IRC | 08:48 | |
*** fragatina has joined #openstack-kolla | 09:04 | |
*** fragatina has quit IRC | 09:10 | |
*** neilus has quit IRC | 09:11 | |
*** neilus has joined #openstack-kolla | 09:35 | |
*** Jeffrey4l has quit IRC | 09:53 | |
*** unicell1 has joined #openstack-kolla | 10:02 | |
*** unicell has quit IRC | 10:02 | |
*** msimonin has quit IRC | 10:08 | |
*** sdake has joined #openstack-kolla | 10:15 | |
*** sdake_ has joined #openstack-kolla | 10:17 | |
*** sdake has quit IRC | 10:19 | |
*** neilus has quit IRC | 10:41 | |
*** stvnoyes has quit IRC | 10:41 | |
*** fragatina has joined #openstack-kolla | 10:42 | |
*** stvnoyes has joined #openstack-kolla | 10:42 | |
*** haplo37 has quit IRC | 10:43 | |
*** g3ek has quit IRC | 10:45 | |
*** neilus has joined #openstack-kolla | 10:46 | |
*** fragatina has quit IRC | 10:47 | |
*** neilus_ has joined #openstack-kolla | 10:49 | |
*** haplo37 has joined #openstack-kolla | 10:50 | |
*** g3ek has joined #openstack-kolla | 10:51 | |
*** neilus has quit IRC | 10:51 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla: Add tarballs-base parameter for kolla-build https://review.openstack.org/396830 | 10:53 |
*** neilus_ has quit IRC | 10:53 | |
*** neilus has joined #openstack-kolla | 10:57 | |
*** neilus has quit IRC | 11:02 | |
*** neilus has joined #openstack-kolla | 11:02 | |
*** tonanhngo has quit IRC | 11:07 | |
*** tonanhngo has joined #openstack-kolla | 11:15 | |
*** tonanhngo has quit IRC | 11:18 | |
*** msimonin has joined #openstack-kolla | 11:19 | |
*** sdake_ has quit IRC | 11:22 | |
*** sdake has joined #openstack-kolla | 11:27 | |
*** neilus has quit IRC | 11:31 | |
*** neilus has joined #openstack-kolla | 11:41 | |
*** neilus_ has joined #openstack-kolla | 11:42 | |
*** zhurong has joined #openstack-kolla | 11:42 | |
*** oxkipo has joined #openstack-kolla | 11:43 | |
oxkipo | Hi. I cannot see VPN tab in latest kolla install. Please may someone help me? Also I have enabled neutron_vpnaas | 11:45 |
*** neilus has quit IRC | 11:45 | |
*** neilus_ has quit IRC | 11:47 | |
*** Jeffrey4l has joined #openstack-kolla | 11:51 | |
*** jmccarthy has quit IRC | 12:04 | |
*** jmccarthy has joined #openstack-kolla | 12:06 | |
*** sdake_ has joined #openstack-kolla | 12:11 | |
*** msimonin has quit IRC | 12:12 | |
*** sdake has quit IRC | 12:14 | |
*** alteriks has quit IRC | 12:18 | |
*** chas_ has joined #openstack-kolla | 12:20 | |
*** alteriks has joined #openstack-kolla | 12:20 | |
*** chas_ has quit IRC | 12:24 | |
*** matrohon has joined #openstack-kolla | 12:25 | |
*** srwilkers has joined #openstack-kolla | 12:29 | |
*** f13o has quit IRC | 12:29 | |
*** tonanhngo has joined #openstack-kolla | 12:35 | |
*** tonanhngo has quit IRC | 12:37 | |
*** neilus has joined #openstack-kolla | 12:39 | |
*** msimonin has joined #openstack-kolla | 13:02 | |
*** msimonin has quit IRC | 13:03 | |
*** msimonin has joined #openstack-kolla | 13:11 | |
*** fragatina has joined #openstack-kolla | 13:11 | |
*** fragatina has quit IRC | 13:16 | |
*** chas_ has joined #openstack-kolla | 13:21 | |
*** zhurong has quit IRC | 13:22 | |
*** chas_ has quit IRC | 13:25 | |
*** Jeffrey4l has quit IRC | 13:30 | |
*** eaguilar has joined #openstack-kolla | 13:44 | |
*** neilus has quit IRC | 13:45 | |
*** matrohon has quit IRC | 13:46 | |
*** duonghq has joined #openstack-kolla | 13:48 | |
*** neilus has joined #openstack-kolla | 13:51 | |
*** schwicht has joined #openstack-kolla | 13:53 | |
*** neilus_ has joined #openstack-kolla | 13:54 | |
*** neilus has quit IRC | 13:55 | |
*** neilus has joined #openstack-kolla | 13:55 | |
*** neilus__ has joined #openstack-kolla | 13:56 | |
*** neilus_ has quit IRC | 13:58 | |
*** neilus has quit IRC | 14:00 | |
*** neilus__ has quit IRC | 14:01 | |
*** eaguilar has quit IRC | 14:12 | |
*** chas_ has joined #openstack-kolla | 14:22 | |
openstackgerrit | Jeremy Liu proposed openstack/kolla: Extract kolla exceptions into a single exception.py file https://review.openstack.org/396568 | 14:23 |
*** chas_ has quit IRC | 14:27 | |
*** fragatina has joined #openstack-kolla | 14:28 | |
openstackgerrit | Jeremy Liu proposed openstack/kolla: Add bindep environment to tox https://review.openstack.org/396856 | 14:31 |
*** fragatina has quit IRC | 14:33 | |
openstackgerrit | Jeremy Liu proposed openstack/kolla: Add bindep environment to tox https://review.openstack.org/396856 | 14:33 |
*** tonanhngo has joined #openstack-kolla | 14:33 | |
*** duonghq has quit IRC | 14:36 | |
*** duonghq has joined #openstack-kolla | 14:52 | |
openstackgerrit | Duong Ha-Quang proposed openstack/kolla: Fix placement of policy.json https://review.openstack.org/394260 | 14:55 |
*** dave-mccowan has joined #openstack-kolla | 15:02 | |
*** tonanhngo has joined #openstack-kolla | 15:06 | |
*** tonanhngo has quit IRC | 15:09 | |
openstackgerrit | Duong Ha-Quang proposed openstack/kolla: Fix placement of policy.json https://review.openstack.org/394260 | 15:09 |
*** dave-mccowan has quit IRC | 15:16 | |
*** zhubingbing_ has joined #openstack-kolla | 15:18 | |
*** neilus has joined #openstack-kolla | 15:19 | |
*** zhubingbing_ has quit IRC | 15:20 | |
*** chas_ has joined #openstack-kolla | 15:23 | |
*** pprokop has quit IRC | 15:23 | |
*** msimonin has quit IRC | 15:24 | |
*** pprokop has joined #openstack-kolla | 15:25 | |
*** tonanhngo has joined #openstack-kolla | 15:25 | |
*** tonanhngo has quit IRC | 15:25 | |
*** msimonin has joined #openstack-kolla | 15:26 | |
*** Jeffrey4l has joined #openstack-kolla | 15:27 | |
*** chas_ has quit IRC | 15:27 | |
*** haplo37 has quit IRC | 15:27 | |
openstackgerrit | Jeremy Liu proposed openstack/kolla: Extract kolla exceptions into a single exception.py file https://review.openstack.org/396568 | 15:28 |
*** g3ek has quit IRC | 15:28 | |
*** g3ek has joined #openstack-kolla | 15:29 | |
*** fragatina has joined #openstack-kolla | 15:29 | |
*** haplo37 has joined #openstack-kolla | 15:29 | |
*** Jeffrey4l has quit IRC | 15:32 | |
*** pprokop has quit IRC | 15:33 | |
*** pprokop has joined #openstack-kolla | 15:33 | |
*** fragatina has quit IRC | 15:34 | |
*** adrian_otto has joined #openstack-kolla | 15:35 | |
*** oxkipo has quit IRC | 15:36 | |
*** adrian_otto has quit IRC | 15:40 | |
*** Jeffrey4l has joined #openstack-kolla | 15:41 | |
*** neilus has quit IRC | 15:42 | |
*** adrian_otto has joined #openstack-kolla | 15:45 | |
*** adrian_otto has quit IRC | 15:45 | |
*** eaguilar has joined #openstack-kolla | 15:54 | |
*** fragatina has joined #openstack-kolla | 15:55 | |
*** neilus has joined #openstack-kolla | 15:58 | |
*** eaguilar has quit IRC | 15:58 | |
*** sdake has joined #openstack-kolla | 16:00 | |
*** fragatina has quit IRC | 16:01 | |
*** neilus has quit IRC | 16:02 | |
*** sdake_ has quit IRC | 16:04 | |
*** zhubingbing_ has joined #openstack-kolla | 16:13 | |
*** sdake has quit IRC | 16:14 | |
*** duonghq has quit IRC | 16:19 | |
*** msimonin has quit IRC | 16:23 | |
*** chas_ has joined #openstack-kolla | 16:24 | |
*** tonanhngo has joined #openstack-kolla | 16:25 | |
*** neilus has joined #openstack-kolla | 16:25 | |
*** tonanhngo has quit IRC | 16:25 | |
*** msimonin has joined #openstack-kolla | 16:27 | |
*** msimonin has quit IRC | 16:27 | |
*** chas_ has quit IRC | 16:28 | |
*** neilus has quit IRC | 16:35 | |
*** tonanhngo has joined #openstack-kolla | 16:44 | |
*** tonanhngo has quit IRC | 16:46 | |
*** bmace has quit IRC | 16:51 | |
*** bmace has joined #openstack-kolla | 16:51 | |
*** zhubingbing_ has quit IRC | 16:52 | |
*** bjolo_ has quit IRC | 16:54 | |
*** fragatina has joined #openstack-kolla | 17:24 | |
*** chas_ has joined #openstack-kolla | 17:24 | |
*** hogepodge has quit IRC | 17:25 | |
*** fragatina has quit IRC | 17:28 | |
*** chas_ has quit IRC | 17:29 | |
*** tonanhngo has joined #openstack-kolla | 17:32 | |
*** matrohon has joined #openstack-kolla | 17:37 | |
*** msimonin has joined #openstack-kolla | 17:56 | |
*** srwilkers has quit IRC | 18:02 | |
*** pbourke has quit IRC | 18:04 | |
*** neilus has joined #openstack-kolla | 18:06 | |
*** pbourke has joined #openstack-kolla | 18:06 | |
openstackgerrit | Kevin Fox proposed openstack/kolla-kubernetes: External openvswitch https://review.openstack.org/396812 | 18:15 |
*** matrohon has quit IRC | 18:18 | |
*** chas_ has joined #openstack-kolla | 18:25 | |
*** eaguilar has joined #openstack-kolla | 18:26 | |
*** chas_ has quit IRC | 18:30 | |
*** eaguilar has quit IRC | 18:31 | |
*** bjolo_ has joined #openstack-kolla | 18:50 | |
*** neilus has quit IRC | 18:50 | |
*** neilus has joined #openstack-kolla | 18:51 | |
*** sdake_ has joined #openstack-kolla | 18:59 | |
*** neilus has quit IRC | 19:10 | |
*** fragatina has joined #openstack-kolla | 19:25 | |
*** chas_ has joined #openstack-kolla | 19:26 | |
*** f13o has joined #openstack-kolla | 19:30 | |
*** chas_ has quit IRC | 19:30 | |
*** fragatina has quit IRC | 19:31 | |
*** hogepodge has joined #openstack-kolla | 19:43 | |
*** msimonin has quit IRC | 19:51 | |
*** fragatina has joined #openstack-kolla | 19:52 | |
*** fragatina has quit IRC | 19:56 | |
*** neilus has joined #openstack-kolla | 19:58 | |
*** sdake_ has quit IRC | 19:59 | |
*** eaguilar has joined #openstack-kolla | 20:00 | |
*** eaguilar has quit IRC | 20:13 | |
*** msimonin has joined #openstack-kolla | 20:14 | |
*** eaguilar has joined #openstack-kolla | 20:14 | |
*** fragatina has joined #openstack-kolla | 20:16 | |
*** fragatina has quit IRC | 20:17 | |
*** fragatina has joined #openstack-kolla | 20:17 | |
*** eaguilar has quit IRC | 20:19 | |
*** msimonin has quit IRC | 20:21 | |
*** chas_ has joined #openstack-kolla | 20:27 | |
*** f13o has quit IRC | 20:29 | |
*** neilus has quit IRC | 20:33 | |
*** chas_ has quit IRC | 20:33 | |
*** srwilkers has joined #openstack-kolla | 20:35 | |
*** neilus has joined #openstack-kolla | 20:38 | |
*** f13o has joined #openstack-kolla | 20:38 | |
*** msimonin has joined #openstack-kolla | 20:39 | |
*** Pavo has quit IRC | 20:53 | |
*** Pavo has joined #openstack-kolla | 20:56 | |
*** chas_ has joined #openstack-kolla | 21:09 | |
*** tonanhngo has quit IRC | 21:11 | |
*** neilus has quit IRC | 21:21 | |
*** neilus has joined #openstack-kolla | 21:22 | |
*** tonanhngo has joined #openstack-kolla | 21:24 | |
*** bradjones has quit IRC | 21:24 | |
*** tonanhngo has quit IRC | 21:24 | |
*** bradjones has joined #openstack-kolla | 21:27 | |
*** bradjones has quit IRC | 21:27 | |
*** bradjones has joined #openstack-kolla | 21:27 | |
*** neilus has quit IRC | 21:27 | |
*** f13o has quit IRC | 21:34 | |
*** Jeffrey4l has quit IRC | 21:35 | |
*** neilus has joined #openstack-kolla | 21:35 | |
*** dave-mccowan has joined #openstack-kolla | 21:36 | |
*** neilus has quit IRC | 21:36 | |
*** neilus has joined #openstack-kolla | 21:37 | |
*** dave-mccowan has quit IRC | 21:39 | |
*** srwilkers has quit IRC | 21:40 | |
*** tonanhngo has joined #openstack-kolla | 21:49 | |
*** chas_ has quit IRC | 21:49 | |
*** chas_ has joined #openstack-kolla | 21:50 | |
*** tonanhngo has quit IRC | 21:50 | |
*** chas__ has joined #openstack-kolla | 21:54 | |
*** chas_ has quit IRC | 21:57 | |
*** chas_ has joined #openstack-kolla | 22:02 | |
*** oxkipo has joined #openstack-kolla | 22:03 | |
oxkipo | Hi please may someone help me why pci passthrough isnt working? http://paste.openstack.org/show/589022/ Here is the log. | 22:04 |
*** tonanhngo has joined #openstack-kolla | 22:06 | |
*** chas__ has quit IRC | 22:06 | |
*** tonanhngo has quit IRC | 22:06 | |
oxkipo | please may someone help me? | 22:08 |
*** chas_ has quit IRC | 22:20 | |
oxkipo | does someone know how to fix it? | 22:21 |
*** tonanhngo has joined #openstack-kolla | 22:25 | |
*** tonanhngo has quit IRC | 22:28 | |
*** tonanhngo has joined #openstack-kolla | 22:45 | |
*** msimonin has quit IRC | 22:46 | |
*** tonanhngo has quit IRC | 22:46 | |
*** msimonin has joined #openstack-kolla | 22:47 | |
*** msimonin has quit IRC | 22:47 | |
*** f13o has joined #openstack-kolla | 22:50 | |
*** msimonin has joined #openstack-kolla | 22:57 | |
*** Pavo has quit IRC | 23:01 | |
*** sdake has joined #openstack-kolla | 23:02 | |
*** alteriks has quit IRC | 23:05 | |
*** alteriks has joined #openstack-kolla | 23:07 | |
*** tonanhngo has joined #openstack-kolla | 23:08 | |
*** tonanhngo has quit IRC | 23:11 | |
*** Pavo has joined #openstack-kolla | 23:14 | |
*** oxkipo has quit IRC | 23:19 | |
*** Pavo has quit IRC | 23:19 | |
*** Pavo has joined #openstack-kolla | 23:19 | |
*** msimonin has quit IRC | 23:21 | |
*** Jeffrey4l has joined #openstack-kolla | 23:31 | |
*** Pavo has quit IRC | 23:43 | |
*** tonanhngo has joined #openstack-kolla | 23:46 | |
*** tonanhngo has quit IRC | 23:47 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!