GroupDnsConfig

data class GroupDnsConfig(val nameservers: List<String>, val options: List<String>? = null, val searchDomains: List<String>? = null)

Constructors

Link copied to clipboard
constructor(nameservers: List<String>, options: List<String>? = null, searchDomains: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A list of nameservers the containers will search out to resolve requests. Changing this forces a new resource to be created.

Link copied to clipboard
val options: List<String>? = null

A list of resolver configuration options. Changing this forces a new resource to be created.

Link copied to clipboard
val searchDomains: List<String>? = null

A list of search domains that DNS requests will search along. Changing this forces a new resource to be created.