TCPReadinessProbe checks readiness by ensure a TCP connection can be established.
| 470 | |
| 471 | // TCPReadinessProbe checks readiness by ensure a TCP connection can be established. |
| 472 | type TCPReadinessProbe struct { |
| 473 | port int |
| 474 | } |
| 475 | |
| 476 | func NewTCPReadinessProbe(port int) *TCPReadinessProbe { |
| 477 | return &TCPReadinessProbe{ |
nothing calls this directly
no outgoing calls
no test coverage detected