我正在按照说明在 K8s 集群上设置 Dask。我在 MacOS 上,在 Docker 桌面上运行 K8s,kubectl
版本1.22.5
和helm
版本3.8.0
。添加存储库后,下载默认配置,使用命令安装 helm chart
RELEASE=my-dask-gateway
NAMESPACE=dask-gateway
VERSION=0.9.0
helm upgrade --install \
--namespace $NAMESPACE \
--version $VERSION \
--values path/to/your/config.yaml \
$RELEASE \
dask/dask-gateway
生成以下输出/错误
"dask" already exists with the same configuration, skipping
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "dmwm-bigdata" chart repository
...Successfully got an update from the "dask" chart repository
Update Complete. ⎈Happy Helming!⎈
Release "my-dask-gateway" does not exist. Installing it now.
Error: failed to install CRD crds/daskclusters.yaml: unable to recognize "": no matches for kind "CustomResourceDefinition" in version "apiextensions.k8s.io/v1beta1"
较早的帖子建议更新清单或使用旧版本的 kubernetes。这是否意味着 dask 与最新版本的 kubernetes 不兼容?