magnum/releasenotes/notes/add-overlay-networks-to-swarm-4467986d7853fcd8.yaml
Mathieu Velten 7c0be2d384 Add support for overlay networks in Swarm.
Built-in in docker >= 1.9, it justs need a K-V store.
This patch reuses the existing etcd supporting Swarm.

Change-Id: Iae2e5aa1d8836d344f16ec911c766c426b1b558a
2016-09-07 12:09:51 +02:00

10 lines
400 B
YAML

---
features:
- Add configuration for overlay networks for the docker
network driver in swarm. To use this feature, users need
to create a swarm cluster with network_driver set to 'docker'.
After the cluster is created, users can create an overlay network
(docker network create -d overlay mynetwork) and use it when
launching a new container (docker run --net=mynetwork ...).