Sha256: f1ba789acde152cde73a6b7fcff23c940c4058ecb14b0d4dd711bdd8abc92f21
Contents?: true
Size: 1.32 KB
Versions: 1
Compression:
Stored size: 1.32 KB
Contents
# Zilla::IoK8sApiDiscoveryV1EndpointConditions ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **ready** | **Boolean** | ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be \"true\" for terminating endpoints. | [optional] | | **serving** | **Boolean** | 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. | [optional] | | **terminating** | **Boolean** | terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating. This field can be enabled with the EndpointSliceTerminatingCondition feature gate. | [optional] | ## Example ```ruby require 'zilla' instance = Zilla::IoK8sApiDiscoveryV1EndpointConditions.new( ready: null, serving: null, terminating: null ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
zilla-0.2.0 | docs/IoK8sApiDiscoveryV1EndpointConditions.md |