gpt4 book ai didi

kubernetes - 如何解决临时本地存储问题?

转载 作者:行者123 更新时间:2023-12-02 12:01:21 31 4
gpt4 key购买 nike

我正在 EKS k8s 1.16 上运行一些部署,大约 5 分钟后,我的 pod 被驱逐并显示以下消息:

Pod ephemeral local storage usage exceeds the total limit of containers 1Gi.

我的节点有 20Gi 临时存储。

我的 QoS 等级是有保证的,无论我在 yaml 中配置了多少临时存储,我都会看到与我配置的数量相同的错误。

你知道可以做什么吗?

我的 yaml 文件在这里: https://slexy.org/view/s2096sex7L

最佳答案

那是因为您设置的上限为 ephemeral-storage通过设置使用 resources.limits.ephemeral-storage1Gi .删除 limits.ephemeral-storage如果安全,或根据您的要求更改值。

      resources:
limits:
memory: "61Gi"
cpu: "7500m"
ephemeral-storage: "1Gi" <----- here
requests:
memory: "61Gi"
cpu: "7500m"
ephemeral-storage: "1Gi"
  • Requests and limits

  • If the node where a Pod is running has enough of a resource available, it’s possible (and allowed) for a container to use more resources than its request for that resource specifies. However, a container is not allowed to use more than its resource limit.

    关于kubernetes - 如何解决临时本地存储问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61596697/

    31 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com