Documentation
¶
Index ¶
- Constants
- 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, ...)
- 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" // ReasonRelatedObjectChanged -- ReasonRelatedObjectChanged = "ReasonRelatedObjectChanged" )
Variables ¶
This section is empty.
Functions ¶
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
Types ¶
type Injectable ¶
type Injectable interface {
InjectRecorder(recorder record.EventRecorder)
}