Use k8s ingress instead of istio ingress gateway

Hi here, probably asked before, but, is it possible to tell istio gateway to use the k8s ingress instead of the istio ingress gateway?

I was able to use a K8S ingress, what I did was modify the selector in this way:

apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: mygateway
spec:
selector:
app: <put_here_your_ingress_k8s_name>
servers:

vs:

selector:
istio: ingressgateway # use istio default ingress gateway

that is the example of the official documentation.

It works for port 80/tcp so I assume it works for 443 as well.

Nm I was using the k8s ingress this whole time. The above statement is wrong. I don’t think this is currently a possibility. I am looking into create multiple istio ingresss gateways instead.