Helm _helpers.tpl:在其他模板定义中调用已定义的模板

时间:2017-10-12 21:21:49

标签: templates go kubernetes go-templates kubernetes-helm

Helm _helpers.tpl?

Helm允许在Kubernetes的资源文件中使用official documentation

名为_helpers.tpl的文件通常用于使用以下语法定义Go模板助手:

{{- define "yourFnName" -}}
{{- printf "%s-%s" .Values.name .Values.version | trunc 63 -}}
{{- end -}}

然后您可以在*.yaml资源文件中使用它,如下所示:

{{ template "yourFnName" . }}

问题

如何在其他帮助程序定义中使用我定义的帮助程序?

例如,如果我有应用程序名称的帮助程序,并希望在定义中使用确定入口主机名的帮助程序,该怎么办?

我尝试过几种不同的方式在其他定义中调用助手。鉴于这个基本的辅助函数:

{{- define "host" -}}
{{- printf "%.example.com" <Somehow get result of "name" helper here> -}}
{{- end -}}

我尝试了以下内容:

{{- printf "%.example.com" {{ template "name" . }} -}}
{{- printf "%.example.com" {{- template "name" . -}} -}}
{{- printf "%.example.com" ( template "name" . ) -}}
{{- printf "%.example.com" template "name" . -}}
# Separator
{{- $name := {{ template "environment" . }} -}}
{{- printf "%.example.com" $name -}}
# Separator
{{- $name := template "environment" . -}}
{{- printf "%.example.com" $name -}}
# Separator
{{- $name := environment -}}
{{- printf "%.example.com" $name -}}

甚至可以这样做吗?如果是这样,怎么样?

2 个答案:

答案 0 :(得分:6)

您应该使用Nested template definitions

在您的特定情况下,它是:

{{- define "host" -}}
{{ template "name" . }}.example.com
{{- end -}}

答案 1 :(得分:4)

您可以使用(include ... )语法。包括先前定义的模板foo的示例:

{{- define "bar" -}}
{{- printf "%s-%s" (include "foo" .) .Release.Namespace | trunc 63 | trimSuffix "-" -}}
{{- end -}}