config.yml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. ---
  2. - name: Master Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Master install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_master:
  11. status: "In Progress"
  12. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  13. - import_playbook: certificates.yml
  14. - name: Disable excluders
  15. hosts: oo_masters_to_config
  16. gather_facts: no
  17. roles:
  18. - role: openshift_excluder
  19. r_openshift_excluder_action: disable
  20. - name: Gather and set facts for master hosts
  21. hosts: oo_masters_to_config
  22. pre_tasks:
  23. # Per https://bugzilla.redhat.com/show_bug.cgi?id=1469336
  24. #
  25. # When scaling up a cluster upgraded from OCP <= 3.5, ensure that
  26. # OPENSHIFT_DEFAULT_REGISTRY is present as defined on the existing
  27. # masters, or absent if such is the case.
  28. - name: Detect if this host is a new master in a scale up
  29. set_fact:
  30. g_openshift_master_is_scaleup: "{{ inventory_hostname in ( groups['new_masters'] | default([]) ) }}"
  31. - name: Scaleup Detection
  32. debug:
  33. var: g_openshift_master_is_scaleup
  34. - name: Check for RPM generated config marker file .config_managed
  35. stat:
  36. path: /etc/origin/.config_managed
  37. register: rpmgenerated_config
  38. - name: Remove RPM generated config files if present
  39. file:
  40. path: "/etc/origin/{{ item }}"
  41. state: absent
  42. when:
  43. - rpmgenerated_config.stat.exists == true
  44. - openshift_deployment_type == 'openshift-enterprise'
  45. with_items:
  46. - master
  47. - node
  48. - .config_managed
  49. - set_fact:
  50. openshift_master_etcd_port: "{{ (etcd_client_port | default('2379')) if (groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config) else none }}"
  51. openshift_master_etcd_hosts: "{{ hostvars
  52. | lib_utils_oo_select_keys(groups['oo_etcd_to_config']
  53. | default([]))
  54. | lib_utils_oo_collect('openshift.common.hostname')
  55. | default(none, true) }}"
  56. roles:
  57. - openshift_facts
  58. post_tasks:
  59. - openshift_facts:
  60. role: master
  61. local_facts:
  62. api_port: "{{ openshift_master_api_port | default(None) }}"
  63. api_url: "{{ openshift_master_api_url | default(None) }}"
  64. api_use_ssl: "{{ openshift_master_api_use_ssl | default(None) }}"
  65. controllers_port: "{{ openshift_master_controllers_port | default(None) }}"
  66. public_api_url: "{{ openshift_master_public_api_url | default(None) }}"
  67. cluster_hostname: "{{ openshift_master_cluster_hostname | default(None) }}"
  68. cluster_public_hostname: "{{ openshift_master_cluster_public_hostname | default(None) }}"
  69. console_path: "{{ openshift_master_console_path | default(None) }}"
  70. console_port: "{{ openshift_master_console_port | default(None) }}"
  71. console_url: "{{ openshift_master_console_url | default(None) }}"
  72. console_use_ssl: "{{ openshift_master_console_use_ssl | default(None) }}"
  73. public_console_url: "{{ openshift_master_public_console_url | default(None) }}"
  74. master_count: "{{ openshift_master_count | default(groups.oo_masters | length) }}"
  75. - name: Inspect state of first master config settings
  76. hosts: oo_first_master
  77. roles:
  78. - role: openshift_facts
  79. post_tasks:
  80. - openshift_facts:
  81. role: master
  82. local_facts:
  83. session_auth_secrets: "{{ openshift_master_session_auth_secrets | default(openshift.master.session_auth_secrets | default(None)) }}"
  84. session_encryption_secrets: "{{ openshift_master_session_encryption_secrets | default(openshift.master.session_encryption_secrets | default(None)) }}"
  85. - name: Check for existing configuration
  86. stat:
  87. path: /etc/origin/master/master-config.yaml
  88. register: master_config_stat
  89. - name: Set clean install fact
  90. set_fact:
  91. l_clean_install: "{{ not master_config_stat.stat.exists | bool }}"
  92. - name: Determine if etcd3 storage is in use
  93. command: grep -Pzo "storage-backend:\n.*etcd3" /etc/origin/master/master-config.yaml -q
  94. register: etcd3_grep
  95. failed_when: false
  96. changed_when: false
  97. - name: Set etcd3 fact
  98. set_fact:
  99. l_etcd3_enabled: "{{ etcd3_grep.rc == 0 | bool }}"
  100. - name: Check if atomic-openshift-master sysconfig exists yet
  101. stat:
  102. path: /etc/sysconfig/atomic-openshift-master
  103. register: l_aom_exists
  104. - name: Preserve OPENSHIFT_DEFAULT_REGISTRY master parameter if present
  105. command: awk '/^OPENSHIFT_DEFAULT_REGISTRY/' /etc/sysconfig/atomic-openshift-master
  106. register: l_default_registry_defined
  107. when: l_aom_exists.stat.exists | bool
  108. - name: Check if atomic-openshift-master-api sysconfig exists yet
  109. stat:
  110. path: /etc/sysconfig/atomic-openshift-master-api
  111. register: l_aom_api_exists
  112. - name: Preserve OPENSHIFT_DEFAULT_REGISTRY master-api parameter if present
  113. command: awk '/^OPENSHIFT_DEFAULT_REGISTRY/' /etc/sysconfig/atomic-openshift-master-api
  114. register: l_default_registry_defined_api
  115. when: l_aom_api_exists.stat.exists | bool
  116. - name: Check if atomic-openshift-master-controllers sysconfig exists yet
  117. stat:
  118. path: /etc/sysconfig/atomic-openshift-master-controllers
  119. register: l_aom_controllers_exists
  120. - name: Preserve OPENSHIFT_DEFAULT_REGISTRY master-controllers parameter if present
  121. command: awk '/^OPENSHIFT_DEFAULT_REGISTRY/' /etc/sysconfig/atomic-openshift-master-controllers
  122. register: l_default_registry_defined_controllers
  123. when: l_aom_controllers_exists.stat.exists | bool
  124. - name: Update facts with OPENSHIFT_DEFAULT_REGISTRY value
  125. set_fact:
  126. l_default_registry_value: "{{ l_default_registry_defined.stdout | default('') }}"
  127. l_default_registry_value_api: "{{ l_default_registry_defined_api.stdout | default('') }}"
  128. l_default_registry_value_controllers: "{{ l_default_registry_defined_controllers.stdout | default('') }}"
  129. - name: Generate master session secrets
  130. hosts: oo_first_master
  131. vars:
  132. g_session_secrets_present: "{{ (openshift.master.session_auth_secrets | default([])) | length > 0 and (openshift.master.session_encryption_secrets | default([])) | length > 0 }}"
  133. g_session_auth_secrets: "{{ [ 24 | lib_utils_oo_generate_secret ] }}"
  134. g_session_encryption_secrets: "{{ [ 24 | lib_utils_oo_generate_secret ] }}"
  135. roles:
  136. - role: openshift_facts
  137. tasks:
  138. - openshift_facts:
  139. role: master
  140. local_facts:
  141. session_auth_secrets: "{{ g_session_auth_secrets }}"
  142. session_encryption_secrets: "{{ g_session_encryption_secrets }}"
  143. when: not g_session_secrets_present | bool
  144. - name: Configure masters
  145. hosts: oo_masters_to_config
  146. any_errors_fatal: true
  147. vars:
  148. openshift_master_count: "{{ openshift.master.master_count }}"
  149. openshift_master_session_auth_secrets: "{{ hostvars[groups.oo_first_master.0].openshift.master.session_auth_secrets }}"
  150. openshift_master_session_encryption_secrets: "{{ hostvars[groups.oo_first_master.0].openshift.master.session_encryption_secrets }}"
  151. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  152. openshift_master_etcd_hosts: "{{ hostvars
  153. | lib_utils_oo_select_keys(groups['oo_etcd_to_config'] | default([]))
  154. | lib_utils_oo_collect('openshift.common.hostname')
  155. | default(none, true) }}"
  156. openshift_no_proxy_etcd_host_ips: "{{ hostvars | lib_utils_oo_select_keys(groups['oo_etcd_to_config'] | default([]))
  157. | lib_utils_oo_collect('openshift.common.ip') | default([]) | join(',')
  158. }}"
  159. pre_tasks:
  160. # This will be moved into the control plane role once openshift_master is removed
  161. - name: Add static pod and systemd shim commands
  162. import_role:
  163. name: openshift_control_plane
  164. tasks_from: static_shim
  165. - name: Prepare the bootstrap node config on masters for self-hosting
  166. import_role:
  167. name: openshift_node_group
  168. tasks_from: bootstrap
  169. when: openshift_master_bootstrap_enabled | default(false) | bool
  170. roles:
  171. - role: openshift_master_facts
  172. - role: openshift_clock
  173. - role: openshift_cloud_provider
  174. when: openshift_cloudprovider_kind is defined
  175. - role: openshift_builddefaults
  176. - role: openshift_buildoverrides
  177. - role: nickhammond.logrotate
  178. # DEPRECATED: begin moving away from this
  179. - role: openshift_master
  180. openshift_master_ha: "{{ (groups.oo_masters | length > 1) | bool }}"
  181. openshift_master_hosts: "{{ groups.oo_masters_to_config }}"
  182. r_openshift_master_clean_install: "{{ hostvars[groups.oo_first_master.0].l_clean_install }}"
  183. r_openshift_master_etcd3_storage: "{{ hostvars[groups.oo_first_master.0].l_etcd3_enabled }}"
  184. openshift_master_is_scaleup_host: "{{ g_openshift_master_is_scaleup | default(false) }}"
  185. openshift_master_default_registry_value: "{{ hostvars[groups.oo_first_master.0].l_default_registry_value }}"
  186. openshift_master_default_registry_value_api: "{{ hostvars[groups.oo_first_master.0].l_default_registry_value_api }}"
  187. openshift_master_default_registry_value_controllers: "{{ hostvars[groups.oo_first_master.0].l_default_registry_value_controllers }}"
  188. when: not ( openshift_master_bootstrap_enabled | default(false) | bool )
  189. - role: openshift_control_plane
  190. when: openshift_master_bootstrap_enabled | default(false) | bool
  191. - role: tuned
  192. - role: nuage_ca
  193. when: openshift_use_nuage | default(false) | bool
  194. - role: nuage_common
  195. when: openshift_use_nuage | default(false) | bool
  196. - role: nuage_master
  197. when: openshift_use_nuage | default(false) | bool
  198. - role: calico_master
  199. when: openshift_use_calico | default(false) | bool
  200. tasks:
  201. - import_role:
  202. name: kuryr
  203. tasks_from: master
  204. when: openshift_use_kuryr | default(false) | bool
  205. - name: setup bootstrap settings
  206. include_tasks: tasks/enable_bootstrap.yml
  207. when: openshift_master_bootstrap_enabled | default(false) | bool
  208. post_tasks:
  209. - name: Create group for deployment type
  210. group_by: key=oo_masters_deployment_type_{{ openshift_deployment_type }}
  211. changed_when: False
  212. - name: Configure API Aggregation on masters
  213. hosts: oo_masters
  214. serial: 1
  215. roles:
  216. - role: openshift_facts
  217. tasks:
  218. - include_tasks: tasks/wire_aggregator.yml
  219. - name: Re-enable excluder if it was previously enabled
  220. hosts: oo_masters_to_config
  221. gather_facts: no
  222. roles:
  223. - role: openshift_excluder
  224. r_openshift_excluder_action: enable
  225. - name: Master Install Checkpoint End
  226. hosts: all
  227. gather_facts: false
  228. tasks:
  229. - name: Set Master install 'Complete'
  230. run_once: true
  231. set_stats:
  232. data:
  233. installer_phase_master:
  234. status: "Complete"
  235. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"