BretFisher / dogvscat

Sample Docker Swarm cluster stack of tools
http://dogvs.cat
MIT License
504 stars 127 forks source link

Does it use the internal network? #4

Closed pascalandy closed 6 years ago

pascalandy commented 6 years ago

Hi Bret,

Question regarding the creation of Swarm on DO.

https://github.com/BretFisher/dogvscat/blob/master/create-swarm.sh#L5 Does eth1 is the internal network (therefore there is no bandwidth limit )?

Thanks!

BretFisher commented 6 years ago

Correct, first, I create the instances with the private networking enabled via create-servers.sh.

Then I pin the Swarm to that NIC, which should be eth1. The routing mesh for incoming client connections are listening on all NIC's AFAIK.

pascalandy commented 6 years ago

Thank you very much!