Istio サービス メッシュをセットアップしました。これまでのところ、私が望むようにうまく機能します。外部からは のようなポート番号でしかアクセスできませんhttp://www.mytest.com:41333
。でアクセスできるように転送80
するにはどうすればよいですか41333
http://www.mytest.com
これが私のゲートウェイです:
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: mytest-gateway
spec:
selector:
istio: ingressgateway # use istio default controller
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:
- "www.mytest.com"
何をすべきかわからない...