tests

package
v0.15.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 5, 2019 License: Apache-2.0 Imports: 50 Imported by: 0

README

Integration tests

Integration tests require a running Kubevirt cluster. Once you have a running Kubevirt cluster, you can use the -master and the -kubeconfig flags to point the tests to the cluster.

Run them on an arbitrary KubeVirt installation

cd tests # from the git repo root folder
go test -kubeconfig=path/to/my/config

Run them on one of the core KubeVirt providers

There is a make target to run this with the config taken from hack/config.sh:

# from the git repo root folder
make functest

Run them anywhere inside of container

# Create directory for data / results / kubectl binary
mkdir -p /tmp/kubevirt-tests-data
# Make sure that eveybody can write there
setfacl -m d:o:rwx /tmp/kubevirt-tests-data
setfacl -m o:rwx /tmp/kubevirt-tests-data

docker run \
    -v /tmp/kubevirt-tests-data:/home/kubevirt-tests/data:rw,z --rm \
    kubevirt/tests:latest \
        --kubeconfig=data/openshift-master.kubeconfig \
        --container-tag=latest \
        --container-prefix=docker.io/kubevirt \
        --test.timeout 180m \
        --junit-output=data/results/junit.xml \
        --deploy-testing-infra \
        --path-to-testing-infra-manifests=data/manifests

Documentation

Index

Constants

View Source
const (
	AlpineHttpUrl     = "http://cdi-http-import-server.kubevirt/images/alpine.iso"
	GuestAgentHttpUrl = "http://cdi-http-import-server.kubevirt/qemu-ga"
)
View Source
const (
	SubresourceServiceAccountName = "kubevirt-subresource-test-sa"
	AdminServiceAccountName       = "kubevirt-admin-test-sa"
	EditServiceAccountName        = "kubevirt-edit-test-sa"
	ViewServiceAccountName        = "kubevirt-view-test-sa"
)
View Source
const (
	// tests.NamespaceTestDefault is the default namespace, to test non-infrastructure related KubeVirt objects.
	NamespaceTestDefault = "kubevirt-test-default"
	// NamespaceTestAlternative is used to test controller-namespace independency.
	NamespaceTestAlternative = "kubevirt-test-alternative"
)
View Source
const (
	StorageClassLocal       = "local"
	StorageClassHostPath    = "host-path"
	StorageClassBlockVolume = "block-volume"
	StorageClassRhel        = "rhel"
	StorageClassWindows     = "windows"
)
View Source
const (
	HostPathBase   = "/tmp/hostImages/"
	HostPathAlpine = HostPathBase + "alpine"
	HostPathCustom = HostPathBase + "custom"
)
View Source
const (
	DiskAlpineHostPath = "disk-alpine-host-path"
	DiskWindows        = "disk-windows"
	DiskRhel           = "disk-rhel"
	DiskCustomHostPath = "disk-custom-host-path"
)
View Source
const (
	CustomHostPath = "custom-host-path"
)
View Source
const (
	SecretLabel = "kubevirt.io/secret"
)
View Source
const SubresourceTestLabel = "subresource-access-test-pod"
View Source
const TempDirPrefix = "kubevirt-test"
View Source
const VMIResource = "virtualmachineinstances"

Variables

View Source
var ContainerizedDataImporterNamespace = "cdi"
View Source
var DeployTestingInfrastructureFlag = false
View Source
var KubeVirtInstallNamespace string
View Source
var KubeVirtKubectlPath = ""
View Source
var KubeVirtOcPath = ""
View Source
var KubeVirtRepoPrefix = "kubevirt"
View Source
var KubeVirtVersionTag = "latest"
View Source
var KubeVirtVirtctlPath = ""
View Source
var PathToTestingInfrastrucureManifests = ""

Functions

func AddBootOrderToDisk added in v0.6.0

func AddBootOrderToDisk(vmi *v1.VirtualMachineInstance, diskName string, bootorder *uint) *v1.VirtualMachineInstance

