IngressBackendPatch

data class IngressBackendPatch(val resource: TypedLocalObjectReferencePatch? = null, val serviceName: String? = null, val servicePort: Either<Int, String>? = null)

IngressBackend describes all endpoints for a given service and port.

Constructors

Link copied to clipboard
constructor(resource: TypedLocalObjectReferencePatch? = null, serviceName: String? = null, servicePort: Either<Int, String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified.

Link copied to clipboard
val serviceName: String? = null

Specifies the name of the referenced service.

Link copied to clipboard
val servicePort: Either<Int, String>? = null

Specifies the port of the referenced service.