Endpoint Patch
data class EndpointPatch(val addresses: List<String>? = null, val conditions: EndpointConditionsPatch? = null, val hostname: String? = null, val nodeName: String? = null, val targetRef: ObjectReferencePatch? = null, val topology: Map<String, String>? = null)
Endpoint represents a single logical "backend" implementing a service.
Constructors
Link copied to clipboard
fun EndpointPatch(addresses: List<String>? = null, conditions: EndpointConditionsPatch? = null, hostname: String? = null, nodeName: String? = null, targetRef: ObjectReferencePatch? = null, topology: Map<String, String>? = null)
Types
Properties
Link copied to clipboard
topology contains arbitrary topology information associated with the endpoint. These key/value pairs must conform with the label format. https://kubernetes.io/docs/concepts/overview/working-with-objects/labels Topology may include a maximum of 16 key/value pairs. This includes, but is not limited to the following well known keys: * kubernetes.io/hostname: the value indicates the hostname of the node where the endpoint is located. This should match the corresponding node label.