executor

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Apr 28, 2022 License: MIT Imports: 24 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Config

type Config struct {
	Namespace       string    `yaml:"namespace"`
	EventTraceLog   string    `yaml:"eventTraceLog,omitempty"`
	JobPrepTimeout  *Duration `yaml:"preperationTimeout"`
	JobTotalTimeout *Duration `yaml:"totalTimeout"`
	LabelPrefix     string    `json:"labelPrefix"`
}

Config configures the executor

type Duration

type Duration struct {
	time.Duration
}

Duration is a JSON un-/marshallable type

func (*Duration) UnmarshalYAML

func (d *Duration) UnmarshalYAML(unmarshal func(interface{}) error) error

UnmarshalYAML parses a duration from its JSON representation

type Executor

type Executor struct {
	// OnUpdate is called when the status of a Kubernetes Job changes.
	// Beware: this function can be called several times with the same status.
	OnUpdate func(pod *corev1.Pod, status *pirov1.JobStatus)

	Client     kubernetes.Interface
	Config     Config
	KubeConfig *rest.Config
	// contains filtered or unexported fields
}

Executor starts and watches jobs running in Kubernetes

func NewExecutor

func NewExecutor(config Config, kubeConfig *rest.Config) (*Executor, error)

NewExecutor creates a new job center instance

func (*Executor) GetKnownJobs

func (js *Executor) GetKnownJobs() (jobs []pirov1.JobStatus, err error)

GetKnownJobs returns a list of all Kubernetes Job(s) the executor knows about

func (*Executor) Logs

func (js *Executor) Logs(name string) io.Reader

Logs provides the log output of a running Job. If the job is unknown, nil is returned.

func (*Executor) RegisterResult

func (js *Executor) RegisterResult(jobname string, res *pirov1.JobResult) error

RegisterResult registers a result produced by a Kubernetes Job

func (*Executor) Run

func (js *Executor) Run()

Run starts the executor and returns immediately

func (*Executor) Start

func (js *Executor) Start(podspec corev1.PodSpec, metadata pirov1.JobMetadata, options ...StartOpt) (status *pirov1.JobStatus, err error)

Start starts a new Kubernetes Job

func (*Executor) Stop

func (js *Executor) Stop(name, reason string) error

Stop stops a Kubernetes Job

type StartOpt

type StartOpt func(*startOptions)

StartOpt configures a Kubernetes Job at startup

func WithAnnotation

func WithAnnotation(key, value string) StartOpt

WithAnnotation sets a single annotation on a Kubernetes Job

func WithAnnotations

func WithAnnotations(annotations map[string]string) StartOpt

WithAnnotations sets all annotations of a Kubernetes Job

func WithBackoff

func WithBackoff(limit int) StartOpt

WithBackoff configures the backoff behaviour of a Kubernetes Job

func WithCanReplay

func WithCanReplay(canReplay bool) StartOpt

WithCanReplay configures the if the Kubernetes Job can be replayed

func WithMutex

func WithMutex(name string) StartOpt

WithMutex starts a Kubernetes Job with a mutex (i.e. cancels all other Jobs with that mutex)

func WithName

func WithName(name string) StartOpt

WithName sets the name of the Kubernetes Job

func WithSidecars

func WithSidecars(names []string) StartOpt

WithSidecars makes some containers dependent on the lifecycle of others

func WithWaitUntil

func WithWaitUntil(t time.Time) StartOpt

WithWaitUntil starts the execution of a Kubernetes Job at some later point

Jump to

Keyboard shortcuts

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