Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DNSProvider ¶
type DNSProvider struct {
// contains filtered or unexported fields
}
DNSProvider is an implementation of the acme.ChallengeProvider interface that uses dynamic DNS updates (RFC 2136) to create TXT records on a nameserver.
func NewDNSProviderCredentials ¶
func NewDNSProviderCredentials(nameserver, tsigAlgorithm, tsigKeyName, tsigSecret string) (*DNSProvider, error)
NewDNSProviderCredentials uses the supplied credentials to return a DNSProvider instance configured for rfc2136 dynamic update. To disable TSIG authentication, leave the TSIG parameters as empty strings. nameserver must be a network address in the form "IP" or "IP:port".
func (*DNSProvider) CleanUp ¶
func (r *DNSProvider) CleanUp(_, fqdn, zone, value string) error
CleanUp removes the TXT record matching the specified parameters
func (*DNSProvider) Nameserver ¶ added in v1.8.0
func (r *DNSProvider) Nameserver() string
Nameserver returns the nameserver configured for this provider when it was created
func (*DNSProvider) Present ¶
func (r *DNSProvider) Present(_, fqdn, zone, value string) error
Present creates a TXT record using the specified parameters
func (*DNSProvider) TSIGAlgorithm ¶ added in v1.8.0
func (r *DNSProvider) TSIGAlgorithm() string
TSIGAlgorithm returns the TSIG algorithm configured for this provider when it was created
type Solver ¶ added in v1.8.0
type Solver struct {
// contains filtered or unexported fields
}
func (*Solver) Initialize ¶ added in v1.8.0
func (s *Solver) Initialize(kubeClientConfig *restclient.Config, stopCh <-chan struct{}) error