-
Notifications
You must be signed in to change notification settings - Fork 37
Description
We are using multi-source Argo CD ApplicationSets where one source is a Helm chart repository and the other is a Git repository that contains the values.yaml files.
Our ApplicationSet sources section looks like this:
sources:
-
chart:
repoURL:
targetRevision: 1.0.0
helm:
valueFiles:- $valueFiles/values.yaml
-
repoURL:
targetRevision: main
ref: valueFiles
The expected behavior is that kubechecks detects the change in the referenced values files and reports the resulting ApplicationSet changes. Instead, kubechecks reports the following error "failed to generate manifests: failed to get repo: failed to clone repo: failed to clone repository: exit status 128" . This is trying to clone the helm OCI registry using git clone which would fail.
Please let me know if something is unclear, I could provide more details. Any help here would be much appreciated