t4lz

Results 50 comments of t4lz

@infiniteregrets how do you know IPv6 is not enabled on the pod? What about the IPv6 addresses in the `ifconfig`? ``` inet6 fe80::1cad:11ff:fe4a:c713 prefixlen 64 scopeid 0x20 ``` ``` inet6...

@aviramha the example is all local, and the request is to localhost, how do you know `[::1]` is disabled?

Right, IPv6 is not enabled for the service: ``` ipFamilies: - IPv4 ipFamilyPolicy: SingleStack ``` Do you think the agent should check that? Is the deployed application listening on IPv6...

I think I've managed to reproduce something similar: OS: ``` Ubuntu 22.04.1 LTS ``` Command: ``` ../target/debug/mirrord exec -c -p py-serv-deployment-ff89b5974-znz57 ../tests/go-e2e/go-e2e ``` While the process was running I made...

https://github.com/metalbear-co/mirrord/actions/runs/3039714756/jobs/4895026468 @aviramha seems related.

More `pc` related Go crashes with a stack dump: https://github.com/metalbear-co/mirrord/actions/runs/3225436965/jobs/5277792764#step:18:103 https://github.com/metalbear-co/mirrord/actions/runs/3225569148/jobs/5278144204#step:38:106 https://github.com/metalbear-co/mirrord/actions/runs/3225672404/jobs/5278304668#step:15:106 https://github.com/metalbear-co/mirrord/actions/runs/3225796801/jobs/5278582331#step:17:106 Once this this issue is resolved, the http mirroring layer integration test should be enabled also for...

Not a bug: The `productpage` service is searching the `reviews` service by only its service name, [which is only possible from within the same namespace](https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/#namespaces-and-dns). `productpage.py` allows specifying the hostnames...

Ok, but just to make sure that's fine: If we do this change, users might use the `--agent-namespace` flag in expectation to then be able to use only service names...

Was this solved by https://github.com/metalbear-co/mirrord/pull/481?

Tested with the same istio example setup, using this command: ``` RUST_LOG=mirrord=debug MIRRORD_AGENT_IMAGE=test /Users/t4lz/Documents/projects/mirrord/target/debug/mirrord exec --agent-namespace default --target-namespace istio -c -s='*' --no-fs --steal --target deployment/productpage-v1 python3 src/productpage/productpage.py 9080 ``` And...