lifecycle

package
v1.0.21 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Failed

func Failed(ctx context.Context, r utils.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 utils.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 utils.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 utils.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 added in v1.0.16

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

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

func (Classifier) FailedJobs

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

func (Classifier) FailedJobsList added in v1.0.21

func (in Classifier) FailedJobsList() []string

func (Classifier) FailedJobsNum added in v1.0.21

func (in Classifier) FailedJobsNum() int

func (Classifier) IsDeletable added in v1.0.17

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

func (Classifier) IsFailed

func (in Classifier) IsFailed(name string) bool

func (Classifier) IsPending added in v1.0.16

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 added in v1.0.16

func (in Classifier) IsZero() bool

func (Classifier) PendingJobs added in v1.0.16

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

func (Classifier) PendingJobsList added in v1.0.21

func (in Classifier) PendingJobsList() []string

func (Classifier) PendingJobsNum added in v1.0.21

func (in Classifier) PendingJobsNum() int

func (*Classifier) Reset

func (in *Classifier) Reset()

func (Classifier) RunningJobs

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

func (Classifier) RunningJobsList added in v1.0.21

func (in Classifier) RunningJobsList() []string

func (Classifier) RunningJobsNum added in v1.0.21

func (in Classifier) RunningJobsNum() int

func (Classifier) SuccessfulJobs

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

func (Classifier) SuccessfulJobsList added in v1.0.21

func (in Classifier) SuccessfulJobsList() []string

func (Classifier) SuccessfulJobsNum added in v1.0.21

func (in Classifier) SuccessfulJobsNum() int

type ClassifierReader added in v1.0.16

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 {
	GetReconcileStatus() v1alpha1.Lifecycle
	SetReconcileStatus(v1alpha1.Lifecycle)
}

Jump to

Keyboard shortcuts

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