Add known issue to Engine 17.06.1 release notes (#240)

This commit is contained in:
Joao Fernandes 2017-08-15 22:51:30 -07:00 committed by Jim Galasyn
parent 79a134f523
commit a4fe6a6ea9
1 changed files with 12 additions and 0 deletions

View File

@ -269,3 +269,15 @@ adopted as quickly for consistency and compatibility reasons.
* Disable legacy registry (v1) by default [#33629](https://github.com/moby/moby/pull/33629)
- Deprecate `--api-enable-cors` daemon flag. This flag was marked deprecated in Docker 1.6.0 but not listed in deprecated features [#32352](https://github.com/moby/moby/pull/32352)
- Remove Ubuntu 12.04 (Precise Pangolin) as supported platform. Ubuntu 12.04 is EOL, and no longer receives updates [#32520](https://github.com/moby/moby/pull/32520)
### Known issues
If a container is spawned on node A, using the same IP of a container destroyed
on nodeB within 5 min from the time that it exit, the container on node A will
not be reachable until one of these 2 conditions happens:
1. Container on A sends a packet out,
2. The timer that cleans the arp entry in the overlay namespace is triggered (around 5 minutes).
As a workaround, send at least a packet out from each container like
(ping, GARP, etc).