validate.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. # Validate configuration parameters passed to the openshift_cfme role
  3. - name: Ensure openshift_cfme_app_template is valid
  4. assert:
  5. that:
  6. - openshift_cfme_app_template in openshift_cfme_app_templates
  7. msg: "openshift_cfme_app_template must be one of {{ openshift_cfme_app_templates | join(', ') }}"
  8. - name: Ensure openshift_cfme_storage_class is a valid type
  9. assert:
  10. that:
  11. - openshift_cfme_storage_class in openshift_cfme_storage_classes
  12. msg: "openshift_cfme_storage_class must be one of {{ openshift_cfme_storage_classes | join(', ') }}"
  13. - name: Ensure external NFS storage has a valid NFS server hostname defined
  14. assert:
  15. that:
  16. - openshift_cfme_storage_external_nfs_hostname is not False
  17. msg: The selected storage class 'external' requires a valid hostname for the openshift_cfme_storage_external_nfs_hostname parameter
  18. when:
  19. - openshift_cfme_storage_class == 'external'
  20. - name: Validate Cloud Provider storage class
  21. assert:
  22. that:
  23. - openshift_cloudprovider_kind == 'aws' or openshift_cloudprovider_kind == 'gce'
  24. msg: |
  25. openshift_cfme_storage_class is 'cloudprovider' but you have an
  26. invalid kind defined. See 'openshift_cloudprovider_kind' in the
  27. example inventories for the required parameters for your
  28. selected cloud provider. Working providers: 'aws' and 'gce'.
  29. when:
  30. - openshift_cloudprovider_kind is defined