apiVersion: networking.istio.io/v1alpha3
kind: EnvoyFilter
metadata:
name: my-test-filter
spec:
workloadSelector:
labels:
app: httpbin
configPatches:
- applyTo: HTTP_FILTER
match:
context: SIDECAR_INBOUND
listener:
filterChain:
filter:
name: "envoy.filters.network.http_connection_manager"
subFilter:
name: "envoy.filters.http.router"
patch:
operation: INSERT_BEFORE
value: # lua filter specification
name: envoy.lua
typed_config:
"@type": "type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua"
inlineCode: |-
function envoy_on_request(request_handle)
request_handle:logInfo("hello world, tanjunchen")
end
function envoy_on_response(response_handle)
response_handle:headers():add("lua", "tanjunchen")
response_handle:headers():add("istio", "aaaaaaaaaa")
end
如何在 istio 中使用 lua 拓展 sidecar 数据面?
我们可以使用 lua + envoyfilter 在 http request response 中添加相应的 header 实现该功能。

本文介绍了如何在Istio服务网格中利用EnvoyFilter和Lua扩展Sidecar的数据面能力。通过创建EnvoyFilter资源,将Lua脚本插入到HTTP过滤器链中,实现在HTTP请求和响应中添加自定义header,以此展示Istio的灵活性和可扩展性。
1158

被折叠的 条评论
为什么被折叠?



