我已经使用以下配置部署了istio:
helm install install/kubernetes/helm/istio --name istio --namespace istio-system \
--set global.controlPlaneSecurityEnabled=true \
--set mixer.adapters.useAdapterCRDs=false \
--set grafana.enabled=true --set grafana.security.enabled=true \
--set tracing.enabled=false \
--set kiali.enabled=false \
--set pilot.resources.requests.memory="264Mi" \
--set pilot.resources.requests.cpu="100m"错误:
istio-pilot-...-npv4m
Pending
0
a minute
0/1 nodes are available: 1 Insufficient cpu.因为这是一个测试环境。我不使用大的sku (2个vcore和4 4gb)。但它看起来不起作用,这应该不会消耗大量内存。任何如何配置这方面的帮助都将不胜感激。
发布于 2019-09-22 15:29:46
这意味着你的CPU已经超额订阅了,而pilot碰巧没有足够的资源来启动。您可以使用更大\更多的节点,或者从istio pod中删除CPU请求(大多数istio pod都有相当多的CPU请求)。您可能还想检查其他pod(不是istio),它们可能也有CPU请求。
https://stackoverflow.com/questions/58046974
复制相似问题