From 98c54eb0807c57cc55ec355fbebdad23465deb49 Mon Sep 17 00:00:00 2001 From: pb Date: Fri, 11 Apr 2025 15:34:43 +0200 Subject: [PATCH] typo when passing gvr for target --- infrastructure/kubernetes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/kubernetes.go b/infrastructure/kubernetes.go index eb11526..e8e9b98 100644 --- a/infrastructure/kubernetes.go +++ b/infrastructure/kubernetes.go @@ -309,7 +309,7 @@ func (k *KubernetesService) CreateAdmiraltyTarget(context context.Context,execut }, } - res, err := dynamicClientApply(executionId, gvrSources, context, target) + res, err := dynamicClientApply(executionId, gvrTargets, context, target) if err != nil { return nil, errors.New("Error when trying to apply Source definition :" + err.Error()) }