func AddCloudInitData added in v0.14.0

func AddCloudInitData(vmi *v1.VirtualMachineInstance, name, userData, networkData string, b64encode bool)

func AddConfigMapDisk added in v0.9.0

func AddConfigMapDisk(vmi *v1.VirtualMachineInstance, configMapName string)

func AddEphemeralCdrom added in v0.12.0

func AddEphemeralCdrom(vmi *v1.VirtualMachineInstance, name string, bus string, image string) *v1.VirtualMachineInstance

func AddEphemeralDisk added in v0.3.0

func AddEphemeralDisk(vmi *v1.VirtualMachineInstance, name string, bus string, image string) *v1.VirtualMachineInstance

func AddEphemeralFloppy added in v0.3.0

func AddEphemeralFloppy(vmi *v1.VirtualMachineInstance, name string, image string) *v1.VirtualMachineInstance

func AddExplicitPodNetworkInterface added in v0.7.0

func AddExplicitPodNetworkInterface(vmi *v1.VirtualMachineInstance)

func AddHostDisk added in v0.9.4

func AddHostDisk(vmi *v1.VirtualMachineInstance, path string, diskType v1.HostDiskType, name string)

func AddPVCDisk added in v0.5.0

func AddPVCDisk(vmi *v1.VirtualMachineInstance, name string, bus string, claimName string) *v1.VirtualMachineInstance

func AddSecretDisk added in v0.9.0

func AddSecretDisk(vmi *v1.VirtualMachineInstance, secretName string)

func AddServiceAccountDisk added in v0.9.2

func AddServiceAccountDisk(vmi *v1.VirtualMachineInstance, serviceAccountName string)

func AddUserData added in v0.9.0

func AddUserData(vmi *v1.VirtualMachineInstance, name string, userData string)

func AfterTestSuitCleanup

func AfterTestSuitCleanup()

func ApplyRawManifest added in v0.12.0

func ApplyRawManifest(object unstructured.Unstructured) error

func BeforeAll added in v0.4.1

func BeforeAll(fn func())

func BeforeTestCleanup

func BeforeTestCleanup()

func BeforeTestSuitSetup

func BeforeTestSuitSetup()

func CheckForTextExpecter added in v0.6.0

func CheckForTextExpecter(vmi *v1.VirtualMachineInstance, expected []expect.Batcher, wait int) error

func ContainerDiskFor added in v0.11.0

func ContainerDiskFor(name ContainerDisk) string

ContainerDiskFor takes the name of an image and returns the full registry diks image path. Supported values are: cirros, fedora, alpine, guest-agent

func CreateBlockVolumePvAndPvc added in v0.9.2

func CreateBlockVolumePvAndPvc(name string, size string)

func CreateCommandWithNS added in v0.9.5

func CreateCommandWithNS(namespace string, cmdName string, args ...string) (string, *exec.Cmd, error)

func CreateConfigMap added in v0.9.0

func CreateConfigMap(name string, data map[string]string)

func CreateHostDiskImage added in v0.9.0

func CreateHostDiskImage(diskPath string) *k8sv1.Pod

func CreateHostPathPVC added in v0.11.0

func CreateHostPathPVC(os, size string)

func CreateHostPathPv added in v0.6.1

func CreateHostPathPv(osName string, hostPath string)

func CreateHostPathPvWithSize added in v0.9.6

func CreateHostPathPvWithSize(osName string, hostPath string, size string)

func CreateISCSIPvAndPvc added in v0.12.0

func CreateISCSIPvAndPvc(name string, size string, iscsiTargetIP string)

func CreateISCSITargetPOD added in v0.12.0

func CreateISCSITargetPOD(containerDiskName ContainerDisk) (iscsiTargetIP string)

func CreatePVC added in v0.5.0

func CreatePVC(os, size, storageClass string)

