package fake

import "k8s.io/kubernetes/pkg/scheduler/internal/cache/fake"

Index

Types

type Cache

type Cache struct {
	AssumeFunc       func(*v1.Pod)
	ForgetFunc       func(*v1.Pod)
	IsAssumedPodFunc func(*v1.Pod) bool
	GetPodFunc       func(*v1.Pod) *v1.Pod
}

Cache is used for testing

func (*Cache) AddNode

func (c *Cache) AddNode(node *v1.Node) error

AddNode is a fake method for testing.

func (*Cache) AddPod

func (c *Cache) AddPod(pod *v1.Pod) error

AddPod is a fake method for testing.

func (*Cache) AssumePod

func (c *Cache) AssumePod(pod *v1.Pod) error

AssumePod is a fake method for testing.

func (*Cache) Dump

func (c *Cache) Dump() *internalcache.Dump

Dump is a fake method for testing.

func (*Cache) FilteredList

func (c *Cache) FilteredList(filter schedulerlisters.PodFilter, selector labels.Selector) ([]*v1.Pod, error)

FilteredList is a fake method for testing.

func (*Cache) FinishBinding

func (c *Cache) FinishBinding(pod *v1.Pod) error

FinishBinding is a fake method for testing.

func (*Cache) ForgetPod

func (c *Cache) ForgetPod(pod *v1.Pod) error

ForgetPod is a fake method for testing.

func (*Cache) GetNodeInfo

func (c *Cache) GetNodeInfo(nodeName string) (*v1.Node, error)

GetNodeInfo is a fake method for testing.

func (*Cache) GetPod

func (c *Cache) GetPod(pod *v1.Pod) (*v1.Pod, error)

GetPod is a fake method for testing.

func (*Cache) IsAssumedPod

func (c *Cache) IsAssumedPod(pod *v1.Pod) (bool, error)

IsAssumedPod is a fake method for testing.

func (*Cache) List

func (c *Cache) List(s labels.Selector) ([]*v1.Pod, error)

List is a fake method for testing.

func (*Cache) ListNodes

func (c *Cache) ListNodes() []*v1.Node

ListNodes is a fake method for testing.

func (*Cache) RemoveNode

func (c *Cache) RemoveNode(node *v1.Node) error

RemoveNode is a fake method for testing.

func (*Cache) RemovePod

func (c *Cache) RemovePod(pod *v1.Pod) error

RemovePod is a fake method for testing.

func (*Cache) UpdateNode

func (c *Cache) UpdateNode(oldNode, newNode *v1.Node) error

UpdateNode is a fake method for testing.

func (*Cache) UpdatePod

func (c *Cache) UpdatePod(oldPod, newPod *v1.Pod) error

UpdatePod is a fake method for testing.

func (*Cache) UpdateSnapshot

func (c *Cache) UpdateSnapshot(snapshot *internalcache.Snapshot) error

UpdateSnapshot is a fake method for testing.

Source Files

fake_cache.go

Version
v1.18.1
Published
Apr 8, 2020
Platform
linux/amd64
Imports
4 packages
Last checked
2 hours ago

Tools for package owners.