validate.yml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. ---
  2. # Validate configuration parameters passed to the openshift_management role
  3. ######################################################################
  4. # CORE PARAMETERS
  5. - name: Ensure openshift_management_app_template is valid
  6. assert:
  7. that:
  8. - openshift_management_app_template in __openshift_management_app_templates
  9. msg: |
  10. "openshift_management_app_template must be one of {{
  11. __openshift_management_app_templates | join(', ') }}"
  12. - name: Ensure openshift_management_storage_class is a valid type
  13. assert:
  14. that:
  15. - openshift_management_storage_class in __openshift_management_storage_classes
  16. msg: |
  17. "openshift_management_storage_class must be one of {{
  18. __openshift_management_storage_classes | join(', ') }}"
  19. ######################################################################
  20. # STORAGE PARAMS - NFS
  21. - name: Ensure external NFS storage has a valid NFS server hostname defined
  22. assert:
  23. that:
  24. - openshift_management_storage_nfs_external_hostname | default(False)
  25. msg: |
  26. The selected storage class 'nfs_external' requires a valid
  27. hostname for the openshift_management_storage_nfs_hostname parameter
  28. when:
  29. - openshift_management_storage_class == 'nfs_external'
  30. - name: Ensure local NFS storage has a valid NFS server to use
  31. fail:
  32. msg: |
  33. No NFS hosts detected or defined but storage class is set to
  34. 'nfs'. Add hosts to your [nfs] group or define one manually with
  35. the 'openshift_management_storage_nfs_local_hostname' parameter
  36. when:
  37. - openshift_management_storage_class == 'nfs'
  38. # You haven't created any NFS groups
  39. - (groups.nfs is defined and groups.nfs | length == 0) or (groups.nfs is not defined)
  40. # You did not manually specify a host to use
  41. - (openshift_management_storage_nfs_local_hostname is not defined) or (openshift_management_storage_nfs_local_hostname == false)
  42. ######################################################################
  43. # STORAGE PARAMS -CLOUD PROVIDER
  44. - name: Validate Cloud Provider storage class
  45. assert:
  46. that:
  47. - openshift_cloudprovider_kind in ['aws','azure','gce']
  48. msg: |
  49. openshift_management_storage_class is 'cloudprovider' but you have an
  50. invalid kind defined, '{{ openshift_cloudprovider_kind }}'. See
  51. 'openshift_cloudprovider_kind' in the example inventories for
  52. the required parameters for your selected cloud
  53. provider. Working providers: 'aws', 'azure' and 'gce'.
  54. when:
  55. - openshift_management_storage_class == 'cloudprovider'
  56. - openshift_cloudprovider_kind is defined
  57. - name: Validate 'cloudprovider' Storage Class has required parameters defined
  58. assert:
  59. that:
  60. - openshift_cloudprovider_kind is defined
  61. msg: |
  62. openshift_management_storage_class is 'cloudprovider' but you do not
  63. have 'openshift_cloudprovider_kind' defined, this is
  64. required. Search the example inventories for
  65. 'openshift_cloudprovider_kind'. The required parameters for your
  66. selected cloud provider must be defined in your inventory as
  67. well. Working providers: 'aws', 'azure' and 'gce'.
  68. when:
  69. - openshift_management_storage_class == 'cloudprovider'
  70. ######################################################################
  71. # DATABASE CONNECTION VALIDATION
  72. - name: Validate all required database parameters were provided for ext-db template
  73. assert:
  74. that:
  75. - item in openshift_management_template_parameters
  76. msg: |
  77. "You are using external database services but a required
  78. database parameter {{ item }} was not found in
  79. 'openshift_management_template_parameters'"
  80. with_items: "{{ __openshift_management_required_db_conn_params }}"
  81. when:
  82. - __openshift_management_use_ext_db