init.yml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. ---
  2. - name: Create initial host groups for localhost
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. tags:
  8. - always
  9. tasks:
  10. - include_vars: ../../../byo/openshift-cluster/cluster_hosts.yml
  11. - name: Evaluate group l_oo_all_hosts
  12. add_host:
  13. name: "{{ item }}"
  14. groups: l_oo_all_hosts
  15. with_items: "{{ g_all_hosts | default([]) }}"
  16. changed_when: False
  17. - name: Create initial host groups for all hosts
  18. hosts: l_oo_all_hosts
  19. gather_facts: no
  20. tags:
  21. - always
  22. tasks:
  23. - include_vars: ../../../byo/openshift-cluster/cluster_hosts.yml
  24. - include: ../evaluate_groups.yml
  25. vars:
  26. # Do not allow adding hosts during upgrade.
  27. g_new_master_hosts: []
  28. g_new_node_hosts: []
  29. openshift_cluster_id: "{{ cluster_id | default('default') }}"
  30. - name: Set oo_options
  31. hosts: oo_all_hosts
  32. tasks:
  33. - set_fact:
  34. openshift_docker_additional_registries: "{{ lookup('oo_option', 'docker_additional_registries') }}"
  35. when: openshift_docker_additional_registries is not defined
  36. - set_fact:
  37. openshift_docker_insecure_registries: "{{ lookup('oo_option', 'docker_insecure_registries') }}"
  38. when: openshift_docker_insecure_registries is not defined
  39. - set_fact:
  40. openshift_docker_blocked_registries: "{{ lookup('oo_option', 'docker_blocked_registries') }}"
  41. when: openshift_docker_blocked_registries is not defined
  42. - set_fact:
  43. openshift_docker_options: "{{ lookup('oo_option', 'docker_options') }}"
  44. when: openshift_docker_options is not defined
  45. - set_fact:
  46. openshift_docker_log_driver: "{{ lookup('oo_option', 'docker_log_driver') }}"
  47. when: openshift_docker_log_driver is not defined
  48. - set_fact:
  49. openshift_docker_log_options: "{{ lookup('oo_option', 'docker_log_options') }}"
  50. when: openshift_docker_log_options is not defined
  51. - include: ../initialize_facts.yml
  52. - name: Ensure clean repo cache in the event repos have been changed manually
  53. hosts: oo_all_hosts
  54. tags:
  55. - pre_upgrade
  56. tasks:
  57. - name: Clean package cache
  58. command: "{{ ansible_pkg_mgr }} clean all"
  59. when: not openshift.common.is_atomic | bool
  60. args:
  61. warn: no
  62. - name: Ensure firewall is not switched during upgrade
  63. hosts: oo_all_hosts
  64. tasks:
  65. - name: Check if iptables is running
  66. command: systemctl status iptables
  67. ignore_errors: true
  68. changed_when: false
  69. register: service_iptables_status
  70. - name: Set fact os_firewall_use_firewalld FALSE for iptables
  71. set_fact:
  72. os_firewall_use_firewalld: false
  73. when: "'Active: active' in service_iptables_status.stdout"