Istio 的 `sidecar-injector-configmap.yaml` 文件使用什么 helm 语法?

What helm syntax does Istio use for their `sidecar-injector-configmap.yaml` file?

具体来说,这里是相关代码行的永久链接:https://github.com/istio/istio/blob/e3a376610c2f28aef40296aac722c587629123c1/install/kubernetes/helm/istio/templates/sidecar-injector-configmap.yaml#L84

{{ "[[ .ProxyConfig.ZipkinAddress ]]" }}

[[]] 对我来说似乎很陌生,在 helm chart 开发人员指南文档 here 中,它没有显示任何关于 [=11= 的示例或文档] 和 ]] 语法。

此外,当我尝试渲染我的 istio 安装(使用 helm template 命令)时,{{ "[[ .ProxyConfig.ZipkinAddress ]]" }} 部分仅渲染为 [[ .ProxyConfig.ZipkinAddress ]]。所以我猜 [[]] 不是 helm 模板语法的一部分。我猜应该是istio内部的相关语法,我不知道它到底是什么。

有什么想法吗?

我在 Istio 的 google 组 here. Without discrediting the author who answering me in the google group, the answer is yes it is a template of a template. The template syntax is used by sidecar injection described in here: https://istio.io/docs/setup/kubernetes/sidecar-injection/#template

上发布了相同的问题后得到了答案