We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d93c7a commit 3538c22Copy full SHA for 3538c22
pkg/argocd/argocd.go
@@ -552,6 +552,9 @@ func getApplicationSourceType(app *v1alpha1.Application) v1alpha1.ApplicationSou
552
if st, set := app.Annotations[common.WriteBackTargetAnnotation]; set &&
553
strings.HasPrefix(st, common.KustomizationPrefix) {
554
return v1alpha1.ApplicationSourceTypeKustomize
555
+ } else if st, set := app.Annotations[common.WriteBackTargetAnnotation]; set &&
556
+ strings.HasPrefix(st, common.HelmPrefix) {
557
+ return v1alpha1.ApplicationSourceTypeHelm
558
}
559
560
if app.Spec.HasMultipleSources() {
0 commit comments