type podsByID …
func (b podsByID) Len() int { … }
func (b podsByID) Swap(i, j int) { … }
func (b podsByID) Less(i, j int) bool { … }
type containersByID …
func (b containersByID) Len() int { … }
func (b containersByID) Swap(i, j int) { … }
func (b containersByID) Less(i, j int) bool { … }
type podSandboxByCreated …
func (p podSandboxByCreated) Len() int { … }
func (p podSandboxByCreated) Swap(i, j int) { … }
func (p podSandboxByCreated) Less(i, j int) bool { … }
type containerStatusByCreated …
func (c containerStatusByCreated) Len() int { … }
func (c containerStatusByCreated) Swap(i, j int) { … }
func (c containerStatusByCreated) Less(i, j int) bool { … }
func toKubeContainerState(state runtimeapi.ContainerState) kubecontainer.State { … }
func toRuntimeProtocol(protocol v1.Protocol) runtimeapi.Protocol { … }
func (m *kubeGenericRuntimeManager) toKubeContainer(c *runtimeapi.Container) (*kubecontainer.Container, error) { … }
func (m *kubeGenericRuntimeManager) sandboxToKubeContainer(s *runtimeapi.PodSandbox) (*kubecontainer.Container, error) { … }
func (m *kubeGenericRuntimeManager) getImageUser(ctx context.Context, image string) (*int64, string, error) { … }
func isInitContainerFailed(status *kubecontainer.Status) bool { … }
func getStableKey(pod *v1.Pod, container *v1.Container) string { … }
const logPathDelimiter …
func buildContainerLogsPath(containerName string, restartCount int) string { … }
func BuildContainerLogsDirectory(podLogsDir, podNamespace, podName string, podUID types.UID, containerName string) string { … }
func BuildPodLogsDirectory(podLogsDir, podNamespace, podName string, podUID types.UID) string { … }
func parsePodUIDFromLogsDirectory(name string) types.UID { … }
func toKubeRuntimeStatus(status *runtimeapi.RuntimeStatus, handlers []*runtimeapi.RuntimeHandler, features *runtimeapi.RuntimeFeatures) *kubecontainer.RuntimeStatus { … }
func fieldSeccompProfile(scmp *v1.SeccompProfile, profileRootPath string, fallbackToRuntimeDefault bool) (*runtimeapi.SecurityProfile, error) { … }
func (m *kubeGenericRuntimeManager) getSeccompProfile(annotations map[string]string, containerName string,
podSecContext *v1.PodSecurityContext, containerSecContext *v1.SecurityContext, fallbackToRuntimeDefault bool) (*runtimeapi.SecurityProfile, error) { … }
func getAppArmorProfile(pod *v1.Pod, container *v1.Container) (*runtimeapi.SecurityProfile, string, error) { … }