Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type JobHandler ¶
type JobHandler interface { // GetJobs Get status of all jobs GetJobs(ctx context.Context) ([]modelsv1.JobStatus, error) // GetJob Get status of a job GetJob(ctx context.Context, jobName string) (*modelsv1.JobStatus, error) // CreateJob Create a job with parameters CreateJob(ctx context.Context, jobScheduleDescription *common.JobScheduleDescription) (*modelsv1.JobStatus, error) // CopyJob creates a copy of an existing job with deploymentName as value for radixDeploymentJobRef.name CopyJob(ctx context.Context, jobName string, deploymentName string) (*modelsv1.JobStatus, error) // DeleteJob Delete a job DeleteJob(ctx context.Context, jobName string) error // StopJob Stop a job StopJob(ctx context.Context, jobName string) error }
func New ¶
func New(kube *kube.Kube, env *models.Env, radixDeployJobComponent *radixv1.RadixDeployJobComponent) JobHandler
New Constructor for job handler
Click to show internal directories.
Click to hide internal directories.