This is an automated email from the ASF dual-hosted git repository. squakez pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 044667342439ec0521490a3814477a255972cc80 Author: Keerthan <[email protected]> AuthorDate: Thu Sep 17 18:58:46 2026 +0530 pushed formatted fix --- pkg/cmd/operator/operator.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/cmd/operator/operator.go b/pkg/cmd/operator/operator.go index c17e4796b..7a4804222 100644 --- a/pkg/cmd/operator/operator.go +++ b/pkg/cmd/operator/operator.go @@ -202,11 +202,10 @@ func Run(healthPort, monitoringPort int32, leaderElection bool, leaderElectionID selectors[&batchv1.CronJob{}] = selector } - if platform.CertManagerInstalled, err= kubernetes.IsAPIResourceInstalled(bootstrapClient, "cert-manager.io/v1", "ClusterIssuer"); err!=nil{ + if platform.CertManagerInstalled, err = kubernetes.IsAPIResourceInstalled(bootstrapClient, "cert-manager.io/v1", "ClusterIssuer"); err != nil { log.Error(err, "failed to check for cert-manager presence, assuming not installed") } - options := cache.Options{ ByObject: selectors, }
