diff options
Diffstat (limited to 'playbooks/common/openshift-master')
-rw-r--r-- | playbooks/common/openshift-master/service.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/playbooks/common/openshift-master/service.yml b/playbooks/common/openshift-master/service.yml index 43ef8b6a1..48a2731aa 100644 --- a/playbooks/common/openshift-master/service.yml +++ b/playbooks/common/openshift-master/service.yml @@ -9,8 +9,11 @@ when: new_cluster_state is not defined - name: Evaluate g_service_masters - add_host: name={{ item }} groups=g_service_masters + add_host: + name: "{{ item }}" + groups: g_service_masters with_items: "{{ oo_host_group_exp | default([]) }}" + changed_when: False - name: Change state on master instance(s) hosts: g_service_masters |