File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
content/en/docs/tutorials/services Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ to make queries against both IPs. Note that the containers are *not* using port
59
59
the node, nor are there any special NAT rules to route traffic to the pod. This means
60
60
you can run multiple nginx pods on the same node all using the same ` containerPort` ,
61
61
and access them from any other pod or node in your cluster using the assigned IP
62
- address for the Service . If you want to arrange for a specific port on the host
62
+ address for the pod . If you want to arrange for a specific port on the host
63
63
Node to be forwarded to backing Pods, you can - but the networking model should
64
64
mean that you do not need to do so.
65
65
@@ -189,7 +189,7 @@ Note there's no mention of your Service. This is because you created the replica
189
189
before the Service. Another disadvantage of doing this is that the scheduler might
190
190
put both Pods on the same machine, which will take your entire Service down if
191
191
it dies. We can do this the right way by killing the 2 Pods and waiting for the
192
- Deployment to recreate them. This time around the Service exists *before* the
192
+ Deployment to recreate them. This time the Service exists *before* the
193
193
replicas. This will give you scheduler-level Service spreading of your Pods
194
194
(provided all your nodes have equal capacity), as well as the right environment
195
195
variables:
You can’t perform that action at this time.
0 commit comments