From 91f9d2e74913cafad875620a100de341d98c135b Mon Sep 17 00:00:00 2001 From: Max <16919345+mkorbi@users.noreply.github.com> Date: Sun, 30 Aug 2020 17:11:15 +0200 Subject: [PATCH] adjust wording Co-authored-by: Tim Bannister --- .../2020-09-02-scaling-kubernetes-networking-endpointslices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/blog/_posts/2020-09-02-scaling-kubernetes-networking-endpointslices.md b/content/en/blog/_posts/2020-09-02-scaling-kubernetes-networking-endpointslices.md index 78361dd993..c4c87ef800 100644 --- a/content/en/blog/_posts/2020-09-02-scaling-kubernetes-networking-endpointslices.md +++ b/content/en/blog/_posts/2020-09-02-scaling-kubernetes-networking-endpointslices.md @@ -31,7 +31,7 @@ This API dramatically improves networking scalability. Now when a Pod is added o Potentially more significant, now that all Pod IPs for a Service don't need to be stored in a single resource, we don't have to worry about the size limit for objects stored in etcd. EndpointSlices have already been used to scale Services beyond 100,000 network endpoints. -All of this is brought together with some significant performance improvements that have been made in kube-proxy. When using EndpointSlices at scale, significantly less data will be transferred for endpoints updates and kube-proxy should be faster to update iptables or ipvs rules. Beyond that, Services can now scale at least 10x beyond any previous limitations. +All of this is brought together with some significant performance improvements that have been made in kube-proxy. When using EndpointSlices at scale, significantly less data will be transferred for endpoints updates and kube-proxy should be faster to update iptables or ipvs rules. Beyond that, Services can now scale to at least 10 times any previous limitations. ## EndpointSlices enable new functionality As a new API, EndpointSlices were built to enable some exciting new functionality in future Kubernetes releases. This will include dual-stack Services, topology aware routing, and endpoint subsetting.