main.yml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ---
  2. - name: Abort when conflicting deployment type variables are set
  3. when:
  4. - deployment_type is defined
  5. - openshift_deployment_type is defined
  6. - openshift_deployment_type != deployment_type
  7. fail:
  8. msg: |-
  9. openshift_deployment_type is set to "{{ openshift_deployment_type }}".
  10. deployment_type is set to "{{ deployment_type }}".
  11. To avoid unexpected results, this conflict is not allowed.
  12. deployment_type is deprecated in favor of openshift_deployment_type.
  13. Please specify only openshift_deployment_type, or make both the same.
  14. - name: Standardize on latest variable names
  15. set_fact:
  16. # goal is to deprecate deployment_type in favor of openshift_deployment_type.
  17. # both will be accepted for now, but code should refer to the new name.
  18. # TODO: once this is well-documented, add deprecation notice if using old name.
  19. deployment_type: "{{ openshift_deployment_type | default(deployment_type) | default | string }}"
  20. openshift_deployment_type: "{{ openshift_deployment_type | default(deployment_type) | default | string }}"
  21. - name: Abort when deployment type is invalid
  22. # this variable is required; complain early and clearly if it is invalid.
  23. when: openshift_deployment_type not in known_openshift_deployment_types
  24. fail:
  25. msg: |-
  26. Please set openshift_deployment_type to one of:
  27. {{ known_openshift_deployment_types | join(', ') }}
  28. - name: Normalize openshift_release
  29. set_fact:
  30. # Normalize release if provided, e.g. "v3.5" => "3.5"
  31. # Currently this is not required to be defined for all installs, and the
  32. # `openshift_version` role can generally figure out the specific version
  33. # that gets installed (e.g. 3.5.0.1). So consider this the user's expressed
  34. # intent (if any), not the authoritative version that will be installed.
  35. openshift_release: "{{ openshift_release | string | regex_replace('^v', '') }}"
  36. when: openshift_release is defined
  37. - name: Abort when openshift_release is invalid
  38. when:
  39. - openshift_release is defined
  40. - not openshift_release | match('\d+(\.\d+){1,3}$')
  41. fail:
  42. msg: |-
  43. openshift_release is "{{ openshift_release }}" which is not a valid version string.
  44. Please set it to a version string like "3.4".
  45. - include: unsupported.yml
  46. when:
  47. - not openshift_enable_unsupported_configurations | default(false) | bool