From f58c7705bb2b249fd59ad017e3051469be36c110 Mon Sep 17 00:00:00 2001 From: Vaibhav Date: Thu, 11 Nov 2021 14:10:19 +0530 Subject: [PATCH 1/2] Remove the link as refereneced content is missing --- .../concepts/services-networking/connect-applications-service.md | 1 - 1 file changed, 1 deletion(-) diff --git a/content/en/docs/concepts/services-networking/connect-applications-service.md b/content/en/docs/concepts/services-networking/connect-applications-service.md index 89d2daddb2..9d54825066 100644 --- a/content/en/docs/concepts/services-networking/connect-applications-service.md +++ b/content/en/docs/concepts/services-networking/connect-applications-service.md @@ -54,7 +54,6 @@ kubectl get pods -l run=my-nginx -o yaml | grep podIP You should be able to ssh into any node in your cluster and curl both IPs. Note that the containers are *not* using port 80 on the node, nor are there any special NAT rules to route traffic to the pod. This means you can run multiple nginx pods on the same node all using the same containerPort and access them from any other pod or node in your cluster using IP. Like Docker, ports can still be published to the host node's interfaces, but the need for this is radically diminished because of the networking model. -You can read more about [how we achieve this](/docs/concepts/cluster-administration/networking/#how-to-achieve-this) if you're curious. ## Creating a Service From ab99e7b10443f64a6790296e3a6010e42b7fca11 Mon Sep 17 00:00:00 2001 From: Vaibhav Date: Mon, 15 Nov 2021 14:03:46 +0530 Subject: [PATCH 2/2] Update the referenced link to kuberentes network model --- .../concepts/services-networking/connect-applications-service.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/en/docs/concepts/services-networking/connect-applications-service.md b/content/en/docs/concepts/services-networking/connect-applications-service.md index 9d54825066..07bab7965b 100644 --- a/content/en/docs/concepts/services-networking/connect-applications-service.md +++ b/content/en/docs/concepts/services-networking/connect-applications-service.md @@ -54,6 +54,7 @@ kubectl get pods -l run=my-nginx -o yaml | grep podIP You should be able to ssh into any node in your cluster and curl both IPs. Note that the containers are *not* using port 80 on the node, nor are there any special NAT rules to route traffic to the pod. This means you can run multiple nginx pods on the same node all using the same containerPort and access them from any other pod or node in your cluster using IP. Like Docker, ports can still be published to the host node's interfaces, but the need for this is radically diminished because of the networking model. +You can read more about the [Kubernetes Networking Model](/docs/concepts/cluster-administration/networking/#the-kubernetes-network-model) if you're curious. ## Creating a Service