Browse Source

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

Fix Flannel network on CoreOS
pull/813/head
Matthew Mosesohn 8 years ago
committed by GitHub
parent
commit
a4bce333a3
1 changed files with 4 additions and 0 deletions
  1. 4
      roles/network_plugin/flannel/templates/flannel-options.conf.j2

4
roles/network_plugin/flannel/templates/flannel-options.conf.j2

@ -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 %}
Loading…
Cancel
Save