Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Log = log.Log.WithName("controller").WithName("integrationplatform")
Log --.
Functions ¶
Types ¶
type Action ¶
type Action interface { client.Injectable log.Injectable // a user friendly name for the action Name() string // returns true if the action can handle the integration platform CanHandle(platform *v1.IntegrationPlatform) bool // executes the handling function Handle(ctx context.Context, platform *v1.IntegrationPlatform) (*v1.IntegrationPlatform, error) }
Action --.
func NewCreateAction ¶
func NewCreateAction() Action
NewCreateAction returns the action that creates resources needed by the platform.
func NewInitializeAction ¶
func NewInitializeAction() Action
NewInitializeAction returns the action that initializes the integration platform when not provided by the user.
func NewMonitorAction ¶
func NewMonitorAction() Action
NewMonitorAction returns an action that monitors the integration platform after it's fully initialized.
Click to show internal directories.
Click to hide internal directories.