func CreateSecret added in v0.9.0

func CreateSecret(name string, data map[string]string)

func DeleteConfigMap added in v0.9.0

func DeleteConfigMap(name string)

func DeletePV added in v0.5.0

func DeletePV(os string)

func DeletePVC added in v0.5.0

func DeletePVC(os string)

func DeletePvAndPvc added in v0.9.2

func DeletePvAndPvc(name string)

func DeleteRawManifest added in v0.12.0

func DeleteRawManifest(object unstructured.Unstructured) error

func DeleteSecret added in v0.9.0

func DeleteSecret(name string)

func DeployTestingInfrastructure added in v0.12.0

func DeployTestingInfrastructure()

func DoScaleDeployment added in v0.12.0

func DoScaleDeployment(namespace string, name string, desired int32) (error, int32)

Do scale and retuns error, replicas-before.

func DoScaleVirtHandler added in v0.12.0

func DoScaleVirtHandler(namespace string, name string, selector map[string]string) (int32, map[string]string, int64, error)

func EnsureKVMPresent added in v0.7.0

func EnsureKVMPresent()

func ExecuteCommandOnPod added in v0.4.1

func ExecuteCommandOnPod(virtCli kubecli.KubevirtClient, pod *k8sv1.Pod, containerName string, command []string) (string, error)

func ExecuteCommandOnPodV2 added in v0.9.0

func ExecuteCommandOnPodV2(virtCli kubecli.KubevirtClient, pod *k8sv1.Pod, containerName string, command []string) (stdout, stderr string, err error)

func GenerateTemplateJson added in v0.7.0

func GenerateTemplateJson(template *vmsgen.Template) (string, error)

func GenerateVMIJson added in v0.6.1

func GenerateVMIJson(vmi *v1.VirtualMachineInstance) (string, error)

func GetAllSchedulableNodes added in v0.9.0

func GetAllSchedulableNodes(virtClient kubecli.KubevirtClient) *k8sv1.NodeList

func GetListOfManifests added in v0.12.0

func GetListOfManifests(pathToManifestsDir string) []string

func GetNodeCPUInfo added in v0.6.3

func GetNodeCPUInfo(nodeName string) string

GetNodeCPUInfo returns output of lscpu on the pod that runs on the specified node

func GetNodeLibvirtCapabilities added in v0.6.2

func GetNodeLibvirtCapabilities(nodeName string) string

GetNodeLibvirtCapabilities returns node libvirt capabilities

func GetNodeWithHugepages added in v0.6.1

func GetNodeWithHugepages(virtClient kubecli.KubevirtClient, hugepages k8sv1.ResourceName) *k8sv1.Node

func GetRunningPodByLabel added in v0.3.0

func GetRunningPodByLabel(label string, labelType string, namespace string) *k8sv1.Pod

func GetRunningPodByVirtualMachineInstance added in v0.8.0

func GetRunningPodByVirtualMachineInstance(vmi *v1.VirtualMachineInstance, namespace string) *k8sv1.Pod

func GetRunningVirtualMachineInstanceDomainXML added in v0.9.2

func GetRunningVirtualMachineInstanceDomainXML(virtClient kubecli.KubevirtClient, vmi *v1.VirtualMachineInstance) (string, error)

func GetVmPodName added in v0.15.0

func GetVmPodName(virtCli kubecli.KubevirtClient, vmi *v1.VirtualMachineInstance) string

func HasCDI added in v0.8.0

func HasCDI() bool

func IsOpenShift added in v0.12.0

func IsOpenShift() bool

func KubevirtFailHandler added in v0.8.0

func KubevirtFailHandler(message string, callerSkip ...int)

KubevirtFailHandler call ginkgo.Fail with printing the additional information

func LoggedInAlpineExpecter added in v0.6.0

func LoggedInAlpineExpecter(vmi *v1.VirtualMachineInstance) (expect.Expecter, error)

