Merge pull request #760 from genti-t/issue-748-flannel-options

Fix Flannel network on CoreOS
pull/813/head
Matthew Mosesohn 2016-12-22 19:02:31 +03:00 committed by GitHub
commit a4bce333a3
1 changed files with 4 additions and 0 deletions

View File

@ -1,2 +1,6 @@
[Service]
{% if ansible_os_family == "CoreOS" %}
Environment="DOCKER_OPT_BIP=--bip={{ flannel_subnet }} --mtu={{ flannel_mtu }}"
{% else %}
Environment="DOCKER_NETWORK_OPTIONS=--bip={{ flannel_subnet }} --mtu={{ flannel_mtu }}"
{% endif %}