summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Philips <brandon@ifup.org>2017-04-13 01:41:13 +0200
committerGitHub <noreply@github.com>2017-04-13 01:41:13 +0200
commitb3ef6e2800935b10284b9f32ebbfa86c0c625dda (patch)
tree13e01f8f38a019f862be550f2744f477d0a8df1d
parent6b62d5678bd244aee3fcd2a58b539bf4d0a2c0b0 (diff)
parented31b5b3842f351374a416c61ff24a46e2a7d245 (diff)
Merge pull request #499 from diwu1989/patch-1
Update aws_under_the_hood.md to clarify pod vs node instance
-rw-r--r--contributors/design-proposals/aws_under_the_hood.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/contributors/design-proposals/aws_under_the_hood.md b/contributors/design-proposals/aws_under_the_hood.md
index 6e3c5afb..13ad435e 100644
--- a/contributors/design-proposals/aws_under_the_hood.md
+++ b/contributors/design-proposals/aws_under_the_hood.md
@@ -89,8 +89,8 @@ We do not currently run the master in an AutoScalingGroup, but we should
Kubernetes uses an IP-per-pod model. This means that a node, which runs many
pods, must have many IPs. AWS uses virtual private clouds (VPCs) and advanced
-routing support so each pod is assigned a /24 CIDR. The assigned CIDR is then
-configured to route to an instance in the VPC routing table.
+routing support so each EC2 instance is assigned a /24 CIDR in the VPC routing
+table.
It is also possible to use overlay networking on AWS, but that is not the
default configuration of the kube-up script.