func LoggedInCirrosExpecter added in v0.3.0

func LoggedInCirrosExpecter(vmi *v1.VirtualMachineInstance) (expect.Expecter, error)

func LoggedInFedoraExpecter added in v0.10.0

func LoggedInFedoraExpecter(vmi *v1.VirtualMachineInstance) (expect.Expecter, error)

LoggedInFedoraExpecter return prepared and ready to use console expecter for Fedora test VM

func NewBool added in v0.3.0

func NewBool(x bool) *bool

func NewConsoleExpecter added in v0.0.4

func NewConsoleExpecter(virtCli kubecli.KubevirtClient, vmi *v1.VirtualMachineInstance, timeout time.Duration, opts ...expect.Option) (expect.Expecter, <-chan error, error)

func NewHelloWorldJob added in v0.6.0

func NewHelloWorldJob(host string, port string) *k8sv1.Pod

NewHelloWorldJob takes a DNS entry or an IP and a port which it will use create a pod which tries to contact the host on the provided port. It expects to receive "Hello World!" to succeed.

func NewHelloWorldJobHttp added in v0.15.0

func NewHelloWorldJobHttp(host string, port string) *k8sv1.Pod

NewHelloWorldJobHttp gets an IP address and a port, which it uses to create a pod. This pod tries to contact the host on the provided port, over HTTP. On success - it expects to receive "Hello World!".

func NewHelloWorldJobUDP added in v0.6.0

func NewHelloWorldJobUDP(host string, port string) *k8sv1.Pod

NewHelloWorldJobUDP takes a DNS entry or an IP and a port which it will use create a pod which tries to contact the host on the provided port. It expects to receive "Hello World!" to succeed. Note that in case of UDP, the server will not see the connection unless something is sent over it However, netcat does not work well with UDP and closes before the answer arrives, for that another netcat call is needed, this time as a UDP listener

func NewISCSIPvAndPvc added in v0.15.0

func NewISCSIPvAndPvc(name string, size string, iscsiTargetIP string, accessMode k8sv1.PersistentVolumeAccessMode)

func NewInt32 added in v0.0.3

func NewInt32(x int32) *int32

func NewRandomDataVolumeWithHttpImport added in v0.8.0

func NewRandomDataVolumeWithHttpImport(imageUrl string, namespace string) *cdiv1.DataVolume

func NewRandomMigration added in v0.9.2

func NewRandomMigration(vmiName string, namespace string) *v1.VirtualMachineInstanceMigration

func NewRandomReplicaSetFromVMI added in v0.6.1

func NewRandomReplicaSetFromVMI(vmi *v1.VirtualMachineInstance, replicas int32) *v1.VirtualMachineInstanceReplicaSet

func NewRandomVMI added in v0.6.1

func NewRandomVMI() *v1.VirtualMachineInstance

func NewRandomVMIWithBridgeInterfaceEphemeralDiskAndUserdata added in v0.8.0

func NewRandomVMIWithBridgeInterfaceEphemeralDiskAndUserdata(containerImage string, userData string, Ports []v1.Port) *v1.VirtualMachineInstance

func NewRandomVMIWithCDRom added in v0.6.1

func NewRandomVMIWithCDRom(claimName string) *v1.VirtualMachineInstance

func NewRandomVMIWithConfigMap added in v0.9.0

func NewRandomVMIWithConfigMap(configMapName string) *v1.VirtualMachineInstance

func NewRandomVMIWithCustomMacAddress added in v0.6.4

func NewRandomVMIWithCustomMacAddress() *v1.VirtualMachineInstance

func NewRandomVMIWithDataVolume added in v0.8.0

func NewRandomVMIWithDataVolume(dataVolumeName string) *v1.VirtualMachineInstance

func NewRandomVMIWithEFIBootloader added in v0.14.0

func NewRandomVMIWithEFIBootloader() *v1.VirtualMachineInstance

func NewRandomVMIWithEphemeralDisk added in v0.6.1

