blob: 0269561cbaaece68f4578965c7759f2b2bc6eb52 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
"""APIs for interacting with Kubernetes Jobs & Cronjobs."""
from typing import Any
from kubernetes_asyncio import client
from kubernetes_asyncio.client.api_client import ApiClient
from kubernetes_asyncio.client.models import V1CronJob, V1CronJobList, V1Job
async def list_cronjobs(namespace: str | None = None) -> V1CronJobList:
"""Query the Kubernetes API for a list of cronjobss in the provided namespace."""
async with ApiClient() as api_client:
api = client.BatchV1Api(api_client)
if namespace:
return await api.list_namespaced_cron_job(namespace)
return await api.list_cron_job_for_all_namespaces()
async def get_cronjob(namespace: str, cronjob_name: str) -> V1CronJob:
"""Fetch a cronjob given the name and namespace."""
async with ApiClient() as api_client:
api = client.BatchV1Api(api_client)
return await api.read_namespaced_cron_job(cronjob_name, namespace)
async def create_job(namespace: str, job_name: str, cron_spec: dict[str, Any]) -> V1Job:
"""Create a job in the specified namespace with the given specification and name."""
async with ApiClient() as api_client:
api = client.BatchV1Api(api_client)
return await api.create_namespaced_job(
namespace, V1Job(metadata={"name": job_name}, spec=cron_spec)
)
|