From 46b77134048266d6f1bbb9c8c6440b1c0c9d66d5 Mon Sep 17 00:00:00 2001 From: pb Date: Fri, 11 Apr 2025 12:10:54 +0200 Subject: [PATCH] corrected Apply target --- infrastructure/kubernetes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/kubernetes.go b/infrastructure/kubernetes.go index b3c9463..f80e024 100644 --- a/infrastructure/kubernetes.go +++ b/infrastructure/kubernetes.go @@ -343,7 +343,7 @@ func (k *KubernetesService) CreateAdmiraltyTarget(context context.Context,execut res, err := cli.Resource(gvrTargets). Namespace(executionId). Apply(context, - "source-"+executionId, + "target-"+executionId, &unstructured.Unstructured{Object: target}, metav1.ApplyOptions{ FieldManager: "kubectl-client-side-apply",