宽松流量策略模式

OSM 中的宽松流量策略模式是绕过 SMI 流量访问策略执行的模式。在这种模式下,OSM 会自动发现属于服务网格一部分的服务,并在每个 Envoy 代理 sidecar 上编写流量策略规则,以便能够与这些服务进行通信。

何时使用宽松流量策略模式

由于宽松流量策略模式绕过 SMI 流量访问策略执行,因此它适用于服务网格内的应用程序之间的连接应该像应用程序注册到网格之前一样流动时使用。该模式适用于无法明确定义应用间连接的流量访问策略的环境。

启用宽松流量策略模式的一个常见用例是在不中断应用程序连接的情况下支持将应用程序逐步加入网格。应用服务之间的流量路由是由 OSM 控制器通过服务发现自动建立的。在每个 Envoy 代理 sidecar 上设置通配符流量策略,以允许流量流向网格内的服务。

允许流量策略模式的替代方案是 SMI 流量策略模式,其中应用程序之间的流量默认被拒绝,并且显式 SMI 流量策略是允许应用程序连接所必需的。当需要执行策略时,必须使用 SMI 流量策略模式。

配置宽松流策略模式

可以在安装 OSM 时或安装 OSM 后启用或禁用宽松流量策略模式。

启用宽松流量策略模式

启用宽松流量策略模式会禁用 SMI 流量策略模式。

在 OSM 安装时通过 --set 标识:

  1. osm install --set osm.enablePermissiveTrafficPolicy=true

在 OSM 安装之后:

  1. # Assumes OSM is installed in the osm-system namespace
  2. kubectl patch meshconfig osm-mesh-config -n osm-system -p '{"spec":{"traffic":{"enablePermissiveTrafficPolicyMode":true}}}' --type=merge

禁用宽松流量策略模式

禁用宽松流量策略模式会启动 SMI 流量策略模式。

在 OSM 安装时通过 --set 标识:

  1. osm install --set osm.enablePermissiveTrafficPolicy=false

在 OSM 安装之后:

  1. # Assumes OSM is installed in the osm-system namespace
  2. 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 控制器为客户端应用程序编写通配符路由以与服务通信。 以下是来自 curlhttpbin sidecar 代理的 envoy 入站和出站过滤器和路由配置片段。

  1. curl 客户端 pod 上的 Outbound Envoy 配置:

    httpbin 服务对应的出站 HTTP 过滤器链:

    1. {
    2. "name": "outbound-mesh-http-filter-chain:httpbin/httpbin",
    3. "filter_chain_match": {
    4. "prefix_ranges": [
    5. {
    6. "address_prefix": "10.96.198.23",
    7. "prefix_len": 32
    8. }
    9. ],
    10. "destination_port": 14001
    11. },
    12. "filters": [
    13. {
    14. "name": "envoy.filters.network.http_connection_manager",
    15. "typed_config": {
    16. "@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_man
    17. HttpConnectionManager",
    18. "stat_prefix": "http",
    19. "rds": {
    20. "config_source": {
    21. "ads": {},
    22. "resource_api_version": "V3"
    23. },
    24. "route_config_name": "rds-outbound"
    25. },
    26. "http_filters": [
    27. {
    28. "name": "envoy.filters.http.rbac"
    29. },
    30. {
    31. "name": "envoy.filters.http.router"
    32. }
    33. ],
    34. ...
    35. }
    36. }
    37. ]
    38. }

    出站路由配置:

    1. "route_config": {
    2. "@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
    3. "name": "rds-outbound",
    4. "virtual_hosts": [
    5. {
    6. "name": "outbound_virtual-host|httpbin.httpbin",
    7. "domains": [
    8. "httpbin.httpbin",
    9. "httpbin.httpbin.svc",
    10. "httpbin.httpbin.svc.cluster",
    11. "httpbin.httpbin.svc.cluster.local",
    12. "httpbin.httpbin:14001",
    13. "httpbin.httpbin.svc:14001",
    14. "httpbin.httpbin.svc.cluster:14001",
    15. "httpbin.httpbin.svc.cluster.local:14001"
    16. ],
    17. "routes": [
    18. {
    19. "match": {
    20. "headers": [
    21. {
    22. "name": ":method",
    23. "safe_regex_match": {
    24. "google_re2": {},
    25. "regex": ".*"
    26. }
    27. }
    28. ],
    29. "safe_regex": {
    30. "google_re2": {},
    31. "regex": ".*"
    32. }
    33. },
    34. "route": {
    35. "weighted_clusters": {
    36. "clusters": [
    37. {
    38. "name": "httpbin/httpbin",
    39. "weight": 100
    40. }
    41. ],
    42. "total_weight": 100
    43. }
    44. }
    45. }
    46. ]
    47. }
    48. ]
    49. }
  2. httpbin 服务 pod 的入站 Envoy 配置:

    httpbin 服务对应的入站 HTTP 过滤器链:

    1. {
    2. "name": "inbound-mesh-http-filter-chain:httpbin/httpbin:80",
    3. "filter_chain_match": {
    4. "destination_port": 80,
    5. "transport_protocol": "tls",
    6. "application_protocols": [
    7. "osm"
    8. ],
    9. "server_names": [
    10. "httpbin.httpbin.svc.cluster.local"
    11. ]
    12. },
    13. "filters": [
    14. {
    15. "name": "envoy.filters.network.http_connection_manager",
    16. "typed_config": {
    17. "@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager",
    18. "stat_prefix": "http",
    19. "rds": {
    20. "config_source": {
    21. "ads": {},
    22. "resource_api_version": "V3"
    23. },
    24. "route_config_name": "rds-inbound"
    25. },
    26. "http_filters": [
    27. {
    28. "name": "envoy.filters.http.rbac"
    29. },
    30. {
    31. "name": "envoy.filters.http.router"
    32. }
    33. ]
    34. }
    35. }
    36. ],
    37. "transport_socket": {
    38. ...
    39. }
    40. }

    入站路由配置:

    1. "route_config": {
    2. "@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
    3. "name": "rds-inbound",
    4. "virtual_hosts": [
    5. {
    6. "name": "inbound_virtual-host|httpbin.httpbin",
    7. "domains": [
    8. "httpbin",
    9. "httpbin.httpbin",
    10. "httpbin.httpbin.svc",
    11. "httpbin.httpbin.svc.cluster",
    12. "httpbin.httpbin.svc.cluster.local",
    13. "httpbin:14001",
    14. "httpbin.httpbin:14001",
    15. "httpbin.httpbin.svc:14001",
    16. "httpbin.httpbin.svc.cluster:14001",
    17. "httpbin.httpbin.svc.cluster.local:14001"
    18. ],
    19. "routes": [
    20. {
    21. "match": {
    22. "headers": [
    23. {
    24. "name": ":method",
    25. "safe_regex_match": {
    26. "google_re2": {},
    27. "regex": ".*"
    28. }
    29. }
    30. ],
    31. "safe_regex": {
    32. "google_re2": {},
    33. "regex": ".*"
    34. }
    35. },
    36. "route": {
    37. "weighted_clusters": {
    38. "clusters": [
    39. {
    40. "name": "httpbin/httpbin-local",
    41. "weight": 100
    42. }
    43. ],
    44. "total_weight": 100
    45. }
    46. },
    47. "typed_per_filter_config": {
    48. "envoy.filters.http.rbac": {
    49. ...
    50. }
    51. }
    52. }
    53. ]
    54. }
    55. ],
    56. "validate_clusters": false
    57. }