运行以下命令时:
helm upgrade --cleanup-on-fail \
-- install $releaseName $dockerHubName/$dockerHubRepo:$tag \
-- namespace $namespace \
-- create-namespace \
-- values config.yaml我得到以下错误:
Error: Failed to download "$dockerHubName/$dockerHubRepo"我也尝试过使用不同的标记,使用语义版本控制(tag="1.0.0"),并且在DockerHub回购(它是公共的)上有一个标记为“最新”的图像。
这也适用于基本的JuPyTerHub映像jupyterhub/jupyterhub。
发布于 2022-01-19 09:08:44
根据来自kubernetes站点的jupyterhub的信息,要使用与jupyter/docker堆栈不同的图像,需要执行以下步骤:
singleuser:
image:
# You should replace the "latest" tag with a fixed version from:
# https://hub.docker.com/r/jupyter/datascience-notebook/tags/
# Inspect the Dockerfile at:
# https://github.com/jupyter/docker-stacks/tree/HEAD/datascience-notebook/Dockerfile
name: jupyter/datascience-notebook
tag: latest如果配置了prePuller.hook.enabled,集群中的所有节点都将在集线器升级到允许用户使用映像之前提取映像。根据图像的大小,图像拖动可能需要几分钟才能完成。
https://stackoverflow.com/questions/70749257
复制相似问题