validate.yml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. ---
  2. # Validate configuration parameters passed to the openshift_cfme role
  3. ######################################################################
  4. # CORE PARAMETERS
  5. - name: Ensure openshift_cfme_app_template is valid
  6. assert:
  7. that:
  8. - openshift_cfme_app_template in __openshift_cfme_app_templates
  9. msg: "openshift_cfme_app_template must be one of {{ __openshift_cfme_app_templates | join(', ') }}"
  10. - name: Ensure openshift_cfme_storage_class is a valid type
  11. assert:
  12. that:
  13. - openshift_cfme_storage_class in __openshift_cfme_storage_classes
  14. msg: "openshift_cfme_storage_class must be one of {{ __openshift_cfme_storage_classes | join(', ') }}"
  15. ######################################################################
  16. # STORAGE PARAMS - NFS
  17. - name: Ensure external NFS storage has a valid NFS server hostname defined
  18. assert:
  19. that:
  20. - openshift_cfme_storage_nfs_external_hostname | default(False)
  21. msg: The selected storage class 'nfs_external' requires a valid hostname for the openshift_cfme_storage_nfs_hostname parameter
  22. when:
  23. - openshift_cfme_storage_class == 'nfs_external'
  24. # that 'nfs' types have one of the following set:
  25. #
  26. ######################################################################
  27. # STORAGE PARAMS -CLOUD PROVIDER
  28. - name: Validate Cloud Provider storage class
  29. assert:
  30. that:
  31. - openshift_cloudprovider_kind == 'aws' or openshift_cloudprovider_kind == 'gce'
  32. msg: |
  33. openshift_cfme_storage_class is 'cloudprovider' but you have an
  34. invalid kind defined. See 'openshift_cloudprovider_kind' in the
  35. example inventories for the required parameters for your
  36. selected cloud provider. Working providers: 'aws' and 'gce'.
  37. when:
  38. - openshift_cfme_storage_class == 'cloudprovider'
  39. - openshift_cloudprovider_kind is defined
  40. - name: Validate 'cloudprovider' Storage Class has required parameters defined
  41. assert:
  42. that:
  43. - openshift_cloudprovider_kind is defined
  44. msg: |
  45. openshift_cfme_storage_class is 'cloudprovider' but you do not
  46. have 'openshift_cloudprovider_kind' defined, this is
  47. required. Search the example inventories for
  48. 'openshift_cloudprovider_kind'. The required parameters for your
  49. selected cloud provider must be defined in your inventory as
  50. well. Working providers: 'aws' and 'gce'.
  51. when:
  52. - openshift_cfme_storage_class == 'cloudprovider'
  53. ######################################################################
  54. # DATABASE CONNECTION VALIDATION
  55. - name: Validate all required database parameters were provided for ext-db template
  56. assert:
  57. that:
  58. - item in openshift_cfme_template_parameters
  59. msg: |
  60. "You are not using podified database services and a required
  61. database parameter {{ item }} was not found in
  62. 'openshift_cfme_template_parameters'"
  63. with_items: "{{ __openshift_cfme_required_db_conn_params }}"
  64. when:
  65. - openshift_cfme_app_template in ['miq-template-ext-db', 'cfme-template-ext-db']