6 ms·
The guaranteed QoS example in the article is wrong. Kubernetes only sets the Guaranteed QoS if the CPU count is an integer (which 0.5 is not). Also, to take fu
by triodan 6y ago
The guaranteed QoS example in the article is wrong. Kubernetes only sets the Guaranteed QoS if the CPU count is an integer (which 0.5 is not).
Also, to take full benefit of the QoS you need to configure the Kubelet with "--cpu-manager-policy static"[0].
[0]: https://kubernetes.io/blog/2018/07/24/feature-highlight-cpu-manager/ https://kubernetes.io/blog/2018/07/24/feature-highlight-cpu-...
- marekaf 6y agoThanks to pointing that out! I will edit it.