Documentation ¶
Index ¶
- Constants
- func GetPodFullName(pod *v1.Pod) string
- func GetPodPriority(pod *v1.Pod) int32
- func GetUsedPorts(pods ...*v1.Pod) map[string]bool
- func HigherPriorityPod(pod1, pod2 interface{}) bool
- func PodPriorityEnabled() bool
- type LessFunc
- type PodBackoff
- type SortableList
- type TestGroup
- func (g TestGroup) Codec() runtime.Codec
- func (g TestGroup) ResourcePath(resource, namespace, name string) string
- func (g TestGroup) ResourcePathWithPrefix(prefix, resource, namespace, name string) string
- func (g TestGroup) SelfLink(resource, name string) string
- func (g TestGroup) SubResourcePath(resource, namespace, name, sub string) string
Constants ¶
const DefaultBindAllHostIP = "0.0.0.0"
Variables ¶
This section is empty.
Functions ¶
func GetPodFullName ¶ added in v1.8.0
GetPodFullName returns a name that uniquely identifies a pod.
func GetPodPriority ¶ added in v1.8.0
GetPodPriority return priority of the given pod.
func GetUsedPorts ¶ added in v1.7.0
GetUsedPorts returns the used host ports of Pods: if 'port' was used, a 'port:true' pair will be in the result; but it does not resolve port conflict.
func HigherPriorityPod ¶ added in v1.8.0
func HigherPriorityPod(pod1, pod2 interface{}) bool
HigherPriorityPod return true when priority of the first pod is higher than the second one. It takes arguments of the type "interface{}" to be used with SortableList, but expects those arguments to be *v1.Pod.
func PodPriorityEnabled ¶ added in v1.9.0
func PodPriorityEnabled() bool
PodPriorityEnabled indicates whether pod priority feature is enabled.
Types ¶
type LessFunc ¶ added in v1.8.0
type LessFunc func(item1, item2 interface{}) bool
LessFunc is a function that receives two items and returns true if the first item should be placed before the second one when the list is sorted.
type PodBackoff ¶
type PodBackoff struct {
// contains filtered or unexported fields
}
func CreateDefaultPodBackoff ¶
func CreateDefaultPodBackoff() *PodBackoff
func CreatePodBackoff ¶
func CreatePodBackoff(defaultDuration, maxDuration time.Duration) *PodBackoff
func CreatePodBackoffWithClock ¶
func CreatePodBackoffWithClock(defaultDuration, maxDuration time.Duration, clock clock) *PodBackoff
func (*PodBackoff) Gc ¶
func (p *PodBackoff) Gc()
func (*PodBackoff) GetEntry ¶
func (p *PodBackoff) GetEntry(podID ktypes.NamespacedName) *backoffEntry
func (*PodBackoff) MaxDuration ¶
func (p *PodBackoff) MaxDuration() time.Duration
type SortableList ¶ added in v1.8.0
type SortableList struct { Items []interface{} CompFunc LessFunc }
SortableList is a list that implements sort.Interface.
func (*SortableList) Len ¶ added in v1.8.0
func (l *SortableList) Len() int
func (*SortableList) Less ¶ added in v1.8.0
func (l *SortableList) Less(i, j int) bool
func (*SortableList) Sort ¶ added in v1.8.0
func (l *SortableList) Sort()
Sort sorts the items in the list using the given CompFunc. Item1 is placed before Item2 when CompFunc(Item1, Item2) returns true.
func (*SortableList) Swap ¶ added in v1.8.0
func (l *SortableList) Swap(i, j int)
type TestGroup ¶ added in v1.8.0
type TestGroup struct {
// contains filtered or unexported fields
}
func (TestGroup) Codec ¶ added in v1.8.0
Codec returns the codec for the API version to test against, as set by the KUBE_TEST_API_TYPE env var.
func (TestGroup) ResourcePath ¶ added in v1.8.0
ResourcePath returns the appropriate path for the given resource, namespace and name. For example, this is of the form: /api/v1/namespaces/foo/pods/pod0 for v1.
func (TestGroup) ResourcePathWithPrefix ¶ added in v1.8.0
ResourcePathWithPrefix returns the appropriate path for the given prefix (watch, proxy, redirect, etc), resource, namespace and name. For ex, this is of the form: /api/v1/watch/namespaces/foo/pods/pod0 for v1.
func (TestGroup) SelfLink ¶ added in v1.8.0
SelfLink returns a self link that will appear to be for the version Version(). 'resource' should be the resource path, e.g. "pods" for the Pod type. 'name' should be empty for lists.
func (TestGroup) SubResourcePath ¶ added in v1.8.0
SubResourcePath returns the appropriate path for the given resource, namespace, name and subresource.