Documentation ¶
Index ¶
- Constants
- func NewController(ctx context.Context, cmw configmap.Watcher) *controller.Impl
- type Reconciler
- func (r *Reconciler) BuildAdapter(src v1alpha1.EventSource, sinkURI *apis.URL) *appsv1.Deployment
- func (r *Reconciler) FinalizeKind(ctx context.Context, o *v1alpha1.AzureBlobStorageSource) reconciler.Event
- func (r *Reconciler) RBACOwners(src v1alpha1.EventSource) ([]kmeta.OwnerRefable, error)
- func (r *Reconciler) ReconcileKind(ctx context.Context, o *v1alpha1.AzureBlobStorageSource) reconciler.Event
Constants ¶
View Source
const ( // ReasonEventHubCreated indicates that an Event Hub was created for receiving storage events. ReasonEventHubCreated = "EventHubCreated" // ReasonEventHubDeleted indicates that an Event Hub used for receiving storage events was deleted. ReasonEventHubDeleted = "EventHubDeleted" // ReasonFailedEventHub indicates a failure while synchronizing the Event Hub for receiving storage events. ReasonFailedEventHub = "FailedEventHub" // ReasonSubscribed indicates that an event subscription was enabled for a storage account. ReasonSubscribed = "Subscribed" // ReasonUnsubscribed indicates that an event subscription was removed for a storage account. ReasonUnsubscribed = "Unsubscribed" // ReasonFailedSubscribe indicates a failure while synchronizing an event subscription for a storage account. ReasonFailedSubscribe = "FailedSubscribe" // ReasonFailedUnsubscribe indicates a failure while removing an event subscription for a storage account. ReasonFailedUnsubscribe = "FailedUnsubscribe" )
Variables ¶
This section is empty.
Functions ¶
func NewController ¶
NewController creates a Reconciler for the event source and returns the result of NewImpl.
Types ¶
type Reconciler ¶
type Reconciler struct {
// contains filtered or unexported fields
}
Reconciler implements controller.Reconciler for the event source type.
func (*Reconciler) BuildAdapter ¶
func (r *Reconciler) BuildAdapter(src v1alpha1.EventSource, sinkURI *apis.URL) *appsv1.Deployment
BuildAdapter implements common.AdapterDeploymentBuilder.
func (*Reconciler) FinalizeKind ¶
func (r *Reconciler) FinalizeKind(ctx context.Context, o *v1alpha1.AzureBlobStorageSource) reconciler.Event
FinalizeKind is called when the resource is deleted.
func (*Reconciler) RBACOwners ¶
func (r *Reconciler) RBACOwners(src v1alpha1.EventSource) ([]kmeta.OwnerRefable, error)
RBACOwners implements common.AdapterDeploymentBuilder.
func (*Reconciler) ReconcileKind ¶
func (r *Reconciler) ReconcileKind(ctx context.Context, o *v1alpha1.AzureBlobStorageSource) reconciler.Event
ReconcileKind implements Interface.ReconcileKind.
Click to show internal directories.
Click to hide internal directories.