LoginSignup
4

More than 5 years have passed since last update.

fit failure summary on nodes : Insufficient cpu (1)

Posted at
jobをうごかしたく
$ kubectl create -f <Deploy.yml>

上のようにカジュアルに、k8s の jos を使おうとおもったら、うまくうごかず。

pod詳細を見る
$ kubectl describe pod <POD>

で、pod の状態をしらべてみると、下記の失敗がでていた。

fit failure summary on nodes : Insufficient cpu (1)

よくわからなかったのですが、cpu が不十分で、pod が作られていないようでした。

クラスタの node 数を確認したら 1 となっていたので、とりあえず、2 に増やしたら無事動くようになりました。

resize
$ gcloud container clusters resize <CLUSTER-NAME> --size=2

Ref. http://qiita.com/mochizukikotaro/items/078a919f873a0f153ae9

失敗時の表示テキストがわかりやすいと本当に嬉しい気持ちになります。

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4