Documentation
¶
Index ¶
Constants ¶
View Source
const ( // ConditionTypeProvisioned is a condition type indicating whether or // not the ControlPlane has been provisioned successfully. ConditionTypeProvisioned consts.ConditionType = "Provisioned" // ConditionTypeWatchNamespaceGrantValid is a condition type used to // indicate whether or not the ControlPlane has been granted permission to // watch resources in the requested namespaces. ConditionTypeWatchNamespaceGrantValid consts.ConditionType = "WatchNamespaceGrantValid" // ConditionTypeOptionsValid is a condition type used to indicate whether or not // the ControlPlane's options is valid by the checks of the operator. ConditionTypeOptionsValid consts.ConditionType = "OptionsValid" )
View Source
const ( // ConditionReasonProvisioningInProgress is a reason which indicates that a ControlPlane // is currently being provisioned. ConditionReasonProvisioningInProgress consts.ConditionReason = "ProvisioningInProgress" // ConditionReasonProvisioned is a reason which indicates that a ControlPlane // has been fully provisioned. ConditionReasonProvisioned consts.ConditionReason = "Provisioned" // ConditionReasonNoDataPlane is a reason which indicates that no DataPlane // has been provisioned. ConditionReasonNoDataPlane consts.ConditionReason = "NoDataPlane" // ConditionReasonMissingOwner is a reason which indicates that a ControlPlane // has no owner but its spec indicates that it should. ConditionReasonMissingOwner consts.ConditionReason = "MissingOwner" // ConditionReasonWatchNamespaceGrantInvalid is a reason which indicates that // WatchNamespaceGrants are invalid or missing for the ControlPlane to be able // to watch resources in requested namespaces. ConditionReasonWatchNamespaceGrantInvalid consts.ConditionReason = "WatchNamespaceGrantInvalid" // ConditionReasonWatchNamespaceGrantValid is a reason which indicates that // WatchNamespaceGrants are valid for the ControlPlane to be able to watch // resources in requested namespaces. ConditionReasonWatchNamespaceGrantValid consts.ConditionReason = "WatchNamespaceGrantValid" // ConditionReasonOptionsValid is a reason which indicates that the options // on the ControlPlane are valid. ConditionReasonOptionsValid consts.ConditionReason = "OptionsValid" // ConditionReasonOptionsInvalid is a reason which indicates that the options // on the ControlPlane are invalid. ConditionReasonOptionsInvalid consts.ConditionReason = "OptionsInvalid" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConditionReason ¶
type ConditionReason string
ConditionReason are the condition reasons for ControlPlane status conditions.
Click to show internal directories.
Click to hide internal directories.