moby/docs/api
Albin Kerouanton 78479b1915
libnet: Make sure network names are unique
Fixes #18864, #20648, #33561, #40901.

[This GH comment][1] makes clear network name uniqueness has never been
enforced due to the eventually consistent nature of Classic Swarm
datastores:

> there is no guaranteed way to check for duplicates across a cluster of
> docker hosts.

And this is further confirmed by other comments made by @mrjana in that
same issue, eg. [this one][2]:

> we want to adopt a schema which can pave the way in the future for a
> completely decentralized cluster of docker hosts (if scalability is
> needed).

This decentralized model is what Classic Swarm was trying to be. It's
been superseded since then by Docker Swarm, which has a centralized
control plane.

To circumvent this drawback, the `NetworkCreate` endpoint accepts a
`CheckDuplicate` flag. However it's not perfectly reliable as it won't
catch concurrent requests.

Due to this design decision, API clients like Compose have to implement
workarounds to make sure names are really unique (eg.
docker/compose#9585). And the daemon itself has seen a string of issues
due to that decision, including some that aren't fixed to this day (for
instance moby/moby#40901):

> The problem is, that if you specify a network for a container using
> the ID, it will add that network to the container but it will then
> change it to reference the network by using the name.

To summarize, this "feature" is broken, has no practical use and is a
source of pain for Docker users and API consumers. So let's just remove
it for _all_ API versions.

[1]: https://github.com/moby/moby/issues/18864#issuecomment-167201414
[2]: https://github.com/moby/moby/issues/18864#issuecomment-167202589

Signed-off-by: Albin Kerouanton <albinker@gmail.com>
2023-09-12 10:40:13 +02:00
..
v1.18.md remove deprecated devicemapper storage-driver 2023-04-20 23:51:54 +02:00
v1.19.md remove deprecated devicemapper storage-driver 2023-04-20 23:51:54 +02:00
v1.20.md remove deprecated devicemapper storage-driver 2023-04-20 23:51:54 +02:00
v1.21.md remove deprecated devicemapper storage-driver 2023-04-20 23:51:54 +02:00
v1.22.md remove deprecated devicemapper storage-driver 2023-04-20 23:51:54 +02:00
v1.23.md remove deprecated devicemapper storage-driver 2023-04-20 23:51:54 +02:00
v1.24.md remove deprecated devicemapper storage-driver 2023-04-20 23:51:54 +02:00
v1.25.yaml api: Validate IPAM config before creating a network 2023-08-22 17:11:54 +02:00
v1.26.yaml api: Validate IPAM config before creating a network 2023-08-22 17:11:54 +02:00
v1.27.yaml api: Validate IPAM config before creating a network 2023-08-22 17:11:54 +02:00
v1.28.yaml api: Validate IPAM config before creating a network 2023-08-22 17:11:54 +02:00
v1.29.yaml api: Validate IPAM config before creating a network 2023-08-22 17:11:54 +02:00
v1.30.yaml api: Validate IPAM config before creating a network 2023-08-22 17:11:54 +02:00
v1.31.yaml api: Validate IPAM config before creating a network 2023-08-22 17:11:54 +02:00
v1.32.yaml docs/api: update links to Go documentation 2023-08-25 12:43:30 +02:00
v1.33.yaml docs/api: update links to Go documentation 2023-08-25 12:43:30 +02:00
v1.34.yaml docs/api: update links to Go documentation 2023-08-25 12:43:30 +02:00
v1.35.yaml docs/api: update links to Go documentation 2023-08-25 12:43:30 +02:00
v1.36.yaml docs/api: update links to Go documentation 2023-08-25 12:43:30 +02:00
v1.37.yaml docs/api: update links to Go documentation 2023-08-25 12:43:30 +02:00
v1.38.yaml docs/api: update links to Go documentation 2023-08-25 12:43:30 +02:00
v1.39.yaml docs/api: update links to Go documentation 2023-08-25 12:43:30 +02:00
v1.40.yaml docs/api: update links to Go documentation 2023-08-25 12:43:30 +02:00
v1.41.yaml docs/api: update links to Go documentation 2023-08-25 12:43:30 +02:00
v1.42.yaml docs/api: update links to Go documentation 2023-08-25 12:43:30 +02:00
v1.43.yaml docs/api: update links to Go documentation 2023-08-25 12:43:30 +02:00
version-history.md libnet: Make sure network names are unique 2023-09-12 10:40:13 +02:00