使用 istio 将出站流量路由到网格内部

发布于 2025-01-09 18:10:19 字数 783 浏览 0 评论 0原文

在我的设置中,我没有启用 istio 网关。我正在将服务和应用程序迁移到 K8S。该应用程序与之通信的一些服务位于集群内,这些服务之前是通过 elb 访问的,更改端点需要停机,因此希望将发往公共端点的流量直接路由到集群内的服务端点。

我的设置如下。

---
apiVersion: networking.istio.io/v1alpha3
kind: ServiceEntry
metadata:
  name: my-site-se
  namespace: site
spec:
  hosts:
  - my.example.com
  location: MESH_EXTERNAL
  ports: 
  - name: mytraffic
    number: 9009
    protocol: HTTP
  resolution: NONE

我的 VirtualService 定义。

---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  name: my_site
  namespace: site
spec:
  hosts:
  - my.example.com
  http:
  - match:
    - port: 9009
    name: myapp-route    
    route:
    - destination:
        host: myapp.site.svc.cluster.local

此外,应用程序 pod 没有启用 istio。

In my setup I don't have istio gateway enabled. I am migrating services and application to K8S. Some of the services that this application talks to is within cluster which were previously reached via elb, changing the endpoint requires a downtime, hence wanted to route traffic that is destined to public endpoint directly to service endpoint within the cluster.

My setup is below.

---
apiVersion: networking.istio.io/v1alpha3
kind: ServiceEntry
metadata:
  name: my-site-se
  namespace: site
spec:
  hosts:
  - my.example.com
  location: MESH_EXTERNAL
  ports: 
  - name: mytraffic
    number: 9009
    protocol: HTTP
  resolution: NONE

My VirtualService definition.

---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
  name: my_site
  namespace: site
spec:
  hosts:
  - my.example.com
  http:
  - match:
    - port: 9009
    name: myapp-route    
    route:
    - destination:
        host: myapp.site.svc.cluster.local

Also application pod doesn't have istio enabled.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文