如果我运行
helm upgrade --cleanup-on-fail \
$RELEASE jupyterhub/jupyterhub \
--namespace $NAMESPACE \
--version=0.9.0 \
--values config.yaml它会失败,并显示以下错误:Error: UPGRADE FAILED: pre-upgrade hooks failed: timed out waiting for the condition。它只是挂起了一小段时间,最终超时。这似乎是一个太小的变化,不会导致真正的超时。我在Zero to JupyterHub文档where it describes how to apply changes to the configuration file中找到了这个命令。
我尝试了几种排列,包括省略清理,省略版本等。我唯一能用的就是helm upgrade jhub jupyterhub/jupyterhub,但我不认为它能产生预期的效果。
例如,当我在我的config.yaml中向change the default to Jupyter Lab添加一行代码时,如果我运行helm upgrade jhub jupyterhub/jupyterhub,它就不能工作。我认为我需要使用-- config.yaml或-f来指定值
我的整个项目是在云Kubernetes环境上设置JupyterHub。我正在使用GKE和在线终端。
谢谢
发布于 2020-12-24 23:16:11
已解决:我在config.yaml中错误地指定了tag。我放的是摘要而不是实际的标签。Here are the images on DockerHub
https://stackoverflow.com/questions/65432954
复制相似问题