0

Do I need to include repositories field in Helmfile, If it is the local helm chart and It would not be needed to be donwloaded?

Right now I have folloving helmfile.yaml:

repositories:
- name: system-test
  url: https://github.com/test/test.system.configuration.git

releases:
- name: system-test-release
  chart: ./charts/test
  namespace: system-test
  values:
    - ./charts/test/values.yaml

1 Answers1

1

The repositories: would only get used if you're actually pulling a chart from that repository; for example

releases:
  - name: end-to-end
    chart: system-test/end-to-end

If you're just referring to local charts with filesystem paths, the repositories: don't get used.

David Maze
  • 130,717
  • 29
  • 175
  • 215