Skip to content

Commit

Permalink
this seems to be required in a default installation
Browse files Browse the repository at this point in the history
  • Loading branch information
djeebus committed Nov 8, 2024
1 parent 4bbab33 commit 9e7183d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -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:<value>") 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'.")
Expand Down

0 comments on commit 9e7183d

Please sign in to comment.