Merge pull request #6819 from tengqm/improve-pod

Improve documentation on cross Pod communication
This commit is contained in:
Jennifer Rondeau
2018-01-02 17:47:05 -08:00
committed by GitHub
+3 -1
View File
@@ -32,7 +32,9 @@ Containers within a pod share an IP address and port space, and
can find each other via `localhost`. They can also communicate with each
other using standard inter-process communications like SystemV semaphores or
POSIX shared memory. Containers in different pods have distinct IP addresses
and can not communicate by IPC.
and can not communicate by IPC without
[special configuration](/docs/concepts/policy/pod-security-policy/).
These containers usually communicate with each other via Pod IP addresses.
Applications within a pod also have access to shared volumes, which are defined
as part of a pod and are made available to be mounted into each application's