Skip to content

prefect_kubernetes.flows

A module to define flows interacting with Kubernetes resources.

Classes

Functions

run_namespaced_job async

Flow for running a namespaced Kubernetes job.

Parameters:

Name Type Description Default
kubernetes_job KubernetesJob

The KubernetesJob block that specifies the job to run.

required

Returns:

Type Description
Dict[str, Any]

The a dict of logs from each pod in the job, e.g. {'pod_name': 'pod_log_str'}.

Raises:

Type Description
RuntimeError

If the created Kubernetes job attains a failed status.

```python
from prefect_kubernetes import KubernetesJob, run_namespaced_job
from prefect_kubernetes.credentials import KubernetesCredentials

run_namespaced_job(
    kubernetes_job=KubernetesJob.from_yaml_file(
        credentials=KubernetesCredentials.load("k8s-creds"),
        manifest_path="path/to/job.yaml",
    )
)
```
Source code in prefect_kubernetes/flows.py
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@flow
async def run_namespaced_job(
    kubernetes_job: KubernetesJob,
) -> Dict[str, Any]:
    """Flow for running a namespaced Kubernetes job.

    Args:
        kubernetes_job: The `KubernetesJob` block that specifies the job to run.

    Returns:
        The a dict of logs from each pod in the job, e.g. {'pod_name': 'pod_log_str'}.

    Raises:
        RuntimeError: If the created Kubernetes job attains a failed status.

    Example:

        ```python
        from prefect_kubernetes import KubernetesJob, run_namespaced_job
        from prefect_kubernetes.credentials import KubernetesCredentials

        run_namespaced_job(
            kubernetes_job=KubernetesJob.from_yaml_file(
                credentials=KubernetesCredentials.load("k8s-creds"),
                manifest_path="path/to/job.yaml",
            )
        )
        ```
    """
    kubernetes_job_run = await task(kubernetes_job.trigger.aio)(kubernetes_job)

    await task(kubernetes_job_run.wait_for_completion.aio)(kubernetes_job_run)

    return await task(kubernetes_job_run.fetch_result.aio)(kubernetes_job_run)