package tcp
import "k8s.io/kubernetes/pkg/probe/tcp"
Index ¶
Functions ¶
func DoTCPProbe ¶
DoTCPProbe checks that a TCP socket to the address can be opened. If the socket can be opened, it returns Success If the socket fails to open, it returns Failure. This is exported because some other packages may want to do direct TCP probes.
Types ¶
type Prober ¶
type Prober interface { Probe(host string, port int, timeout time.Duration) (probe.Result, string, error) }
Prober is an interface that defines the Probe function for doing TCP readiness/liveness checks.
func New ¶
func New() Prober
New creates Prober.
Source Files ¶
tcp.go
- Version
- v1.33.0 (latest)
- Published
- Apr 23, 2025
- Platform
- linux/amd64
- Imports
- 5 packages
- Last checked
- 3 hours ago –
Tools for package owners.