宽松流量策略模式
OSM 中的宽松流量策略模式是绕过 SMI 流量访问策略执行的模式。在这种模式下,OSM 会自动发现属于服务网格一部分的服务,并在每个 Envoy 代理 sidecar 上编写流量策略规则,以便能够与这些服务进行通信。
何时使用宽松流量策略模式
由于宽松流量策略模式绕过 SMI 流量访问策略执行,因此它适用于服务网格内的应用程序之间的连接应该像应用程序注册到网格之前一样流动时使用。该模式适用于无法明确定义应用间连接的流量访问策略的环境。
启用宽松流量策略模式的一个常见用例是在不中断应用程序连接的情况下支持将应用程序逐步加入网格。应用服务之间的流量路由是由 OSM 控制器通过服务发现自动建立的。在每个 Envoy 代理 sidecar 上设置通配符流量策略,以允许流量流向网格内的服务。
允许流量策略模式的替代方案是 SMI 流量策略模式,其中应用程序之间的流量默认被拒绝,并且显式 SMI 流量策略是允许应用程序连接所必需的。当需要执行策略时,必须使用 SMI 流量策略模式。
配置宽松流策略模式
可以在安装 OSM 时或安装 OSM 后启用或禁用宽松流量策略模式。
启用宽松流量策略模式
启用宽松流量策略模式会禁用 SMI 流量策略模式。
在 OSM 安装时通过 --set
标识:
osm install --set osm.enablePermissiveTrafficPolicy=true
在 OSM 安装之后:
# Assumes OSM is installed in the osm-system namespace
kubectl patch meshconfig osm-mesh-config -n osm-system -p '{"spec":{"traffic":{"enablePermissiveTrafficPolicyMode":true}}}' --type=merge
禁用宽松流量策略模式
禁用宽松流量策略模式会启动 SMI 流量策略模式。
在 OSM 安装时通过 --set
标识:
osm install --set osm.enablePermissiveTrafficPolicy=false
在 OSM 安装之后:
# Assumes OSM is installed in the osm-system namespace
kubectl patch meshconfig osm-mesh-config -n osm-system -p '{"spec":{"traffic":{"enablePermissiveTrafficPolicyMode":false}}}' --type=merge
工作原理
启用宽松流量策略模式后,OSM 控制器会发现属于网格的所有服务,并在每个 Envoy 代理 sidecar 上编写通配符流量路由规则,以访问网格中的所有其他服务。此外,与服务相关联的每个代理前端工作负载都配置为接受以服务为目标的所有流量。根据服务的应用协议(HTTP、TCP、gRPC 等),在 Envoy sidecar 上配置适当的流量路由规则,以允许该特定类型的所有流量。
参考Permissive 流量策略模式演示 了解更多。
Envoy 配置
在宽松模式下,OSM 控制器为客户端应用程序编写通配符路由以与服务通信。 以下是来自 curl
和 httpbin
sidecar 代理的 envoy 入站和出站过滤器和路由配置片段。
curl
客户端 pod 上的 Outbound Envoy 配置:httpbin
服务对应的出站 HTTP 过滤器链:{
"name": "outbound-mesh-http-filter-chain:httpbin/httpbin",
"filter_chain_match": {
"prefix_ranges": [
{
"address_prefix": "10.96.198.23",
"prefix_len": 32
}
],
"destination_port": 14001
},
"filters": [
{
"name": "envoy.filters.network.http_connection_manager",
"typed_config": {
"@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_man
HttpConnectionManager",
"stat_prefix": "http",
"rds": {
"config_source": {
"ads": {},
"resource_api_version": "V3"
},
"route_config_name": "rds-outbound"
},
"http_filters": [
{
"name": "envoy.filters.http.rbac"
},
{
"name": "envoy.filters.http.router"
}
],
...
}
}
]
}
出站路由配置:
"route_config": {
"@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
"name": "rds-outbound",
"virtual_hosts": [
{
"name": "outbound_virtual-host|httpbin.httpbin",
"domains": [
"httpbin.httpbin",
"httpbin.httpbin.svc",
"httpbin.httpbin.svc.cluster",
"httpbin.httpbin.svc.cluster.local",
"httpbin.httpbin:14001",
"httpbin.httpbin.svc:14001",
"httpbin.httpbin.svc.cluster:14001",
"httpbin.httpbin.svc.cluster.local:14001"
],
"routes": [
{
"match": {
"headers": [
{
"name": ":method",
"safe_regex_match": {
"google_re2": {},
"regex": ".*"
}
}
],
"safe_regex": {
"google_re2": {},
"regex": ".*"
}
},
"route": {
"weighted_clusters": {
"clusters": [
{
"name": "httpbin/httpbin",
"weight": 100
}
],
"total_weight": 100
}
}
}
]
}
]
}
httpbin
服务 pod 的入站 Envoy 配置:httpbin
服务对应的入站 HTTP 过滤器链:{
"name": "inbound-mesh-http-filter-chain:httpbin/httpbin:80",
"filter_chain_match": {
"destination_port": 80,
"transport_protocol": "tls",
"application_protocols": [
"osm"
],
"server_names": [
"httpbin.httpbin.svc.cluster.local"
]
},
"filters": [
{
"name": "envoy.filters.network.http_connection_manager",
"typed_config": {
"@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager",
"stat_prefix": "http",
"rds": {
"config_source": {
"ads": {},
"resource_api_version": "V3"
},
"route_config_name": "rds-inbound"
},
"http_filters": [
{
"name": "envoy.filters.http.rbac"
},
{
"name": "envoy.filters.http.router"
}
]
}
}
],
"transport_socket": {
...
}
}
入站路由配置:
"route_config": {
"@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
"name": "rds-inbound",
"virtual_hosts": [
{
"name": "inbound_virtual-host|httpbin.httpbin",
"domains": [
"httpbin",
"httpbin.httpbin",
"httpbin.httpbin.svc",
"httpbin.httpbin.svc.cluster",
"httpbin.httpbin.svc.cluster.local",
"httpbin:14001",
"httpbin.httpbin:14001",
"httpbin.httpbin.svc:14001",
"httpbin.httpbin.svc.cluster:14001",
"httpbin.httpbin.svc.cluster.local:14001"
],
"routes": [
{
"match": {
"headers": [
{
"name": ":method",
"safe_regex_match": {
"google_re2": {},
"regex": ".*"
}
}
],
"safe_regex": {
"google_re2": {},
"regex": ".*"
}
},
"route": {
"weighted_clusters": {
"clusters": [
{
"name": "httpbin/httpbin-local",
"weight": 100
}
],
"total_weight": 100
}
},
"typed_per_filter_config": {
"envoy.filters.http.rbac": {
...
}
}
}
]
}
],
"validate_clusters": false
}