我需要基于if
语句定义一个变量,并多次使用该变量。
为了不重复if
,我尝试了以下操作:
{{ if condition}}
{{ $my_val = "http" }}
{{ else }}
{{ $my_val = "https" }}
{{ end }}
{{ $my_val }}://google.com
但是这将返回错误:
Error: render error in "templates/deployment.yaml":
template: templates/deployment.yaml:30:28:
executing "templates/deployment.yaml" at
<include (print $.Template.BasePath "/config.yaml") .>: error calling
include: template: templates/config.yaml:175:59:
executing "templates/config.yaml" at <"https">: undefined variable: $my_val
想法?
答案 0 :(得分:2)
最直接的方法是使用ternary
函数provided by the Sprig library。那会让你写类似
{{ $myVal := ternary "http" "https" condition -}}
{{ $myVal }}://google.com
一个更简单但更间接的方法是编写一个模板,生成该值并调用它
{{- define "scheme" -}}
{{- if condition }}http{{ else }}https{{ end }}
{{- end -}}
{{ template "scheme" . }}://google.com
如果需要将此变量包含在另一个变量中,Helm提供了一个include
函数,其功能与template
相似,只是它是“表达式”而不是直接输出的东西。
{{- $url := printf "%s://google.com" (include "scheme" .) -}}