kubernetes/test/e2e/common/node/container.go

const ContainerStatusRetryTimeout

const ContainerStatusPollInterval

type ConformanceContainer

// Create creates the defined conformance container
func (cc *ConformanceContainer) Create(ctx context.Context) {}

// Delete deletes the defined conformance container
func (cc *ConformanceContainer) Delete(ctx context.Context) error {}

// IsReady returns whether this container is ready and error if any
func (cc *ConformanceContainer) IsReady(ctx context.Context) (bool, error) {}

// GetPhase returns the phase of the pod lifecycle and error if any
func (cc *ConformanceContainer) GetPhase(ctx context.Context) (v1.PodPhase, error) {}

// GetStatus returns the details of the current status of this container and error if any
func (cc *ConformanceContainer) GetStatus(ctx context.Context) (v1.ContainerStatus, error) {}

// Present returns whether this pod is present and error if any
func (cc *ConformanceContainer) Present(ctx context.Context) (bool, error) {}

type ContainerState

const ContainerStateWaiting

const ContainerStateRunning

const ContainerStateTerminated

const ContainerStateUnknown

// GetContainerState returns current state the container represents among its lifecycle
func GetContainerState(state v1.ContainerState) ContainerState {}