我试图在 helmfile.yaml 中表示以下内容,但出现错误。谁能帮我设置一下?
值.yaml
extraVolumes:
- name: google-cloud-key
secret:
secretName: gcloud-auth
我在 helmfile.yaml 中尝试了以下内容
repositories:
- name: loki
url: https://grafana.github.io/loki/charts
releases:
- name: loki
namespace: monitoring
chart: loki/loki
set:
- name: extraVolumes.name
value: google-cloud-key
- name: extraVolumes.secret.secretName
value: gcloud-auth
我得到的错误是
coalesce.go:160: warning: skipped value for extraVolumes: Not a table.
我还在 helmfile.yaml 中尝试了以下内容
- name: extraVolumes.name[]
value: google-cloud-key
这给了我以下错误
Error: failed parsing --set data: key map "extraVolumes" has no value
任何想法?