type fakeManager …
func (m *fakeManager) Start() { … }
func (m *fakeManager) GetPodStatus(uid types.UID) (v1.PodStatus, bool) { … }
func (m *fakeManager) SetPodStatus(pod *v1.Pod, status v1.PodStatus) { … }
func (m *fakeManager) SetContainerReadiness(podUID types.UID, containerID kubecontainer.ContainerID, ready bool) { … }
func (m *fakeManager) SetContainerStartup(podUID types.UID, containerID kubecontainer.ContainerID, started bool) { … }
func (m *fakeManager) TerminatePod(pod *v1.Pod) { … }
func (m *fakeManager) RemoveOrphanedStatuses(podUIDs map[types.UID]bool) { … }
func (m *fakeManager) GetContainerResourceAllocation(podUID string, containerName string) (v1.ResourceRequirements, bool) { … }
func (m *fakeManager) GetPodResizeStatus(podUID string) (v1.PodResizeStatus, bool) { … }
func (m *fakeManager) UpdatePodFromAllocation(pod *v1.Pod) (*v1.Pod, bool) { … }
func (m *fakeManager) SetPodAllocation(pod *v1.Pod) error { … }
func (m *fakeManager) SetPodResizeStatus(podUID types.UID, resizeStatus v1.PodResizeStatus) error { … }
func NewFakeManager() Manager { … }