diff --git a/api/v1alpha1/condition_consts.go b/api/v1alpha1/condition_consts.go index 502508f..df9425a 100644 --- a/api/v1alpha1/condition_consts.go +++ b/api/v1alpha1/condition_consts.go @@ -37,6 +37,14 @@ const ( VirtualMachineImageNotFoundReason = "VirtualMachineImageNotFound" ) +const ( + // DeployedCondition exposes the deployment status of a VirtualMachine on the infrastructure provider. + DeployedCondition ConditionType = "Deployed" + + // DeployFailedReason (Severity=Error) documents that the deployment of the VirtualMachine was not successful. + DeployFailedReason = "DeployFailed" +) + const ( // GuestCustomizationCondition exposes the status of guest customization from within the guest OS, when available. GuestCustomizationCondition ConditionType = "GuestCustomization"