init.yml 884 B

123456789101112131415161718192021222324252627
  1. ---
  2. - include: ../../../init/evaluate_groups.yml
  3. vars:
  4. # Do not allow adding hosts during upgrade.
  5. g_new_master_hosts: []
  6. g_new_node_hosts: []
  7. - include: ../../../init/facts.yml
  8. - name: Ensure firewall is not switched during upgrade
  9. hosts: oo_all_hosts
  10. vars:
  11. openshift_master_installed_version: "{{ hostvars[groups.oo_first_master.0].openshift.common.version }}"
  12. tasks:
  13. - name: set currently installed version
  14. set_fact:
  15. openshift_currently_installed_version: "{{ openshift_master_installed_version }}"
  16. - name: Check if iptables is running
  17. command: systemctl status iptables
  18. changed_when: false
  19. failed_when: false
  20. register: service_iptables_status
  21. - name: Set fact os_firewall_use_firewalld FALSE for iptables
  22. set_fact:
  23. os_firewall_use_firewalld: false
  24. when: "'Active: active' in service_iptables_status.stdout"