gpt4 book ai didi

yaml - 如何使用索引引用 helm 数组参数

转载 作者:行者123 更新时间:2023-12-01 21:47:38 36 4
gpt4 key购买 nike

我在 values.yaml 文件中有这个 helm 参数。

spec:
containers:
- name: mycontainer
image: my.image.url

我想从另一个带有索引的 kubernetes-resource.yaml 文件中引用名称和图像参数。

我试过了

containerReference: {{ index .Values.spec.containers[0].name | quote }} 

containerReference: {{ (index .Values.spec.containers 0).name | quote }} 

但我得到:坏字符 U+002D '-'

最佳答案

尝试

{{ with index .Values.spec.containers 0 }}
containerReference: {{ .name | quote }}
{{ end }}

关于yaml - 如何使用索引引用 helm 数组参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60112814/

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