func NewRandomVMIWithEphemeralDisk(containerImage string) *v1.VirtualMachineInstance

func NewRandomVMIWithEphemeralDiskAndUserdata added in v0.6.1

func NewRandomVMIWithEphemeralDiskAndUserdata(containerImage string, userData string) *v1.VirtualMachineInstance

func NewRandomVMIWithEphemeralDiskAndUserdataHighMemory added in v0.6.1

func NewRandomVMIWithEphemeralDiskAndUserdataHighMemory(containerImage string, userData string) *v1.VirtualMachineInstance

func NewRandomVMIWithEphemeralDiskAndUserdataNetworkData added in v0.14.0

func NewRandomVMIWithEphemeralDiskAndUserdataNetworkData(containerImage, userData, networkData string, b64encode bool) *v1.VirtualMachineInstance

func NewRandomVMIWithEphemeralDiskHighMemory added in v0.6.1

func NewRandomVMIWithEphemeralDiskHighMemory(containerImage string) *v1.VirtualMachineInstance

func NewRandomVMIWithEphemeralPVC added in v0.6.1

func NewRandomVMIWithEphemeralPVC(claimName string) *v1.VirtualMachineInstance

func NewRandomVMIWithHostDisk added in v0.9.0

func NewRandomVMIWithHostDisk(diskPath string, diskType v1.HostDiskType, nodeName string) *v1.VirtualMachineInstance

func NewRandomVMIWithNS added in v0.6.1

func NewRandomVMIWithNS(namespace string) *v1.VirtualMachineInstance

func NewRandomVMIWithPVC added in v0.6.1

func NewRandomVMIWithPVC(claimName string) *v1.VirtualMachineInstance

func NewRandomVMIWithSecret added in v0.9.0

func NewRandomVMIWithSecret(secretName string) *v1.VirtualMachineInstance

func NewRandomVMIWithServiceAccount added in v0.9.2

func NewRandomVMIWithServiceAccount(serviceAccountName string) *v1.VirtualMachineInstance

func NewRandomVMIWithSlirpInterfaceEphemeralDiskAndUserdata added in v0.7.0

func NewRandomVMIWithSlirpInterfaceEphemeralDiskAndUserdata(containerImage string, userData string, Ports []v1.Port) *v1.VirtualMachineInstance

func NewRandomVMIWithWatchdog added in v0.6.1

func NewRandomVMIWithWatchdog() *v1.VirtualMachineInstance

func NewRandomVMIWithe1000NetworkInterface added in v0.6.1

func NewRandomVMIWithe1000NetworkInterface() *v1.VirtualMachineInstance

func NewRandomVMWithDataVolume added in v0.8.0

func NewRandomVMWithDataVolume(imageUrl string, namespace string) *v1.VirtualMachine

func NewRandomVirtualMachine added in v0.8.0

func NewRandomVirtualMachine(vmi *v1.VirtualMachineInstance, running bool) *v1.VirtualMachine

func NewRepeatableVirtctlCommand added in v0.4.0

func NewRepeatableVirtctlCommand(args ...string) func() error

func NewVirtctlCommand added in v0.4.0

func NewVirtctlCommand(args ...string) *cobra.Command

func NotDeleted added in v0.5.0

func NotDeleted(vmis *v1.VirtualMachineInstanceList) (notDeleted []v1.VirtualMachineInstance)

func PanicOnError

func PanicOnError(err error)

func ReadManifestYamlFile added in v0.12.0

func ReadManifestYamlFile(pathToManifest string) []unstructured.Unstructured

func RemoveHostDiskImage added in v0.9.0

func RemoveHostDiskImage(diskPath string, nodeName string)

func RenderHostPathJob added in v0.9.6

func RenderHostPathJob(jobName string, dir string, hostPathType k8sv1.HostPathType, mountPropagation k8sv1.MountPropagationMode, cmd []string, args []string) *k8sv1.Pod

