在helmfile.yaml中代表头盔图表values.yaml

时间:2020-09-20 12:24:36

标签: helmfile

我试图在helmfile.yaml中表示以下内容,但出现错误。谁能帮助我进行设置?

values.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

有什么主意吗?

0 个答案:

没有答案
相关问题