Hi all,
I am trying to use the library dask-kubernetes to orchestrate running a Dask cluster on AKS. Under the hood, dask-kubernetes uses the Python library kubernetes_asyncio, which is simply just an async version of the Python kubernetes library.
Unfortunately, the kubernetes_asyncio library does not support Azure Token based authentication for authenticating with k8s, while the non-async version of the library does -- but dask-kubernetes is heavily tied to the asyncio version.
Is there any way to authenticate with an AKS cluster using one of the following authentication protocols?
user-token
oidc-token
user-password
Thank you in advance!