pod will not start due to “No nodes are available that match all of the following predicates:: Insufficient cpu”

前端 未结 3 618
伪装坚强ぢ
伪装坚强ぢ 2021-02-13 21:12

I\'m not sure why I\'m getting an error No nodes are available that match all of the following predicates:: Insufficient cpu (1).

I don\'t recall setting a

3条回答
  •  被撕碎了的回忆
    2021-02-13 21:51

    The error is pretty self explanatory, you are requesting 300m (100m per container in your pod) of cpu and your node doesn't have the budget to schedule it. (You seem to have just a 1 node cluster?)

    You can describe the node to see how much cpu time is already scheduled.

    I'm not sure what's adding those requests to your deployment though since you aren't stating those requirements in your template. Probably a resource quota.

提交回复
热议问题