Endpoint Conditions Patch
data class EndpointConditionsPatch(val ready: Boolean? = null, val serving: Boolean? = null, val terminating: Boolean? = null)
EndpointConditions represents the current condition of an endpoint.
Constructors
Link copied to clipboard
fun EndpointConditionsPatch(ready: Boolean? = null, serving: Boolean? = null, terminating: Boolean? = null)
Types
Properties
Link copied to clipboard
serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.