unsupported.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. # This task list checks for unsupported configurations. Values here should yield
  3. # a partially functioning cluster but would not be supported for production use.
  4. - name: Ensure that openshift_use_dnsmasq is true
  5. when:
  6. - not openshift_use_dnsmasq | default(true) | bool
  7. fail:
  8. msg: |-
  9. Starting in 3.6 openshift_use_dnsmasq must be true or critical features
  10. will not function. This also means that NetworkManager must be installed
  11. enabled and responsible for management of the primary interface.
  12. - set_fact:
  13. __using_dynamic: True
  14. when:
  15. - hostvars[inventory_hostname][item] in ['dynamic']
  16. with_items:
  17. - "{{ hostvars[inventory_hostname] | vars_with_pattern(pattern='openshift_.*_storage_kind') }}"
  18. - name: Ensure that dynamic provisioning is set if using dynamic storage
  19. when:
  20. - dynamic_volumes_check | default(true) | bool
  21. - not openshift_master_dynamic_provisioning_enabled | default(false) | bool
  22. - not openshift_cloudprovider_kind is defined
  23. - __using_dynamic is defined and __using_dynamic | bool
  24. fail:
  25. msg: |-
  26. Using a storage kind of 'dynamic' without enabling dynamic provisioning nor
  27. setting a cloud provider will cause generated PVCs to not be able to bind as
  28. intended. Either update to not use a dynamic storage or set
  29. openshift_master_dynamic_provisioning_enabled to True and set an
  30. openshift_cloudprovider_kind. You can disable this check with
  31. 'dynamic_volumes_check=False'.