Documentation ¶
Overview ¶
Package dns provides operations needed to interact with DNS in an e2e test.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Interface ¶ added in v1.0.0
type Interface interface { // Create adds DNS A records pointing `randomNames` at the IP address to the configured DNS zone // and returns the resulting domain names and the records added to the zone. Create(randomNames []string, ip string) ([]string, []*dns.ResourceRecordSet, error) // Delete deletes specified records from the DNS zone `d.zone`. Delete(records []*dns.ResourceRecordSet) error }
Click to show internal directories.
Click to hide internal directories.