diff --git a/pkg/apiserver/domain/service/config.go b/pkg/apiserver/domain/service/config.go index 94378cc78..cf097c9e5 100644 --- a/pkg/apiserver/domain/service/config.go +++ b/pkg/apiserver/domain/service/config.go @@ -463,6 +463,8 @@ func destroySyncConfigsApp(ctx context.Context, k8sClient client.Client, project if !kerrors.IsNotFound(err) { return err } + klog.InfoS("config sync application doesn't exist, no need destroy", "application", name) + return nil } return k8sClient.Delete(ctx, app) }