sanity_checks.yml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. ---
  2. - name: Verify Requirements
  3. hosts: oo_all_hosts
  4. tasks:
  5. - fail:
  6. msg: Flannel can not be used with openshift sdn, set openshift_use_openshift_sdn=false if you want to use flannel
  7. when: openshift_use_openshift_sdn | default(true) | bool and openshift_use_flannel | default(false) | bool
  8. - fail:
  9. msg: Nuage sdn can not be used with openshift sdn, set openshift_use_openshift_sdn=false if you want to use nuage
  10. when: openshift_use_openshift_sdn | default(true) | bool and openshift_use_nuage | default(false) | bool
  11. - fail:
  12. msg: Nuage sdn can not be used with flannel
  13. when: openshift_use_flannel | default(false) | bool and openshift_use_nuage | default(false) | bool
  14. - fail:
  15. msg: Contiv can not be used with openshift sdn, set openshift_use_openshift_sdn=false if you want to use contiv
  16. when: openshift_use_openshift_sdn | default(true) | bool and openshift_use_contiv | default(false) | bool
  17. - fail:
  18. msg: Contiv can not be used with flannel
  19. when: openshift_use_flannel | default(false) | bool and openshift_use_contiv | default(false) | bool
  20. - fail:
  21. msg: Contiv can not be used with nuage
  22. when: openshift_use_nuage | default(false) | bool and openshift_use_contiv | default(false) | bool
  23. - fail:
  24. msg: Calico can not be used with openshift sdn, set openshift_use_openshift_sdn=false if you want to use Calico
  25. when: openshift_use_openshift_sdn | default(true) | bool and openshift_use_calico | default(false) | bool
  26. - fail:
  27. msg: The Calico playbook does not yet integrate with the Flannel playbook in Openshift. Set either openshift_use_calico or openshift_use_flannel, but not both.
  28. when: openshift_use_calico | default(false) | bool and openshift_use_flannel | default(false) | bool
  29. - fail:
  30. msg: Calico can not be used with Nuage in Openshift. Set either openshift_use_calico or openshift_use_nuage, but not both
  31. when: openshift_use_calico | default(false) | bool and openshift_use_nuage | default(false) | bool
  32. - fail:
  33. msg: Calico can not be used with Contiv in Openshift. Set either openshift_use_calico or openshift_use_contiv, but not both
  34. when: openshift_use_calico | default(false) | bool and openshift_use_contiv | default(false) | bool
  35. - fail:
  36. msg: openshift_hostname must be 63 characters or less
  37. when: openshift_hostname is defined and openshift_hostname | length > 63
  38. - fail:
  39. msg: openshift_public_hostname must be 63 characters or less
  40. when: openshift_public_hostname is defined and openshift_public_hostname | length > 63