From cd821e194844b3b87cfa8c2a8a5fc725a55ae213 Mon Sep 17 00:00:00 2001 From: Florian Liebhart Date: Tue, 5 Apr 2022 01:22:34 +0200 Subject: [PATCH] fix controller options description Signed-off-by: Florian Liebhart --- cmd/controller/app/options/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/controller/app/options/options.go b/cmd/controller/app/options/options.go index 5689242a7..17ad3eb9c 100644 --- a/cmd/controller/app/options/options.go +++ b/cmd/controller/app/options/options.go @@ -343,7 +343,7 @@ func (s *ControllerOptions) AddFlags(fs *pflag.FlagSet) { dnsutil.ACMEDNS01CheckViaDNSLookup, dnsutil.ACMEDNS01CheckViaHTTPS)) fs.StringVar(&s.DnsOverHttpsJsonEndpoint, "dns-over-https-json-endpoint", defaultDnsOverHttpsJsonEndpoint, fmt.Sprintf( - "[%s, %s] Only used when specifying \"dns-over-https\" for the \"acme-dns01-check-method\" option. "+ + "Only used when specifying \"dns-over-https\" for the \"acme-dns01-check-method\" option. "+ "This allows specifying what JSON endpoint to use for doing the DNS-over-HTTPS verification."+ "Examples: 'https://1.1.1.1/dns-query', 'https://8.8.8.8/resolve', ''https://8.8.4.4/resolve'. or 'https://9.9.9.9:5053/dns-query'"))