登录
首页 >  Golang >  Go问答

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

来源:Golang技术栈

时间:2023-04-12 12:59:52 197浏览 收藏

欢迎各位小伙伴来到golang学习网,相聚于此都是缘哈哈哈!今天我给大家带来《Helm _helpers.tpl:在其他模板定义中调用已定义的模板》,这篇文章主要讲到golang等等知识,如果你对Golang相关的知识非常感兴趣或者正在自学,都可以关注我,我会持续更新相关文章!当然,有什么建议也欢迎在评论留言提出!一起学习!

问题内容

掌舵_helpers.tpl?

Helm 允许在 Kubernetes 的资源文件中使用Go 模板。

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

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

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

{{ template "yourFnName" . }}

问题

如何在其他助手定义中使用我定义的助手?

例如,如果我有一个应用程序名称的帮助程序,并且想在定义中使用它来确定入口主机名的帮助程序怎么办?

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

{{- define "host" -}}
{{- printf "%.example.com"  -}}
{{- 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 -}}

有可能做到这一点吗?如果是这样,怎么做?

正确答案

您应该使用[嵌套模板定义](https://golang.org/pkg/text/template/#hdr- Nested_template_definitions)。

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

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

到这里,我们也就讲完了《Helm _helpers.tpl:在其他模板定义中调用已定义的模板》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注golang学习网公众号,带你了解更多关于golang的知识点!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>