0

--set で helmfile に値を渡そうとしました

 helmfile --file ./myfile.yaml sync --set tag=${TAG}

myfile.yaml
---

releases:
  - name: controll
    namespace: ns
    chart: {{ .Values.chart.path }}
    version: {{ .Values.version | default "" }}
    values:
      - image:
          repository: controller-repo
          tag: {{ .Values.agcm_tag }}
          pullPolicy: Never
      - values/anotherYaml.yaml

エラーが発生しました

in myfile.yaml: error during myfile.part.1 parsing: template: stringTemplate:14:25: executing "stringTemplate" at <.Values.tag>: map has no entry for key "tag"
4

1 に答える 1