HostAlias

data class HostAlias(val hostnames: List<String>? = null, val ip: String)

HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.

Constructors

Link copied to clipboard
constructor(hostnames: List<String>? = null, ip: String)

Types

Link copied to clipboard
object Companion

Properties

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

Hostnames for the above IP address.

Link copied to clipboard
val ip: String

IP address of the host file entry.