main.yml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. ---
  2. # We should print out deprecations prior to any failures so that if a play does fail for other reasons
  3. # the user would also be aware of any deprecated variables they should note to adjust
  4. - include_tasks: deprecations.yml
  5. when: not ( openshift_skip_deprecation_check | default(false) ) | bool
  6. - name: Standardize on latest variable names
  7. set_fact:
  8. deployment_subtype: "{{ openshift_deployment_subtype | default(deployment_subtype) | default('basic') | string }}"
  9. openshift_deployment_subtype: "{{ openshift_deployment_subtype | default(deployment_subtype) | default('basic') | string }}"
  10. - name: Normalize openshift_release
  11. set_fact:
  12. # Normalize release if provided, e.g. "v3.5" => "3.5"
  13. # Currently this is not required to be defined for all installs, and the
  14. # `openshift_version` role can generally figure out the specific version
  15. # that gets installed (e.g. 3.5.0.1). So consider this the user's expressed
  16. # intent (if any), not the authoritative version that will be installed.
  17. openshift_release: "{{ openshift_release | string | regex_replace('^v', '') }}"
  18. when: openshift_release is defined
  19. - name: Abort when openshift_release is invalid
  20. when:
  21. - openshift_release is defined
  22. - not (openshift_release is match('^\d+(\.\d+){1,3}$'))
  23. fail:
  24. msg: |-
  25. openshift_release is "{{ openshift_release }}" which is not a valid version string.
  26. Please set openshift_release to a version string and ensure that the value is quoted, ex: openshift_release="3.4".
  27. - include_tasks: unsupported.yml
  28. when:
  29. - not openshift_enable_unsupported_configurations | default(false) | bool
  30. - name: Ensure clusterid is set along with the cloudprovider
  31. fail:
  32. msg: >
  33. Ensure that the openshift_clusterid is set and that all infrastructure has the required tags.
  34. For dynamic provisioning when using multiple clusters in different zones, tag each node with Key=kubernetes.io/cluster/xxxx,Value=clusterid where xxxx and clusterid are unique per cluster. In versions prior to 3.6, this was Key=KubernetesCluster,Value=clusterid.
  35. https://github.com/openshift/openshift-docs/blob/master/install_config/persistent_storage/dynamically_provisioning_pvs.adoc#available-dynamically-provisioned-plug-ins
  36. when:
  37. - openshift_clusterid is not defined
  38. - openshift_cloudprovider_kind is defined
  39. - openshift_cloudprovider_kind == 'aws'
  40. - name: Ensure ansible_service_broker_remove and ansible_service_broker_install are mutually exclusive
  41. fail:
  42. msg: >
  43. Ensure ansible_service_broker_remove and ansible_service_broker_install are mutually exclusive,
  44. do not set both to true. ansible_service_broker_install defaults to true.
  45. when:
  46. - ansible_service_broker_remove | default(false) | bool
  47. - ansible_service_broker_install | default(true) | bool
  48. - name: Ensure template_service_broker_remove and template_service_broker_install are mutually exclusive
  49. fail:
  50. msg: >
  51. Ensure that template_service_broker_remove and template_service_broker_install are mutually exclusive,
  52. do not set both to true. template_service_broker_remove defaults to true.
  53. when:
  54. - template_service_broker_remove | default(false) | bool
  55. - template_service_broker_install | default(true) | bool
  56. - name: Ensure that all requires vsphere configuration variables are set
  57. fail:
  58. msg: >
  59. When the vSphere cloud provider is configured you must define all of these variables:
  60. openshift_cloudprovider_vsphere_username, openshift_cloudprovider_vsphere_password,
  61. openshift_cloudprovider_vsphere_host, openshift_cloudprovider_vsphere_datacenter,
  62. openshift_cloudprovider_vsphere_datastore
  63. when:
  64. - openshift_cloudprovider_kind is defined
  65. - openshift_cloudprovider_kind == 'vsphere'
  66. - ( openshift_cloudprovider_vsphere_username is undefined or openshift_cloudprovider_vsphere_password is undefined or
  67. openshift_cloudprovider_vsphere_host is undefined or openshift_cloudprovider_vsphere_datacenter is undefined or
  68. openshift_cloudprovider_vsphere_datastore is undefined )
  69. - name: Ensure azure configuration variables are defined
  70. when: openshift_cloudprovider_kind | default('none') == 'azure'
  71. block:
  72. - name: ensure provider configuration variables are defined
  73. fail:
  74. msg: >
  75. Required variable(s) for azure provider not defined. Refer to documentation
  76. for more information on configuring for azure provider.
  77. https://github.com/openshift/openshift-docs/blob/master/install_config/configuring_azure.adoc
  78. when: >
  79. openshift_cloudprovider_azure_client_id is not defined
  80. or openshift_cloudprovider_azure_client_secret is not defined
  81. or openshift_cloudprovider_azure_tenant_id is not defined
  82. or openshift_cloudprovider_azure_subscription_id is not defined
  83. or openshift_cloudprovider_azure_resource_group is not defined
  84. or openshift_cloudprovider_azure_location is not defined
  85. - name: Ensure removed web console extension variables are not set
  86. fail:
  87. msg: >
  88. The OpenShift web console extensions must now be served as URLs. You can
  89. add extensions using the openshift_web_console_extension_script_urls
  90. and openshift_web_console_extension_stylesheet_urls variables. The
  91. following variables are no longer used: openshift_master_extension_scripts,
  92. openshift_master_extension_stylesheets, openshift_master_extensions
  93. when:
  94. - openshift_master_extension_scripts is defined or openshift_master_extension_stylesheets is defined or openshift_master_extensions is defined
  95. - name: Ensure that web console port matches API server port
  96. fail:
  97. msg: >
  98. The OpenShift web console port must now match the API server port. If you
  99. were previoiusly running the web console on a different port than the API
  100. server, please open a support ticket.
  101. when:
  102. - openshift_master_console_port is defined
  103. - openshift_master_console_port != openshift_master_api_port
  104. - name: At least one master is schedulable
  105. fail:
  106. msg: >
  107. No schedulable masters found, please remove 'openshift_schedulable=False' from all of your masters.
  108. when:
  109. - l_master_schedulable | length > 0
  110. - false in l_master_schedulable
  111. vars:
  112. l_masters: "{{ groups['oo_masters_to_config'] | default([]) }}"
  113. l_openshift_schedulable: "{{ l_masters | map('extract', hostvars, 'openshift_schedulable') | select('defined') | list }}"
  114. l_master_schedulable: "{{ l_openshift_schedulable | map('bool') | list }}"