func RenderJob added in v0.3.0

func RenderJob(name string, cmd []string, args []string) *k8sv1.Pod

func RunCommand added in v0.8.0

func RunCommand(cmdName string, args ...string) (string, string, error)

func RunCommandOnVmiPod added in v0.6.3

func RunCommandOnVmiPod(vmi *v1.VirtualMachineInstance, command []string) string

RunCommandOnVmiPod runs specified command on the virt-launcher pod

func RunCommandPipe added in v0.9.2

func RunCommandPipe(commands ...[]string) (string, string, error)

func RunCommandPipeWithNS added in v0.9.2

func RunCommandPipeWithNS(namespace string, commands ...[]string) (string, string, error)

func RunCommandWithNS added in v0.9.2

func RunCommandWithNS(namespace string, cmdName string, args ...string) (string, string, error)

func RunVMI added in v0.9.0

func RunVMI(vmi *v1.VirtualMachineInstance, timeout int) *v1.VirtualMachineInstance

func RunVMIAndExpectLaunch added in v0.9.0

func RunVMIAndExpectLaunch(vmi *v1.VirtualMachineInstance, withAuth bool, timeout int) *v1.VirtualMachineInstance

func SkipIfNoCmd added in v0.8.0

func SkipIfNoCmd(cmdName string)

func SkipIfNoRhelImage added in v0.9.0

func SkipIfNoRhelImage(virtClient kubecli.KubevirtClient)

func SkipIfNoSriovDevicePlugin added in v0.11.0

func SkipIfNoSriovDevicePlugin(virtClient kubecli.KubevirtClient)

func SkipIfNoWindowsImage added in v0.4.1

func SkipIfNoWindowsImage(virtClient kubecli.KubevirtClient)

func SkipIfNotUseNetworkPolicy added in v0.9.0

func SkipIfNotUseNetworkPolicy(virtClient kubecli.KubevirtClient)

func SkipIfOpenShift added in v0.8.0

func SkipIfOpenShift(message string)

func SkipIfUseFlannel added in v0.9.0

func SkipIfUseFlannel(virtClient kubecli.KubevirtClient)

func SkipIfVersionBelow added in v0.7.0

func SkipIfVersionBelow(message string, expectedVersion string)

SkipIfVersionBelow will skip tests if it runs on an environment with k8s version below specified

func StartHTTPServer added in v0.11.0

func StartHTTPServer(vmi *v1.VirtualMachineInstance, port int)

func StartTCPServer added in v0.11.0

func StartTCPServer(vmi *v1.VirtualMachineInstance, port int)

func StartVirtualMachine added in v0.8.0

func StartVirtualMachine(vm *v1.VirtualMachine) *v1.VirtualMachine

func StartVmOnNode added in v0.6.3

func StartVmOnNode(vmi *v1.VirtualMachineInstance, nodeName string)

StartVmOnNode starts a VMI on the specified node

func StopVirtualMachine added in v0.8.0

func StopVirtualMachine(vm *v1.VirtualMachine) *v1.VirtualMachine

func UnfinishedVMIPodSelector added in v0.6.1

func UnfinishedVMIPodSelector(vmi *v1.VirtualMachineInstance) metav1.ListOptions

func WaitForAllPodsReady added in v0.12.0

func WaitForAllPodsReady(timeout time.Duration, listOptions metav1.ListOptions)

func WaitForSuccessfulDataVolumeImport added in v0.12.0

func WaitForSuccessfulDataVolumeImport(obj runtime.Object, seconds int)

Block until DataVolume succeeds.

func WaitForSuccessfulVMIStart added in v0.6.1

func WaitForSuccessfulVMIStart(vmi runtime.Object) string

func WaitForSuccessfulVMIStartIgnoreWarnings added in v0.6.1

func WaitForSuccessfulVMIStartIgnoreWarnings(vmi runtime.Object) string

