lifecycle

package
v1.0.22 Latest Latest
Warning

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

Go to latest
Published: Jun 25, 2022 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Failed

func Failed(ctx context.Context, r common.Reconciler, obj client.Object, issue error) (reconcile.Result, error)

Failed is a wrap that logs the error, updates the status, and does not requeue the request.

func Pending

func Pending(ctx context.Context, r common.Reconciler, obj client.Object, reason string) (reconcile.Result, error)

Pending is a wrapper that sets Phase to Pending and does not requeue the request.

func Running

func Running(ctx context.Context, r common.Reconciler, obj client.Object, reason string) (reconcile.Result, error)

Running is a wrapper that sets Phase to Running and does not requeue the request.

func Success

func Success(ctx context.Context, r common.Reconciler, obj client.Object, reason string) (reconcile.Result, error)

Success is a wrapper that sets Phase to Success and does not requeue the request.

Types

type Classifier

type Classifier struct {
	// contains filtered or unexported fields
}

func (*Classifier) Classify

func (in *Classifier) Classify(name string, obj client.Object)

func (*Classifier) Exclude

func (in *Classifier) Exclude(name string, obj client.Object)

Exclude registers a system service. Services classified by this function are not accounted in the lifecycle, unless they have failed.

func (Classifier) FailedJobs

func (in Classifier) FailedJobs() []client.Object

func (Classifier) FailedJobsList

func (in Classifier) FailedJobsList() []string

func (Classifier) FailedJobsNum

func (in Classifier) FailedJobsNum() int

func (Classifier) IsDeletable

func (in Classifier) IsDeletable(jobName string) (client.Object, bool)

IsDeletable returns if a service can be deleted or not. Deletable are only pending or running services, which belong to the SUT (not on the system(

func (Classifier) IsFailed

func (in Classifier) IsFailed(name string) bool

func (Classifier) IsPending

func (in Classifier) IsPending(jobName string) bool

func (Classifier) IsRunning

func (in Classifier) IsRunning(name string) bool

func (Classifier) IsSuccessful

func (in Classifier) IsSuccessful(name string) bool

func (Classifier) IsZero

func (in Classifier) IsZero() bool

func (Classifier) PendingJobs

func (in Classifier) PendingJobs() []client.Object

func (Classifier) PendingJobsList

func (in Classifier) PendingJobsList() []string

func (Classifier) PendingJobsNum

func (in Classifier) PendingJobsNum() int

func (*Classifier) Reset

func (in *Classifier) Reset()

func (Classifier) RunningJobs

func (in Classifier) RunningJobs() []client.Object

func (Classifier) RunningJobsList

func (in Classifier) RunningJobsList() []string

func (Classifier) RunningJobsNum

func (in Classifier) RunningJobsNum() int

func (Classifier) SuccessfulJobs

func (in Classifier) SuccessfulJobs() []client.Object

func (Classifier) SuccessfulJobsList

func (in Classifier) SuccessfulJobsList() []string

func (Classifier) SuccessfulJobsNum

func (in Classifier) SuccessfulJobsNum() int

type ClassifierReader

type ClassifierReader interface {
	IsZero() bool
	IsPending(jobName string) bool
	IsRunning(name string) bool
	IsSuccessful(name string) bool
	IsFailed(name string) bool

	// IsDeletable returns true if a job is deletable: it is pending or running
	IsDeletable(jobName string) (client.Object, bool)

	PendingJobs() []client.Object
	RunningJobs() []client.Object
	SuccessfulJobs() []client.Object
	FailedJobs() []client.Object

	PendingJobsNum() int
	RunningJobsNum() int
	SuccessfulJobsNum() int
	FailedJobsNum() int

	PendingJobsList() []string
	RunningJobsList() []string
	SuccessfulJobsList() []string
	FailedJobsList() []string
}

type ReconcileStatusAware

type ReconcileStatusAware interface {
	GetResourceVersion() string

	GetReconcileStatus() v1alpha1.Lifecycle
	SetReconcileStatus(v1alpha1.Lifecycle)
}

Jump to

Keyboard shortcuts

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