Documentation
¶
Index ¶
Constants ¶
View Source
const ( // DatasourceReady indicates that the datasource is ready for use, allowing the import process to start. DatasourceReady DatasourceReadyReason = "DatasourceReady" // ContainerRegistrySecretNotFound indicates that the container registry secret was not found, which prevents the import process from starting. ContainerRegistrySecretNotFound DatasourceReadyReason = "ContainerRegistrySecretNotFound" // ImageNotReady indicates that the `VirtualImage` datasource is not ready yet, which prevents the import process from starting. ImageNotReady DatasourceReadyReason = "ImageNotReady" // ClusterImageNotReady indicates that the `ClusterVirtualImage` datasource is not ready, which prevents the import process from starting. ClusterImageNotReady DatasourceReadyReason = "ClusterImageNotReady" // VirtualDiskNotReady indicates that the `VirtualDisk` datasource is not ready, which prevents the import process from starting. VirtualDiskNotReady DatasourceReadyReason = "VirtualDiskNotReady" // VirtualDiskNotReadyForUse indicates that the `VirtualDisk` not ready for use, which prevents the import process from starting. VirtualDiskNotReadyForUse DatasourceReadyReason = "VirtualDiskNotReadyForUse" // VirtualDiskAttachedToVirtualMachine indicates that the `VirtualDisk` attached to `VirtualMachine`. VirtualDiskAttachedToVirtualMachine DatasourceReadyReason = "VirtualDiskAttachedToVirtualMachine" // VirtualDiskSnapshotNotReady indicates that the `VirtualDiskSnapshot` datasource is not ready, which prevents the import process from starting. VirtualDiskSnapshotNotReady DatasourceReadyReason = "VirtualDiskSnapshotNotReady" // WaitForUserUpload indicates that the `ClusterVirtualImage` is waiting for the user to upload a datasource for the import process to continue. WaitForUserUpload ReadyReason = "WaitForUserUpload" // WaitForUserUploadTimeout indicates that the user did not start the upload in time, so the import process has failed. WaitForUserUploadTimeout ReadyReason = "WaitForUserUploadTimeout" // Provisioning indicates that the provisioning process is currently in progress. Provisioning ReadyReason = "Provisioning" // ProvisioningNotStarted indicates that the provisioning process has not started yet. ProvisioningNotStarted ReadyReason = "ProvisioningNotStarted" // ProvisioningFailed indicates that the provisioning process has failed. ProvisioningFailed ReadyReason = "ProvisioningFailed" // ProvisioningFailedTerminally indicates that the provisioning process has failed permanently: retrying reproduces the same failure, so the provisioner is cleaned up and the failure is kept. ProvisioningFailedTerminally ReadyReason = "ProvisioningFailedTerminally" // Ready indicates that the import process is complete and the `ClusterVirtualImage` is ready for use. Ready ReadyReason = "Ready" // ImageLost indicates that the image in DVCR has been lost and the `ClusterVirtualImage` can no longer be used. ImageLost ReadyReason = "ImageLost" // AttachedToVirtualMachine indicates that the ClusterVirtualImage is attached to a VirtualMachine, which protects it from deletion. AttachedToVirtualMachine InUseReason = "AttachedToVirtualMachine" // NotInUse indicates that the ClusterVirtualImage is free for use. NotInUse InUseReason = "NotInUse" // CleanupPending indicates that the auxiliary resources of the ClusterVirtualImage are still being deleted. // A deletion held by a VirtualMachine is reported by the InUse condition instead. CleanupPending TerminatingReason = "CleanupPending" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DatasourceReadyReason ¶
type DatasourceReadyReason string
DatasourceReadyReason represents the various reasons for the DatasourceReady condition type.
func (DatasourceReadyReason) String ¶
func (s DatasourceReadyReason) String() string
type InUseReason ¶ added in v1.11.1
type InUseReason string
InUseReason represents the various reasons for the InUse condition type.
func (InUseReason) String ¶ added in v1.11.1
func (s InUseReason) String() string
type ReadyReason ¶
type ReadyReason string
ReadyReason represents the various reasons for the Ready condition type.
func (ReadyReason) String ¶
func (s ReadyReason) String() string
type TerminatingReason ¶ added in v1.11.1
type TerminatingReason string
TerminatingReason represents the various reasons for the Terminating condition type.
func (TerminatingReason) String ¶ added in v1.11.1
func (s TerminatingReason) String() string
type Type ¶
type Type string
Type represents the various condition types for the `ClusterVirtualImage`.
const ( // DatasourceReadyType indicates whether the datasource (for example, a `VirtualImage`) is ready, allowing the import process for the `ClusterVirtualImage` to start. DatasourceReadyType Type = "DatasourceReady" // ReadyType indicates whether the import process succeeded and the `ClusterVirtualImage` is ready for use. ReadyType Type = "Ready" // InUseType indicates whether the ClusterVirtualImage is attached to a VirtualMachine. InUseType Type = "InUse" // TerminatingType indicates that the ClusterVirtualImage is being deleted and reports what the deletion is waiting for. TerminatingType Type = "Terminating" )
Click to show internal directories.
Click to hide internal directories.