Documentation ¶
Index ¶
- Constants
- func NewSinkLessBroadcaster(broadcaster record.EventBroadcaster) record.EventBroadcaster
- func NotifyBuildError(ctx context.Context, c client.Client, recorder record.EventRecorder, ...)
- func NotifyBuildUpdated(ctx context.Context, c client.Client, recorder record.EventRecorder, ...)
- func NotifyIntegrationError(ctx context.Context, c client.Client, recorder record.EventRecorder, ...)
- func NotifyIntegrationKitError(ctx context.Context, c client.Client, recorder record.EventRecorder, ...)
- func NotifyIntegrationKitUpdated(ctx context.Context, c client.Client, recorder record.EventRecorder, ...)
- func NotifyIntegrationPlatformError(ctx context.Context, c client.Client, recorder record.EventRecorder, ...)
- func NotifyIntegrationPlatformUpdated(ctx context.Context, c client.Client, recorder record.EventRecorder, ...)
- func NotifyIntegrationUpdated(ctx context.Context, c client.Client, recorder record.EventRecorder, ...)
- func NotifyKameletBindingError(ctx context.Context, c client.Client, recorder record.EventRecorder, ...)
- func NotifyKameletBindingUpdated(ctx context.Context, c client.Client, recorder record.EventRecorder, ...)
- func NotifyKameletError(ctx context.Context, c client.Client, recorder record.EventRecorder, ...)
- func NotifyKameletUpdated(ctx context.Context, c client.Client, recorder record.EventRecorder, ...)
- type Injectable
Constants ¶
const ( // ReasonIntegrationPhaseUpdated -- ReasonIntegrationPhaseUpdated = "IntegrationPhaseUpdated" // ReasonIntegrationConditionChanged -- ReasonIntegrationConditionChanged = "IntegrationConditionChanged" // ReasonIntegrationError -- ReasonIntegrationError = "IntegrationError" // ReasonIntegrationKitPhaseUpdated -- ReasonIntegrationKitPhaseUpdated = "IntegrationKitPhaseUpdated" // ReasonIntegrationKitConditionChanged -- ReasonIntegrationKitConditionChanged = "IntegrationKitConditionChanged" // ReasonIntegrationKitError -- ReasonIntegrationKitError = "IntegrationKitError" // ReasonIntegrationPlatformPhaseUpdated -- ReasonIntegrationPlatformPhaseUpdated = "IntegrationPlatformPhaseUpdated" // ReasonIntegrationPlatformConditionChanged -- ReasonIntegrationPlatformConditionChanged = "IntegrationPlatformConditionChanged" // ReasonIntegrationPlatformError -- ReasonIntegrationPlatformError = "IntegrationPlatformError" // ReasonBuildPhaseUpdated -- ReasonBuildPhaseUpdated = "BuildPhaseUpdated" // ReasonBuildConditionChanged -- ReasonBuildConditionChanged = "BuildConditionChanged" // ReasonBuildError -- ReasonBuildError = "BuildError" // ReasonKameletError -- ReasonKameletError = "KameletError" // ReasonKameletConditionChanged -- ReasonKameletConditionChanged = "KameletConditionChanged" // ReasonKameletPhaseUpdated -- ReasonKameletPhaseUpdated = "KameletPhaseUpdated" // ReasonKameletBindingError -- ReasonKameletBindingError = "KameletBindingError" // ReasonKameletBindingConditionChanged -- ReasonKameletBindingConditionChanged = "KameletBindingConditionChanged" // ReasonKameletBindingPhaseUpdated -- ReasonKameletBindingPhaseUpdated = "KameletBindingPhaseUpdated" // ReasonRelatedObjectChanged -- ReasonRelatedObjectChanged = "ReasonRelatedObjectChanged" )
Variables ¶
This section is empty.
Functions ¶
func NewSinkLessBroadcaster ¶
func NewSinkLessBroadcaster(broadcaster record.EventBroadcaster) record.EventBroadcaster
func NotifyBuildError ¶
func NotifyBuildError(ctx context.Context, c client.Client, recorder record.EventRecorder, old, new *v1.Build, err error)
NotifyBuildError automatically generates error events when the build reconcile cycle phase has an error
func NotifyBuildUpdated ¶
func NotifyBuildUpdated(ctx context.Context, c client.Client, recorder record.EventRecorder, old, new *v1.Build)
NotifyBuildUpdated automatically generates events when a build changes
func NotifyIntegrationError ¶
func NotifyIntegrationError(ctx context.Context, c client.Client, recorder record.EventRecorder, old, new *v1.Integration, err error)
NotifyIntegrationError automatically generates error events when the integration reconcile cycle phase has an error
func NotifyIntegrationKitError ¶
func NotifyIntegrationKitError(ctx context.Context, c client.Client, recorder record.EventRecorder, old, new *v1.IntegrationKit, err error)
NotifyIntegrationKitError automatically generates error events when the integration kit reconcile cycle phase has an error
func NotifyIntegrationKitUpdated ¶
func NotifyIntegrationKitUpdated(ctx context.Context, c client.Client, recorder record.EventRecorder, old, new *v1.IntegrationKit)
NotifyIntegrationKitUpdated automatically generates events when an integration kit changes
func NotifyIntegrationPlatformError ¶
func NotifyIntegrationPlatformError(ctx context.Context, c client.Client, recorder record.EventRecorder, old, new *v1.IntegrationPlatform, err error)
NotifyIntegrationPlatformError automatically generates error events when the integration Platform reconcile cycle phase has an error
func NotifyIntegrationPlatformUpdated ¶
func NotifyIntegrationPlatformUpdated(ctx context.Context, c client.Client, recorder record.EventRecorder, old, new *v1.IntegrationPlatform)
NotifyIntegrationPlatformUpdated automatically generates events when an integration platform changes
func NotifyIntegrationUpdated ¶
func NotifyIntegrationUpdated(ctx context.Context, c client.Client, recorder record.EventRecorder, old, new *v1.Integration)
NotifyIntegrationUpdated automatically generates events when the integration changes
func NotifyKameletBindingError ¶
func NotifyKameletBindingError(ctx context.Context, c client.Client, recorder record.EventRecorder, old, new *v1alpha1.KameletBinding, err error)
NotifyKameletBindingError automatically generates error events when the kameletBinding reconcile cycle phase has an error
func NotifyKameletBindingUpdated ¶
func NotifyKameletBindingUpdated(ctx context.Context, c client.Client, recorder record.EventRecorder, old, new *v1alpha1.KameletBinding)
NotifyKameletBindingUpdated automatically generates events when a KameletBinding changes
func NotifyKameletError ¶
func NotifyKameletError(ctx context.Context, c client.Client, recorder record.EventRecorder, old, new *v1alpha1.Kamelet, err error)
NotifyKameletError automatically generates error events when the kamelet reconcile cycle phase has an error
func NotifyKameletUpdated ¶
func NotifyKameletUpdated(ctx context.Context, c client.Client, recorder record.EventRecorder, old, new *v1alpha1.Kamelet)
NotifyKameletUpdated automatically generates events when a Kamelet changes
Types ¶
type Injectable ¶
type Injectable interface {
InjectRecorder(recorder record.EventRecorder)
}