kubernetesk8s.io/kubernetes/pkg/probe Index | Files | Directories

package probe

import "k8s.io/kubernetes/pkg/probe"

Package probe contains utilities for health probing, as well as health status information.

Index

Types

type Result

type Result string

Result is a string used to handle the results for probing container readiness/livenss

const (
	// Success Result
	Success Result = "success"
	// Warning Result. Logically success, but with additional debugging information attached.
	Warning Result = "warning"
	// Failure Result
	Failure Result = "failure"
	// Unknown Result
	Unknown Result = "unknown"
)

Source Files

doc.go probe.go

Directories

PathSynopsis
pkg/probe/exec
pkg/probe/http
pkg/probe/tcp
Version
v1.14.6
Published
Aug 16, 2019
Platform
js/wasm
Last checked
4 seconds ago

Tools for package owners.