Documentation ¶
Overview ¶
Package providerconfig provides a reconciler that manages the lifecycle of a ProviderConfig.
Index ¶
Constants ¶
const ( TypeTerminating xpv1.ConditionType = "Terminating" ReasonInUse xpv1.ConditionReason = "InUse" )
Condition types and reasons.
Variables ¶
This section is empty.
Functions ¶
func ControllerName ¶
ControllerName returns the recommended name for controllers that use this package to reconcile a particular kind of managed resource.
func Terminating ¶
Terminating indicates a ProviderConfig has been deleted, but that the deletion is being blocked because it is still in use.
Types ¶
type Reconciler ¶
type Reconciler struct {
// contains filtered or unexported fields
}
A Reconciler reconciles managed resources by creating and managing the lifecycle of an external resource, i.e. a resource in an external system such as a cloud provider API. Each controller must watch the managed resource kind for which it is responsible.
func NewReconciler ¶
func NewReconciler(m manager.Manager, of resource.ProviderConfigKinds, o ...ReconcilerOption) *Reconciler
NewReconciler returns a Reconciler of ProviderConfigs.
type ReconcilerOption ¶
type ReconcilerOption func(*Reconciler)
A ReconcilerOption configures a Reconciler.
func WithLogger ¶
func WithLogger(l logging.Logger) ReconcilerOption
WithLogger specifies how the Reconciler should log messages.
func WithRecorder ¶
func WithRecorder(er event.Recorder) ReconcilerOption
WithRecorder specifies how the Reconciler should record events.