注入istio后的python请求404

问题描述 投票:0回答:2

我从rancher目录应用程序设置istio,

在启用istio并重新部署工作负载的set namespace之后,

请求google内容容器获取404错误。

这是使用python3的容器内的代码示例。


In [1]: import requests

In [2]: requests.get('http://google.com')

Out[2]:<Response [404]>

注入istio请求外部主机的最佳做法是什么?

kubernetes istio rancher
2个回答
3
投票

来自istio document的报价:

快速提醒:默认情况下,启用Istio的应用程序无法访问群集外的URL。要启用此类访问,必须定义外部服务的服务条目,或者,必须配置对外部服务的直接访问。


0
投票

使用this文档为google.com添加服务条目和虚拟服务

© www.soinside.com 2019 - 2024. All rights reserved.