2015-10-27 14:42:46 +00:00
|
|
|
---
|
|
|
|
- name: "Test if network plugin is defined"
|
|
|
|
fail: msg="ERROR, One network_plugin variable must be defined (Flannel or Calico)"
|
|
|
|
when: ( kube_network_plugin is defined and kube_network_plugin == "calico" and kube_network_plugin == "flannel" ) or
|
|
|
|
kube_network_plugin is not defined
|
|
|
|
|
2015-12-11 10:44:41 +00:00
|
|
|
- name: Write network-environment
|
|
|
|
template: src=network-environment.j2 dest=/etc/network-environment mode=u+x
|
|
|
|
|
2015-10-27 14:42:46 +00:00
|
|
|
- include: flannel.yml
|
|
|
|
when: kube_network_plugin == "flannel"
|
2015-11-16 21:20:41 +00:00
|
|
|
|
2015-10-27 14:42:46 +00:00
|
|
|
- include: calico.yml
|
|
|
|
when: kube_network_plugin == "calico"
|
|
|
|
|
|
|
|
- meta: flush_handlers
|