gpt4 book ai didi

kubernetes-helm - 在 Helm 模板中定义一个变量

转载 作者:行者123 更新时间:2023-12-03 18:34:59 26 4
gpt4 key购买 nike

我需要根据 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

想法?

最佳答案

最直接的方法是使用 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" .) -}}

关于kubernetes-helm - 在 Helm 模板中定义一个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56324405/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com