我正在创建一个头盔图,在其中我想使用模板函数为值指定默认值。具体来说,我想使用覆盖值image.name或默认使用模板函数chart.name:
{{ .Values.image.name | default include chart.name . }}
但是在绘制图表时,出现以下错误:
[ERROR] templates/: render error in "chart/templates/deployment.yaml": template: chart/templates/deployment.yaml:22:81: executing "chart/templates/deployment.yaml" at <include>: wrong number of args for include: want 2 got 0
是否可以使用包含的模板函数作为默认值?还是只能使用文字?
答案 0 :(得分:1)
可以。只需将您的include语句括在括号中即可:
{{ .Values.image.name | default (include "chart.name" .)}}