7 lines
539 B
Text
7 lines
539 B
Text
# Deployed by Ansible
|
|
{% if (ansible_service_mgr in ["sysvinit","upstart"] and kube_network_plugin == "flannel" and ansible_os_family == "Debian") or
|
|
(kube_network_plugin == "flannel" and ansible_os_family == "CoreOS") %}
|
|
DOCKER_OPTS="--bip={{ flannel_subnet }} --mtu={{ flannel_mtu }} {% if docker_options is defined %}{{ docker_options }}{% endif %}"
|
|
{% elif kube_network_plugin == "flannel" %}
|
|
OPTIONS="--bip={{ flannel_subnet }} --mtu={{ flannel_mtu }} {% if docker_options is defined %}{{ docker_options }}{% endif %}"
|
|
{% endif %}
|