如果 avirtualservice
A
在namespace
A
using中定义networking.istio.io
,它如何使用gateway
B
在另一个命名空间中定义的a namespace
B
?
谢谢
如果 avirtualservice
A
在namespace
A
using中定义networking.istio.io
,它如何使用gateway
B
在另一个命名空间中定义的a namespace
B
?
谢谢
如果它与虚拟服务不在同一个命名空间中,则必须在虚拟服务中指定
检查spec.gateways
部分
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: bookinfo-Mongo
namespace: bookinfo-namespace
spec:
gateways:
- some-config-namespace/my-gateway # can omit the namespace if gateway is in same
namespace as virtual service.
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: my-gateway
namespace: some-config-namespace
有相关的 istio 文档。