Documentation
¶
Index ¶
Constants ¶
View Source
const ( // The result types and descriptions for processing failures. ManifestProcessingApplyResultTypeDecodingErred manifestProcessingAppliedResultType = "DecodingErred" ManifestProcessingApplyResultTypeFoundGenerateNames manifestProcessingAppliedResultType = "FoundGenerateNames" ManifestProcessingApplyResultTypeDuplicated manifestProcessingAppliedResultType = "Duplicated" ManifestProcessingApplyResultTypeFailedToFindObjInMemberCluster manifestProcessingAppliedResultType = "FailedToFindObjInMemberCluster" ManifestProcessingApplyResultTypeFailedToTakeOver manifestProcessingAppliedResultType = "FailedToTakeOver" ManifestProcessingApplyResultTypeNotTakenOver manifestProcessingAppliedResultType = "NotTakenOver" ManifestProcessingApplyResultTypeFailedToRunDriftDetection manifestProcessingAppliedResultType = "FailedToRunDriftDetection" ManifestProcessingApplyResultTypeFoundDrifts manifestProcessingAppliedResultType = "FoundDrifts" ManifestProcessingApplyResultTypeFailedToApply manifestProcessingAppliedResultType = "FailedToApply" // The result type and description for partially successfully processing attempts. ManifestProcessingApplyResultTypeAppliedWithFailedDriftDetection manifestProcessingAppliedResultType = "AppliedWithFailedDriftDetection" ManifestProcessingApplyResultTypeAppliedWithFailedDriftDetectionDescription = "Manifest has been applied successfully, but drift detection has failed" // The result type and description for successful processing attempts. ManifestProcessingApplyResultTypeApplied manifestProcessingAppliedResultType = "Applied" ManifestProcessingApplyResultTypeAppliedDescription = "Manifest has been applied successfully" // A special result type for the case where no apply is performed (i.e., the ReportDiff mode). ManifestProcessingApplyResultTypeNoApplyPerformed manifestProcessingAppliedResultType = "Skipped" )
View Source
const ( // The result type for availability check being skipped. ManifestProcessingAvailabilityResultTypeSkipped ManifestProcessingAvailabilityResultType = "Skipped" // The result type for availability check failures. ManifestProcessingAvailabilityResultTypeFailed ManifestProcessingAvailabilityResultType = "Failed" ManifestProcessingAvailabilityResultTypeFailedDescription = "Failed to track the availability of the applied manifest (error = %s)" // The result types for completed availability checks. ManifestProcessingAvailabilityResultTypeAvailable ManifestProcessingAvailabilityResultType = "Available" ManifestProcessingAvailabilityResultTypeNotYetAvailable ManifestProcessingAvailabilityResultType = "NotYetAvailable" ManifestProcessingAvailabilityResultTypeNotTrackable ManifestProcessingAvailabilityResultType = "NotTrackable" ManifestProcessingAvailabilityResultTypeAvailableDescription = "Manifest is available" ManifestProcessingAvailabilityResultTypeNotYetAvailableDescription = "Manifest is not yet available; Fleet will check again later" ManifestProcessingAvailabilityResultTypeNotTrackableDescription = "Manifest's availability is not trackable; Fleet assumes that the applied manifest is available" )
View Source
const ( // The result type for the cases where ReportDiff mode is not enabled. ManifestProcessingReportDiffResultTypeNotEnabled ManifestProcessingReportDiffResultType = "NotEnabled" // The result type for diff reporting failures. ManifestProcessingReportDiffResultTypeFailed ManifestProcessingReportDiffResultType = "Failed" ManifestProcessingReportDiffResultTypeFailedDescription = "Failed to report the diff between the hub cluster and the member cluster (error = %s)" // The result type for completed diff reportings. ManifestProcessingReportDiffResultTypeFoundDiff ManifestProcessingReportDiffResultType = "FoundDiff" ManifestProcessingReportDiffResultTypeNoDiffFound ManifestProcessingReportDiffResultType = "NoDiffFound" ManifestProcessingReportDiffResultTypeNoDiffFoundDescription = "No diff has been found between the hub cluster and the member cluster" ManifestProcessingReportDiffResultTypeFoundDiffDescription = "Diff has been found between the hub cluster and the member cluster" )
View Source
const ( // A list of condition related values. ManifestAppliedCondPreparingToProcessReason = "PreparingToProcess" ManifestAppliedCondPreparingToProcessMessage = "The manifest is being prepared for processing." )
Variables ¶
View Source
var ( // Some exported reasons. Currently only the untrackable reason is being actively used. WorkNotTrackableReason = string(ManifestProcessingAvailabilityResultTypeNotTrackable) )
Functions ¶
This section is empty.
Types ¶
type ManifestProcessingAvailabilityResultType ¶
type ManifestProcessingAvailabilityResultType string
type ManifestProcessingReportDiffResultType ¶
type ManifestProcessingReportDiffResultType string
type Reconciler ¶
type Reconciler struct {
// contains filtered or unexported fields
}
Reconciler reconciles a Work object.
func NewReconciler ¶
func NewReconciler( hubClient client.Client, workNameSpace string, spokeDynamicClient dynamic.Interface, spokeClient client.Client, restMapper meta.RESTMapper, recorder record.EventRecorder, concurrentReconciles int, workerCount int, availabilityCheckRequestAfter time.Duration, driftCheckRequestAfter time.Duration, ) *Reconciler
func (*Reconciler) Join ¶
func (r *Reconciler) Join(_ context.Context) error
Join starts to reconcile
func (*Reconciler) SetupWithManager ¶
func (r *Reconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager wires up the controller.
Click to show internal directories.
Click to hide internal directories.