func WaitForSuccessfulVMIStartWithTimeout added in v0.6.1

func WaitForSuccessfulVMIStartWithTimeout(vmi runtime.Object, seconds int) (nodeName string)

func WaitForVirtualMachineToDisappearWithTimeout added in v0.5.0

func WaitForVirtualMachineToDisappearWithTimeout(vmi *v1.VirtualMachineInstance, seconds int)

func WaitUntilVMIReady added in v0.8.0

func WaitUntilVMIReady(vmi *v1.VirtualMachineInstance, expecterFactory VMIExpecterFactory) *v1.VirtualMachineInstance

func WaitUntilVMIReadyWithNamespace added in v0.8.0

func WaitUntilVMIReadyWithNamespace(namespace string, vmi *v1.VirtualMachineInstance, expecterFactory VMIExpecterFactory) *v1.VirtualMachineInstance

func WipeTestingInfrastructure added in v0.12.0

func WipeTestingInfrastructure()

Types

type ContainerDisk added in v0.11.0

type ContainerDisk string
const (
	ContainerDiskCirros ContainerDisk = "cirros"
	ContainerDiskAlpine ContainerDisk = "alpine"
	ContainerDiskFedora ContainerDisk = "fedora-cloud"
	ContainerDiskVirtio ContainerDisk = "virtio-container-disk"
)

type EventType

type EventType string
const (
	NormalEvent  EventType = "Normal"
	WarningEvent EventType = "Warning"
)

type ObjectEventWatcher

type ObjectEventWatcher struct {
	// contains filtered or unexported fields
}

func NewObjectEventWatcher

func NewObjectEventWatcher(object runtime.Object) *ObjectEventWatcher

func (*ObjectEventWatcher) FailOnWarnings

func (w *ObjectEventWatcher) FailOnWarnings() *ObjectEventWatcher

func (*ObjectEventWatcher) SinceNow

func (w *ObjectEventWatcher) SinceNow() *ObjectEventWatcher

SinceNow sets a watch starting point for events, from the moment on the connection to the apiserver was established.

func (*ObjectEventWatcher) SinceObjectResourceVersion

func (w *ObjectEventWatcher) SinceObjectResourceVersion(object runtime.Object) *ObjectEventWatcher

SinceObjectResourceVersion takes the resource version of the passed in runtime object and takes it as the starting point for all events to watch for.

func (*ObjectEventWatcher) SinceResourceVersion

func (w *ObjectEventWatcher) SinceResourceVersion(rv string) *ObjectEventWatcher

SinceResourceVersion sets the passed in resourceVersion as the starting point for all events to watch for.

func (*ObjectEventWatcher) SinceWatchedObjectResourceVersion

func (w *ObjectEventWatcher) SinceWatchedObjectResourceVersion() *ObjectEventWatcher

SinceWatchedObjectResourceVersion takes the resource version of the runtime object which is watched, and takes it as the starting point for all events to watch for.

func (*ObjectEventWatcher) Timeout

func (w *ObjectEventWatcher) Timeout(duration time.Duration) *ObjectEventWatcher

func (*ObjectEventWatcher) WaitFor

func (w *ObjectEventWatcher) WaitFor(stopChan chan struct{}, eventType EventType, reason interface{}) (e *k8sv1.Event)

func (*ObjectEventWatcher) WaitNotFor added in v0.11.0

func (w *ObjectEventWatcher) WaitNotFor(stopChan chan struct{}, eventType EventType, reason interface{}) (e *k8sv1.Event)

func (*ObjectEventWatcher) Watch

func (w *ObjectEventWatcher) Watch(abortChan chan struct{}, processFunc ProcessFunc)

type ProcessFunc

type ProcessFunc func(event *k8sv1.Event) (done bool)

type VMIExpecterFactory added in v0.6.1

type VMIExpecterFactory func(*v1.VirtualMachineInstance) (expect.Expecter, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL