const podDeletionGracePeriodLabel …
const podTerminationGracePeriodLabel …
const containerHashLabel …
const containerRestartCountLabel …
const containerTerminationMessagePathLabel …
const containerTerminationMessagePolicyLabel …
const containerPreStopHandlerLabel …
const containerPortsLabel …
type labeledPodSandboxInfo …
type annotatedPodSandboxInfo …
type labeledContainerInfo …
type annotatedContainerInfo …
func newPodLabels(pod *v1.Pod) map[string]string { … }
func newPodAnnotations(pod *v1.Pod) map[string]string { … }
func newContainerLabels(container *v1.Container, pod *v1.Pod) map[string]string { … }
func newContainerAnnotations(container *v1.Container, pod *v1.Pod, restartCount int, opts *kubecontainer.RunContainerOptions) map[string]string { … }
func getPodSandboxInfoFromLabels(labels map[string]string) *labeledPodSandboxInfo { … }
func getPodSandboxInfoFromAnnotations(annotations map[string]string) *annotatedPodSandboxInfo { … }
func getContainerInfoFromLabels(labels map[string]string) *labeledContainerInfo { … }
func getContainerInfoFromAnnotations(annotations map[string]string) *annotatedContainerInfo { … }
func getStringValueFromLabel(labels map[string]string, label string) string { … }
func getIntValueFromLabel(labels map[string]string, label string) (int, error) { … }
func getUint64ValueFromLabel(labels map[string]string, label string) (uint64, error) { … }
func getInt64PointerFromLabel(labels map[string]string, label string) (*int64, error) { … }
func getJSONObjectFromLabel(labels map[string]string, label string, value interface{ … }