容器处于`Pending`状态Warning FailedScheduling <unknown> default-scheduler 0/10 nodes are available
Warning FailedScheduling default-scheduler 0/10 nodes are available: 1 node(s) had taint {agreeml: agreeml}, that the pod didn’t tolerate, 3 node(s) had taint {node-role.kubernetes.io/master: }, that the pod didn’t tolerate, 6 Insufficient cpu.
kubernetes启动pod失败,kubectl get pod
容器处于Pending
状态
kubectl create -f frontend.yaml -n aweb-dev
kubectl get pod
看下命名空间:
kubectl describe pod -n aweb-dev
发现最后面的警告:
Warning FailedScheduling default-scheduler 0/10 nodes are available: 1 node(s) had taint {agreeml: agreeml}, that the pod didn’t tolerate, 3 node(s) had taint {node-role.kubernetes.io/master: }, that the pod didn’t tolerate, 6 Insufficient cpu.
是资源不满足,这时将CPU调整小一点即可。
resources:
limits:
cpu: 200m
memory: 256Mi
requests:
cpu: 200m
memory: 10Mi
我原来是使用cpu: '1'
即一个核心
再启动看到已经起来了: