diff options
| -rw-r--r-- | playbooks/common/openshift-cluster/evaluate_groups.yml | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/common/openshift-cluster/evaluate_groups.yml b/playbooks/common/openshift-cluster/evaluate_groups.yml index 3fb42a7fa..b3e02fb97 100644 --- a/playbooks/common/openshift-cluster/evaluate_groups.yml +++ b/playbooks/common/openshift-cluster/evaluate_groups.yml @@ -77,7 +77,7 @@        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"        ansible_become: "{{ g_sudo | default(omit) }}"      with_items: "{{ g_master_hosts | default([]) }}" -    when: g_nodeonmaster | default(false) == true and g_new_node_hosts is not defined +    when: g_nodeonmaster | default(false) | bool and not g_new_node_hosts | default(false) | bool    - name: Evaluate oo_first_etcd      add_host:  | 
