kubernetes/pkg/probe/exec/exec.go

const maxReadLength

// New creates a Prober.
func New() Prober {}

type Prober

type execProber

// Probe executes a command to check the liveness/readiness of container
// from executing a command. Returns the Result status, command output, and
// errors if any.
func (pr execProber) Probe(e exec.Cmd) (probe.Result, string, error) {}