On kubernetes cluster first interface ip is for data management network and second interface is for scaleio storage network, whenever i create a pod or any deployment i am getting image pullback issue i am using calico network , how to resolve

on kubernetes cluster first interface ip is for data management network and second interface is for scaleio storage network, whenever i create a pod or any deployment i am getting image pullback issue i am using calico network , how to to tell calico to bypass scaleio network while creating deployment

By default Kubernetes will bind to all interfaces when it runs. You must tell the control plane components which interfaces to use with command line arguments

These have names like --address, --bind-address or --advertise-address

Check each component here

In theory, once all the components are bound to the correct interfaces, the CNI’s virtual networks should be routed though those physical interfaces.

You may also need to add configuration to your container driver (e.g. containerd) as that’s what actually does the image pull.