Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DaskCluster ¶
type DaskCluster struct {
Spec DaskClusterSpec `json:"spec"`
}
type DaskClusterSpec ¶
type DaskClusterSpec struct { Worker WorkerSpec `json:"worker"` Scheduler SchedulerSpec `json:"scheduler"` }
type DaskJobSpec ¶
type DaskJobSpec struct { Job JobSpec `json:"job"` Cluster DaskCluster `json:"cluster"` }
type DaskJobStatus ¶
type DaskJobStatus struct { // The name of the cluster the job is executed on ClusterName string `json:"clusterName,omitempty"` // The time the job runner pod changed to either Successful or Failing EndTime metav1.Time `json:"endTime,omitempty"` // The name of the job-runner pod JobRunnerPodName string `json:"jobRunnerPodName,omitempty"` // JobStatus describes the current status of the job JobStatus JobStatus `json:"jobStatus"` // Start time records the time the job-runner pod changed into a `running` state StartTime metav1.Time `json:"startTime"` }
DaskJobStatus describes the current status of a Dask Job
type SchedulerSpec ¶
type SchedulerSpec struct { Spec corev1.PodSpec `json:"spec"` Service corev1.ServiceSpec `json:"service"` }
type WorkerSpec ¶
Click to show internal directories.
Click to hide internal directories.