TCPReadinessProbe checks readiness by ensure a TCP connection can be established.
| 344 | |
| 345 | // TCPReadinessProbe checks readiness by ensure a TCP connection can be established. |
| 346 | type TCPReadinessProbe struct { |
| 347 | portName string |
| 348 | } |
| 349 | |
| 350 | func NewTCPReadinessProbe(portName string) *TCPReadinessProbe { |
| 351 | return &TCPReadinessProbe{ |
nothing calls this directly
no outgoing calls
no test coverage detected