main.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. ---
  2. - name: Verify required variables are set
  3. fail:
  4. msg: openshift_master_default_subdomain must be set to deploy metrics
  5. when: openshift_hosted_metrics_deploy | default(false) | bool and openshift_master_default_subdomain == ""
  6. # NOTE: These metrics variables are unfortunately needed by both the master and the metrics roles
  7. # to properly configure the master-config.yaml file.
  8. #
  9. # NOTE: Today only changing the hostname for the metrics public URL is supported, the
  10. # path must stay consistent. As such if openshift_hosted_metrics_public_url is set in
  11. # inventory, we extract the hostname, and then reset openshift_hosted_metrics_public_url
  12. # to the format that we know is valid. (This may change in future)
  13. - name: Set g_metrics_hostname
  14. set_fact:
  15. g_metrics_hostname: "{{ openshift_hosted_metrics_public_url
  16. | default('hawkular-metrics.' ~ openshift_master_default_subdomain)
  17. | lib_utils_oo_hostname_from_url }}"
  18. - set_fact:
  19. openshift_hosted_metrics_deploy_url: "https://{{ g_metrics_hostname }}/hawkular/metrics"
  20. when: (openshift_hosted_metrics_deploy | default(false) | bool) or (openshift_hosted_metrics_public_url is defined)
  21. - name: Set master facts
  22. openshift_facts:
  23. role: master
  24. local_facts:
  25. cluster_hostname: "{{ openshift_master_cluster_hostname | default(None) }}"
  26. cluster_public_hostname: "{{ openshift_master_cluster_public_hostname | default(None) }}"
  27. api_port: "{{ openshift_master_api_port }}"
  28. api_url: "{{ openshift_master_api_url | default(None) }}"
  29. api_use_ssl: "{{ openshift_master_api_use_ssl | default(None) }}"
  30. public_api_url: "{{ openshift_master_public_api_url | default(None) }}"
  31. console_path: "{{ openshift_master_console_path | default(None) }}"
  32. console_port: "{{ openshift_master_console_port | default(None) }}"
  33. console_url: "{{ openshift_master_console_url | default(None) }}"
  34. console_use_ssl: "{{ openshift_master_console_use_ssl | default(None) }}"
  35. public_console_url: "{{ openshift_master_public_console_url | default(None) }}"
  36. logging_public_url: "{{ openshift_master_logging_public_url | default(None) }}"
  37. logout_url: "{{ openshift_master_logout_url | default(None) }}"
  38. bind_addr: "{{ openshift_master_bind_addr | default(None) }}"
  39. session_max_seconds: "{{ openshift_master_session_max_seconds | default(None) }}"
  40. session_name: "{{ openshift_master_session_name | default(None) }}"
  41. ldap_ca: "{{ openshift_master_ldap_ca | default(lookup('file', openshift_master_ldap_ca_file) if openshift_master_ldap_ca_file is defined else None) }}"
  42. openid_ca: "{{ openshift_master_openid_ca | default(lookup('file', openshift_master_openid_ca_file) if openshift_master_openid_ca_file is defined else None) }}"
  43. registry_url: "{{ oreg_url | default(None) }}"
  44. registry_selector: "{{ openshift_registry_selector | default(None) }}"
  45. api_server_args: "{{ osm_api_server_args | default(None) }}"
  46. controller_args: "{{ osm_controller_args | default(None) }}"
  47. disabled_features: "{{ osm_disabled_features | default(None) }}"
  48. admission_plugin_config: "{{openshift_master_admission_plugin_config }}"
  49. kube_admission_plugin_config: "{{openshift_master_kube_admission_plugin_config | default(None) }}" # deprecated, merged with admission_plugin_config
  50. image_policy_config: "{{ openshift_master_image_policy_config | default(None) }}"
  51. image_policy_allowed_registries_for_import: "{{ openshift_master_image_policy_allowed_registries_for_import | default(None) }}"
  52. - name: Determine if scheduler config present
  53. stat:
  54. path: "{{ openshift_master_scheduler_conf }}"
  55. get_checksum: false
  56. get_attributes: false
  57. get_mime: false
  58. register: scheduler_config_stat
  59. - name: Set Default scheduler predicates and priorities
  60. set_fact:
  61. # openshift_master_facts_default_predicates is a custom lookup plugin in
  62. # role lib_utils
  63. openshift_master_scheduler_default_predicates: "{{ lookup('openshift_master_facts_default_predicates') }}"
  64. openshift_master_scheduler_default_priorities: "{{ lookup('openshift_master_facts_default_priorities') }}"
  65. - block:
  66. - name: Retrieve current scheduler config
  67. slurp:
  68. src: "{{ openshift_master_scheduler_conf }}"
  69. register: current_scheduler_config
  70. - name: Set openshift_master_scheduler_current_config
  71. set_fact:
  72. openshift_master_scheduler_current_config: "{{ current_scheduler_config.content | b64decode | from_json }}"
  73. - name: Test if scheduler config is readable
  74. fail:
  75. msg: "Unknown scheduler config apiVersion {{ openshift_master_scheduler_config.apiVersion }}"
  76. when: openshift_master_scheduler_current_config.apiVersion | default(None) != 'v1'
  77. - name: Set current scheduler predicates and priorities
  78. set_fact:
  79. openshift_master_scheduler_current_predicates: "{{ openshift_master_scheduler_current_config.predicates }}"
  80. openshift_master_scheduler_current_priorities: "{{ openshift_master_scheduler_current_config.priorities }}"
  81. when: scheduler_config_stat.stat.exists