You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
468 B

9 years ago
  1. ---
  2. - name: "Test if overlay network is defined"
  3. fail: msg="ERROR, One overlay_network variable must be defined (Flannel or Calico)"
  4. when: ( overlay_network_plugin is defined and overlay_network_plugin == "calico" and overlay_network_plugin == "flannel" ) or
  5. overlay_network_plugin is not defined
  6. - include: flannel.yml
  7. when: overlay_network_plugin == "flannel"
  8. - include: calico.yml
  9. when: overlay_network_plugin == "calico"
  10. - meta: flush_handlers