main.yml 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. # osm_cluster_network_cidr, osm_host_subnet_length and openshift_portal_net are
  15. # now required to avoid changes that may occur between releases
  16. #
  17. # Note: We will skip these checks when some tests run which don't
  18. # actually do any insalling/upgrading/scaling/etc..
  19. # Reference: https://bugzilla.redhat.com/show_bug.cgi?id=1451023
  20. - when:
  21. - not testing_skip_some_requirements|default(False)|bool
  22. assert:
  23. that:
  24. - "osm_cluster_network_cidr is defined"
  25. - "osm_host_subnet_length is defined"
  26. - "openshift_portal_net is defined"
  27. msg: >
  28. osm_cluster_network_cidr, osm_host_subnet_length, and openshift_portal_net are required inventory
  29. variables. If you are upgrading or scaling up these variables should match what is currently used
  30. in the cluster. If you don't remember what these values are you can find them in
  31. /etc/origin/master/master-config.yaml on a master with the names clusterNetworkCIDR
  32. (osm_cluster_network_cidr), hostSubnetLength (osm_host_subnet_length),
  33. and serviceNetworkCIDR (openshift_portal_net).
  34. - name: Standardize on latest variable names
  35. set_fact:
  36. # goal is to deprecate deployment_type in favor of openshift_deployment_type.
  37. # both will be accepted for now, but code should refer to the new name.
  38. # TODO: once this is well-documented, add deprecation notice if using old name.
  39. deployment_type: "{{ openshift_deployment_type | default(deployment_type) | default | string }}"
  40. openshift_deployment_type: "{{ openshift_deployment_type | default(deployment_type) | default | string }}"
  41. - name: Abort when deployment type is invalid
  42. # this variable is required; complain early and clearly if it is invalid.
  43. when: openshift_deployment_type not in known_openshift_deployment_types
  44. fail:
  45. msg: |-
  46. Please set openshift_deployment_type to one of:
  47. {{ known_openshift_deployment_types | join(', ') }}
  48. - name: Normalize openshift_release
  49. set_fact:
  50. # Normalize release if provided, e.g. "v3.5" => "3.5"
  51. # Currently this is not required to be defined for all installs, and the
  52. # `openshift_version` role can generally figure out the specific version
  53. # that gets installed (e.g. 3.5.0.1). So consider this the user's expressed
  54. # intent (if any), not the authoritative version that will be installed.
  55. openshift_release: "{{ openshift_release | string | regex_replace('^v', '') }}"
  56. when: openshift_release is defined
  57. - name: Abort when openshift_release is invalid
  58. when:
  59. - openshift_release is defined
  60. - not openshift_release | match('\d+(\.\d+){1,3}$')
  61. fail:
  62. msg: |-
  63. openshift_release is "{{ openshift_release }}" which is not a valid version string.
  64. Please set it to a version string like "3.4".
  65. - include: unsupported.yml
  66. when:
  67. - not openshift_enable_unsupported_configurations | default(false) | bool