Skip to content

Commit

Permalink
update code comment on the recursive nameserver flag
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Liebhart <flo.liebhart@gmail.com>
  • Loading branch information
FlorianLiebhart committed Jun 20, 2023
1 parent 601c06c commit b6dbee6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions cmd/controller/app/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,11 @@ type ControllerOptions struct {
DefaultAutoCertificateAnnotations []string

// Allows specifying a list of custom nameservers to perform DNS checks on.
// For DNS lookups, this can be either specified like `<ip address>:<port>`.
// For DNS over HTTPS lookups, this can be specified like `https://<DoH RFC 8484 server address>`.
// Each nameserver can be either the IP address and port of a standard
// recursive DNS server, or the endpoint to an RFC 8484 DNS over HTTPS
// endpoint. For example, the following values are valid:
// - "8.8.8.8:53" (Standard DNS)
// - "https://1.1.1.1/dns-query" (DNS over HTTPS)
DNS01RecursiveNameservers []string
// Allows controlling if recursive nameservers are only used for all checks.
// Normally authoritative nameservers are used for checking propagation.
Expand Down

0 comments on commit b6dbee6

Please sign in to comment.