integration

package
v1.9.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 17, 2022 License: Apache-2.0 Imports: 47 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Log = log.Log.WithName("controller").WithName("integration")

Log --.

Functions

func Add

func Add(mgr manager.Manager) error

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
	CanHandle(integration *v1.Integration) bool

	// executes the handling function
	Handle(ctx context.Context, integration *v1.Integration) (*v1.Integration, error)
}

Action --.

func NewInitializeAction

func NewInitializeAction() Action

NewInitializeAction creates a new initialize action.

func NewMonitorAction

func NewMonitorAction() Action

func NewPlatformSetupAction

func NewPlatformSetupAction() Action

NewPlatformSetupAction creates a new platform-setup action.

type HealthCheck added in v1.8.0

type HealthCheck struct {
	Status HealthCheckState      `json:"state,omitempty"`
	Checks []HealthCheckResponse `json:"checks,omitempty"`
}

type HealthCheckResponse added in v1.8.0

type HealthCheckResponse struct {
	Name   string                 `json:"name,omitempty"`
	Status HealthCheckState       `json:"state,omitempty"`
	Data   map[string]interface{} `json:"data,omitempty"`
}

type HealthCheckState added in v1.8.0

type HealthCheckState string
const (
	HealthCheckStateDown HealthCheckState = "DOWN"
	HealthCheckStateUp   HealthCheckState = "UP"
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL