Jupyterhub Bitnami pod 被驱逐

发布于 2025-01-10 11:35:12 字数 332 浏览 0 评论 0原文

我已经通过 GKE 安装了 jupyterhub bitnami 的 Helm Chart。

创建单用户 pod 时,它会在一段时间后因为临时存储而被“驱逐”,并出现以下错误

“Pod 临时本地存储使用量超过总限制 1Gi”,

我在文档中没有找到如何增加临时存储。您能否告诉我如何增加此临时存储空间或者解决此问题的替代方法是什么?

输入图片此处描述

I have installed helm chart for jupyterhub bitnami over GKE.

When a singleuser pod is created, it gets "evicted" after some time because of ephermal storage with following error

"Pod ephemeral local storage usage exceeds the total limit 1Gi"

I did not find in documentation how to increase ephermal storage. Can you please tell how can I increase this ephermal storage or what is the alternative way to fix this issue?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不气馁 2025-01-17 11:35:12

在摸索了几个小时之后,我不得不研究 jupyter kubernetes Spawner 的实现 此处 以及 kubernetes 客户端库 此处。我找到了为 jupyterhub 用户笔记本设置 ephermal-storage 的方法。不幸的是,没有相关的文档。

我在 values.yaml 内的 hub.configuration 中添加了 extraResources

extraResource:
  limits: 
    ephemeral-storage: '5Gi'
  guarantees:
    ephemeral-storage: '5Gi'

After scratching my head for hours, I had to study the implementation of jupyter kubernetes spawner here and also kubernetes client library here. I've found the way to set ephermal-storage for jupyterhub user notebook. Unfortunately, there was not documentation for it.

I added extraResources in hub.configuration within values.yaml

extraResource:
  limits: 
    ephemeral-storage: '5Gi'
  guarantees:
    ephemeral-storage: '5Gi'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文