From 840c182a2c36faa63205f5c276a690779de943ab Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Mon, 6 Jul 2015 11:07:20 -0700 Subject: [PATCH] Fix magic number for (2^16)-2 --- docs/getting-started-guides/scratch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started-guides/scratch.md b/docs/getting-started-guides/scratch.md index dbd98e79f97..886832862ff 100644 --- a/docs/getting-started-guides/scratch.md +++ b/docs/getting-started-guides/scratch.md @@ -120,7 +120,7 @@ You need to select an address range for the Pod IPs. Kubernetes also allocates an IP to each [service](../services.md). However, service IPs do not necessarily need to be routable. The kube-proxy takes care of translating Service IPs to Pod IPs before traffic leaves the node. You do need to Allocate a block of IPs for services. Call this `SERVICE_CLUSTER_IP_RANGE`. -For example, you could set `SERVICE_CLUSTER_IP_RANGE="10.1.0.0/16"`, allowing ~67840 distinct services to be active at once. +For example, you could set `SERVICE_CLUSTER_IP_RANGE="10.1.0.0/16"`, allowing 65534 distinct services to be active at once. Note that you can grow the bounds of this range, but you cannot move it without disrupting the services that already use it.