Helm secrets problem with multiples sources.
I currently have a Helm chart repository in GCP, with the values stored in Github. When I try to deploy by referencing the Github repository, it tells me that it doesn't exist, and I believe it's because it conflicts with secrets://.
This is my yaml:
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: app
namespace: argocd
spec:
project: default
destination:
server: https://kubernetes.default.svc
namespace: default
sources:
- chart: name-chart
repoURL: repo-chart
targetRevision: version-chart
helm:
valueFiles:
- secrets://$values/path-values
releaseName: release-name
- repoURL: repo-values
targetRevision: branch-values
ref: values
syncPolicy:
automated:
prune: true
selfHeal: true
My version from ARGOCD is 2.9.3
Thanks.