Andrei Kvapil

Results 629 comments of Andrei Kvapil

@aanm @joestringer all tests have passed 🎉

This patch makes it working in my setup with `hostLegacyRouting=true` execpt connectivity from pods to external net: ```diff diff --git a/bpf/bpf_lxc.c b/bpf/bpf_lxc.c index 5034120554..5b26d84b01 100644 --- a/bpf/bpf_lxc.c +++ b/bpf/bpf_lxc.c @@...

Oh, after three days of debugging I found that `ovn0` device has missing bpf program: now I added it to cilium-config: ``` devices: "en+ ovn0" ``` and everything statred working...

Closed in favor https://github.com/cilium/cilium/issues/32721

You should not use ```COPY ./test.log /workspace/opt/``` Use ```COPY ./test.log /opt/``` instead Also when you use ```WORKDIR /data/```, it will look for `/data/test.log` not `/test.log` and obliviously will not find...

Just use it the same way as in Docker. `/workspace` is a service directory for holding context while building, you should not mention it anywhere in your Dockerfile. > I...