Skip to main content

prefect_kubernetes.pods

Module for interacting with Kubernetes pods from Prefect flows.

Functions

create_namespaced_pod

Create a Kubernetes pod in a given namespace. Args:
  • kubernetes_credentials: KubernetesCredentials block for creating authenticated Kubernetes API clients.
  • new_pod: A Kubernetes V1Pod specification.
  • namespace: The Kubernetes namespace to create this pod in.
  • **kube_kwargs: Optional extra keyword arguments to pass to the Kubernetes API.
Returns:
  • A Kubernetes V1Pod object.

delete_namespaced_pod

Delete a Kubernetes pod in a given namespace. Args:
  • kubernetes_credentials: KubernetesCredentials block for creating authenticated Kubernetes API clients.
  • pod_name: The name of the pod to delete.
  • delete_options: A Kubernetes V1DeleteOptions object.
  • namespace: The Kubernetes namespace to delete this pod from.
  • **kube_kwargs: Optional extra keyword arguments to pass to the Kubernetes API.
Returns:
  • A Kubernetes V1Pod object.

list_namespaced_pod

List all pods in a given namespace. Args:
  • kubernetes_credentials: KubernetesCredentials block for creating authenticated Kubernetes API clients.
  • namespace: The Kubernetes namespace to list pods from.
  • **kube_kwargs: Optional extra keyword arguments to pass to the Kubernetes API.
Returns:
  • A Kubernetes V1PodList object.

patch_namespaced_pod

Patch a Kubernetes pod in a given namespace. Args:
  • kubernetes_credentials: KubernetesCredentials block for creating authenticated Kubernetes API clients.
  • pod_name: The name of the pod to patch.
  • pod_updates: A Kubernetes V1Pod object.
  • namespace: The Kubernetes namespace to patch this pod in.
  • **kube_kwargs: Optional extra keyword arguments to pass to the Kubernetes API.
Returns:
  • A Kubernetes V1Pod object.

read_namespaced_pod

Read information on a Kubernetes pod in a given namespace. Args:
  • kubernetes_credentials: KubernetesCredentials block for creating authenticated Kubernetes API clients.
  • pod_name: The name of the pod to read.
  • namespace: The Kubernetes namespace to read this pod from.
  • **kube_kwargs: Optional extra keyword arguments to pass to the Kubernetes API.
Returns:
  • A Kubernetes V1Pod object.

read_namespaced_pod_log

Read logs from a Kubernetes pod in a given namespace. If print_func is provided, the logs will be streamed using that function. If the pod is no longer running, logs generated up to that point will be returned. Args:
  • kubernetes_credentials: KubernetesCredentials block for creating authenticated Kubernetes API clients.
  • pod_name: The name of the pod to read logs from.
  • container: The name of the container to read logs from.
  • namespace: The Kubernetes namespace to read this pod from.
  • print_func: If provided, it will stream the pod logs by calling print_func for every line and returning None. If not provided, the current pod logs will be returned immediately.
  • **kube_kwargs: Optional extra keyword arguments to pass to the Kubernetes API.
Returns:
  • A string containing the logs from the pod’s container.

replace_namespaced_pod

Replace a Kubernetes pod in a given namespace. Args:
  • kubernetes_credentials: KubernetesCredentials block for creating authenticated Kubernetes API clients.
  • pod_name: The name of the pod to replace.
  • new_pod: A Kubernetes V1Pod object.
  • namespace: The Kubernetes namespace to replace this pod in.
  • **kube_kwargs: Optional extra keyword arguments to pass to the Kubernetes API.
Returns:
  • A Kubernetes V1Pod object.