jupyterhub on k8s jupyter总是无响应

pod jupyter-${用户名} 稳定

pod hub-59b8588b84-28lxx 或者 proxy-7f87544d4c-gpjb5 oom重启导致断连,增加cpu和内存配置即可.

yaml案例如下:

用户jupyter:

singleuser:

cloudMetadata:

blockWithIptables: false

cpu:

limit: 6

guarantee: 1

memory:

limit: 12G

guarantee: 1G

proxy pod:

proxy:

service:

type: ClusterIP

chp:

image:

name: xxxxxxxxxxxxxxxxx

resources:

requests:

cpu: "1"

memory: "1Gi"

limits:

cpu: "4"

memory: "4Gi"

hub pod:

hub:

resources:

requests:

cpu: "2"

memory: "2Gi"

limits:

cpu: "4"

memory: "4Gi"

baseUrl:

/jupyterlab

config.yaml 修改后更新:

/usr/local/bin/helm --kubeconfig ./kubeconfig.yaml upgrade --cleanup-on-fail \

--install hub410 jupyterhub/jupyterhub \

--namespace jupyterhub \

--version=4.1.0 \

--values config.yaml

相关推荐
虎头金猫1 天前
4K 视频总卡在公网带宽?用 N1 + OpenList 把网盘播放链路重新理顺
运维·服务器·网络·python·容器·beautifulsoup·pandas
赵文宇(温玉)1 天前
CoreDNS的hosts插件的缺行配置导致k8s集群异常
容器·kubernetes·rancher
guo_wen_qiang1 天前
上传本地镜像到harbor中
docker·容器·持续部署
张洛闻Eren1 天前
k8s云原生【第十课】:水平 Pod 自动扩缩容
运维·数据库·云原生·kubernetes·github
忆~遂愿1 天前
本地片库怎么在外面打开?Plex + cpolar 搭一套可远程访问的私人影音库
docker·容器
Xiu Yan1 天前
Python 数据分析:Pandas DataFrame 零基础入门教程
python·jupyter·pycharm·numpy·pandas
Thneonl1 天前
你的 Pod 为什么 Pending:调度器两阶段
后端·kubernetes
不吃香菜kkk、1 天前
CI/CD(GitOps)学习与部署手册
运维·云原生·容器·kubernetes·云计算·jenkins·argocd
九皇叔叔2 天前
Kubernetes 资源管理方式详解:命令式与声明式管理
docker·容器·k8s
程序猿小郑2 天前
Docker Compose 构建完整服务实战指南:从入门到最佳实践
docker·容器