summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/upgrades/init.yml
blob: 9981d905b1e14452116bc1adb9e922dfcf8782ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
- include: ../../../init/evaluate_groups.yml
  vars:
    # Do not allow adding hosts during upgrade.
    g_new_master_hosts: []
    g_new_node_hosts: []

- include: ../../../init/facts.yml

- name: Ensure firewall is not switched during upgrade
  hosts: oo_all_hosts
  vars:
    openshift_master_installed_version: "{{ hostvars[groups.oo_first_master.0].openshift.common.version }}"
  tasks:
  - name: set currently installed version
    set_fact:
      openshift_currently_installed_version: "{{ openshift_master_installed_version }}"
  - name: Check if iptables is running
    command: systemctl status iptables
    changed_when: false
    failed_when: false
    register: service_iptables_status

  - name: Set fact os_firewall_use_firewalld FALSE for iptables
    set_fact:
      os_firewall_use_firewalld: false
    when: "'Active: active' in service_iptables_status.stdout"