argo-cd icon indicating copy to clipboard operation
argo-cd copied to clipboard

Helm secrets problem with multiples sources.

Open dtrabanca opened this issue 2 years ago • 0 comments

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.

dtrabanca avatar Dec 29 '23 14:12 dtrabanca