aks reporting “Insufficient pods”

前端 未结 3 399
粉色の甜心
粉色の甜心 2021-01-12 13:52

I\'ve gone through the Azure Cats&Dogs tutorial described here and I am getting an error in the final step where the apps are launched in AKS. Kubernetes is reporting th

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-12 14:29

    I hit this because I exceed the max pods, I found out how much I could handle by doing:

    $ kubectl get nodes -o json | jq -r .items[].status.allocatable.pods | paste -sd+ - | bc
    

提交回复
热议问题