I've currently deployed a small application which consists of multiple pods as well as a k8s service to connect to it. Due to some limitations of the service, it's not possible to inject the istio
sidecar.
At the moment, I've configured ingress via an istio
Gateway
+ VirtualService
, which works as expected. I would now like to add an AuthorizationPolicy
to restrict access to a certain set of IP ranges.
Is this possible? As I understand it, istio
handles authentication in the sidecar proxy, so I'm wondering whether there's another way to do this.