Replies: 1 comment 5 replies
-
|
Argo CD needs the Chart.yaml in order to understand the presence of a Helm chart. The solution is to not use Helm file and simply point directly Argo CD to your original Helm charts using ApplicationSets for any templating required. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
helm templateorhelmfile templatewill generate directories and charts withoutChart.yamlfor example
helmfile template --output-dir-template $(pwd)/gitops//{{.Release.Namespace}}will generate the following directories structure.
there is no
Chart.yamlSo when I create an application chart like this
traefikwill not be properly installed.I have been googling around and trying to find the answer but I couldn't find it.
Can argocd support installing the sub-charts without
Chart.yaml? Or do I have to manually create that one by one?Beta Was this translation helpful? Give feedback.
All reactions