main.yml 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. ---
  2. # openshift_master_defaults_in_use is a workaround to detect if we are consuming
  3. # the plays from the role or outside of the role.
  4. openshift_master_defaults_in_use: True
  5. openshift_master_debug_level: "{{ debug_level | default(2) }}"
  6. r_openshift_master_firewall_enabled: "{{ os_firewall_enabled | default(True) }}"
  7. r_openshift_master_use_firewalld: "{{ os_firewall_use_firewalld | default(False) }}"
  8. system_images_registry_dict:
  9. openshift-enterprise: "registry.access.redhat.com"
  10. origin: "docker.io"
  11. system_images_registry: "{{ system_images_registry_dict[openshift_deployment_type | default('origin')] }}"
  12. l_is_master_system_container: "{{ (openshift_use_master_system_container | default(openshift_use_system_containers | default(false)) | bool) }}"
  13. openshift_master_dns_port: 8053
  14. openshift_node_ips: []
  15. r_openshift_master_clean_install: false
  16. r_openshift_master_etcd3_storage: false
  17. r_openshift_master_os_firewall_enable: true
  18. r_openshift_master_os_firewall_deny: []
  19. default_r_openshift_master_os_firewall_allow:
  20. - service: api server https
  21. port: "{{ openshift.master.api_port }}/tcp"
  22. - service: api controllers https
  23. port: "{{ openshift.master.controllers_port }}/tcp"
  24. - service: skydns tcp
  25. port: "{{ openshift_master_dns_port }}/tcp"
  26. - service: skydns udp
  27. port: "{{ openshift_master_dns_port }}/udp"
  28. - service: etcd embedded
  29. port: 4001/tcp
  30. cond: "{{ groups.oo_etcd_to_config | default([]) | length == 0 }}"
  31. r_openshift_master_os_firewall_allow: "{{ default_r_openshift_master_os_firewall_allow | union(openshift_master_open_ports | default([])) }}"
  32. # oreg_url is defined by user input
  33. oreg_host: "{{ oreg_url.split('/')[0] if (oreg_url is defined and '.' in oreg_url.split('/')[0]) else '' }}"
  34. oreg_auth_credentials_path: "{{ r_openshift_master_data_dir }}/.docker"
  35. oreg_auth_credentials_replace: False
  36. l_bind_docker_reg_auth: False
  37. openshift_docker_alternative_creds: "{{ (openshift_docker_use_system_container | default(False)) or (openshift_use_crio_only | default(False)) }}"
  38. containerized_svc_dir: "/usr/lib/systemd/system"
  39. ha_svc_template_path: "native-cluster"
  40. # NOTE
  41. # r_openshift_master_*_default may be defined external to this role.
  42. # openshift_use_*, if defined, may affect other roles or play behavior.
  43. r_openshift_master_use_openshift_sdn_default: "{{ openshift_use_openshift_sdn | default(True) }}"
  44. r_openshift_master_use_openshift_sdn: "{{ r_openshift_master_use_openshift_sdn_default }}"
  45. r_openshift_master_use_nuage_default: "{{ openshift_use_nuage | default(False) }}"
  46. r_openshift_master_use_nuage: "{{ r_openshift_master_use_nuage_default }}"
  47. r_openshift_master_use_contiv_default: "{{ openshift_use_contiv | default(False) }}"
  48. r_openshift_master_use_contiv: "{{ r_openshift_master_use_contiv_default }}"
  49. r_openshift_master_use_kuryr_default: "{{ openshift_use_kuryr | default(False) }}"
  50. r_openshift_master_use_kuryr: "{{ r_openshift_master_use_kuryr_default }}"
  51. r_openshift_master_data_dir_default: "{{ openshift_data_dir | default('/var/lib/origin') }}"
  52. r_openshift_master_data_dir: "{{ r_openshift_master_data_dir_default }}"
  53. r_openshift_master_sdn_network_plugin_name_default: "{{ os_sdn_network_plugin_name | default('redhat/openshift-ovs-subnet') }}"
  54. r_openshift_master_sdn_network_plugin_name: "{{ r_openshift_master_sdn_network_plugin_name_default }}"
  55. openshift_master_image_config_latest_default: "{{ openshift_image_config_latest | default(False) }}"
  56. openshift_master_image_config_latest: "{{ openshift_master_image_config_latest_default }}"
  57. openshift_master_config_dir_default: "{{ openshift.common.config_base ~ '/master' if openshift is defined and 'common' in openshift else '/etc/origin/master' }}"
  58. openshift_master_config_dir: "{{ openshift_master_config_dir_default }}"
  59. openshift_master_bootstrap_enabled: False
  60. openshift_master_csr_sa: node-bootstrapper
  61. openshift_master_csr_namespace: openshift-infra
  62. openshift_master_config_file: "{{ openshift_master_config_dir }}/master-config.yaml"
  63. openshift_master_scheduler_conf: "{{ openshift_master_config_dir }}/scheduler.json"