diff options
author | 2023-03-02 22:17:19 +0000 | |
---|---|---|
committer | 2023-03-02 22:17:57 +0000 | |
commit | 3b70a2a9a631234a1b5a562e8adb874245bbb7b2 (patch) | |
tree | 69dab6563af7cb40fc71456a613b4a3b3df4c9ab | |
parent | Bump dependencies to latest (diff) |
Don't use the beta1 APIs for cronjobs
As we're running LKE k8s 1.25, these endpoitns are no longer available on the beta1 endpoint
-rw-r--r-- | arthur/apis/kubernetes/jobs.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arthur/apis/kubernetes/jobs.py b/arthur/apis/kubernetes/jobs.py index c079da0..a5edc53 100644 --- a/arthur/apis/kubernetes/jobs.py +++ b/arthur/apis/kubernetes/jobs.py @@ -3,23 +3,23 @@ from typing import Any, Optional from kubernetes_asyncio import client from kubernetes_asyncio.client.api_client import ApiClient -from kubernetes_asyncio.client.models import V1beta1CronJob, V1beta1CronJobList, V1Job +from kubernetes_asyncio.client.models import V1CronJob, V1CronJobList, V1Job -async def list_cronjobs(namespace: Optional[str] = None) -> V1beta1CronJobList: +async def list_cronjobs(namespace: Optional[str] = None) -> V1CronJobList: """Query the Kubernetes API for a list of cronjobss in the provided namespace.""" async with ApiClient() as api: - api = client.BatchV1beta1Api(api) + api = client.BatchV1Api(api) if namespace: return await api.list_namespaced_cron_job(namespace) else: return await api.list_cron_job_for_all_namespaces() -async def get_cronjob(namespace: str, cronjob_name: str) -> V1beta1CronJob: +async def get_cronjob(namespace: str, cronjob_name: str) -> V1CronJob: """Fetch a cronjob given the name and namespace.""" async with ApiClient() as api: - api = client.BatchV1beta1Api(api) + api = client.BatchV1Api(api) return await api.read_namespaced_cron_job(cronjob_name, namespace) |