Pods not able access

i have create few pods in diffrence namspaces. webserver is running nginx image. as below:

app-team1 web-client 1/1 Running 0 63m 10.1.22.1 worker2.dmi.com
fubar web-server-7947dc656-6hnq2 1/1 Running 0 62m 10.1.22.4 worker2.dmi.com
fubar web-server-7947dc656-f4r5b 1/1 Running 0 62m 10.1.22.3 worker2.dmi.com
fubar web-server-7947dc656-g6qdl 1/1 Running 0 62m 10.1.22.2 worker2.dmi.com
my-app web-client 1/1 Running 0 63m 10.1.111.1 worker1.dmi.com

but when i run a curl command from web-client in namespace my-app aren’t return any result:

kec web-client -n my-app – curl 10.1.22.4
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:–:-- 0:00:08 --:–:-- 0

but web-client in app-team1 is working fine:

[root@control ~]# kec web-client -n app-team1 – curl 10.1.22.4
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:–:-- --:–:-- --:–:-- 0

Welcome to nginx! body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; }

Welcome to nginx!

If you see this page, the nginx web server is successfully installed and working. Further configuration is required.

For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.

Thank you for using nginx.

100 612 100 612 0 0 597k 0 --:--:-- --:--:-- --:--:-- 597k [root@control ~]#

be default pods should able access in same cluster, but i dont why is not work as expected.