From 9e7183d04d074b7c5dd88d491fd46ff1dfb8141d Mon Sep 17 00:00:00 2001 From: Joe Lombrozo Date: Fri, 8 Nov 2024 09:51:34 -0500 Subject: [PATCH] this seems to be required in a default installation --- cmd/controller.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/controller.go b/cmd/controller.go index a3e2639..2441823 100644 --- a/cmd/controller.go +++ b/cmd/controller.go @@ -160,7 +160,8 @@ func init() { stringFlag(flags, "argocd-repository-endpoint", `Location of the argocd repository service endpoint.`, newStringOpts().withDefault("argocd-repo-server.argocd:8081")) - boolFlag(flags, "argocd-repository-insecure", `True if you need to skip validating the grpc tls certificate.`) + boolFlag(flags, "argocd-repository-insecure", `True if you need to skip validating the grpc tls certificate.`, + newBoolOpts().withDefault(true)) stringFlag(flags, "label-filter", `(Optional) If set, The label that must be set on an MR (as "kubechecks:") for kubechecks to process the merge request webhook (KUBECHECKS_LABEL_FILTER).`) stringFlag(flags, "openai-api-token", "OpenAI API Token.") stringFlag(flags, "webhook-url-base", "The endpoint to listen on for incoming PR/MR event webhooks. For example, 'https://checker.mycompany.com'.")