Hi guys.
How are you?
I’m newer user of Istio and I’ve a question about my Istio installation.
I’ve EKS Cluster with Fargate profile and a sample application that works using fargate. When I use LOAD BALANCER URL my sample application works correctly but I need to use istio ingress-gateway and when I applied .yaml file and used URL of istio-ingress-gateway my application doesn’t work.
Can you help me?
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: javappsample-gateway
namespace: devops
spec:
selector:
istio: ingressgateway # use Istio default gateway implementation
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:
- “"
—
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: javappsample
namespace: devops
spec:
hosts:
- "”
gateways:
- javappsample-gateway
http:
- match:
- uri:
prefix: /
route:
- destination:
port:
number: 8080
host: javappsample