diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-09-29 15:11:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-29 15:11:38 -0400 |
commit | cd922e0f4a1370118c0e2fd60230a68d74b47095 (patch) | |
tree | 0cfff2d958f9631846dee40938b5a11b3fd1868c /playbooks/common/openshift-node | |
parent | 5d52061dafbd181a4a92018015a8ee4b295e8472 (diff) | |
parent | 20b29cb4a6f2c2ebdd4563775bd32d4caccf0d91 (diff) | |
download | openshift-cd922e0f4a1370118c0e2fd60230a68d74b47095.tar.gz openshift-cd922e0f4a1370118c0e2fd60230a68d74b47095.tar.bz2 openshift-cd922e0f4a1370118c0e2fd60230a68d74b47095.tar.xz openshift-cd922e0f4a1370118c0e2fd60230a68d74b47095.zip |
Merge pull request #2529 from abutcher/play-names
Update play names for consistency.
Diffstat (limited to 'playbooks/common/openshift-node')
-rw-r--r-- | playbooks/common/openshift-node/config.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/playbooks/common/openshift-node/config.yml b/playbooks/common/openshift-node/config.yml index 07a89b7fb..f718dbfbd 100644 --- a/playbooks/common/openshift-node/config.yml +++ b/playbooks/common/openshift-node/config.yml @@ -45,7 +45,7 @@ with_items: "{{ groups.oo_nodes_to_config | default([]) }}" when: hostvars[item].openshift.common is defined and hostvars[item].openshift.common.is_containerized | bool and (item in groups.oo_nodes_to_config and item in groups.oo_masters_to_config) -- name: Configure node instances +- name: Configure containerized nodes hosts: oo_containerized_master_nodes serial: 1 vars: @@ -85,7 +85,7 @@ when: openshift.node.use_openshift_sdn | bool - role: openshift_node -- name: Configure node instances +- name: Configure nodes hosts: oo_nodes_to_config:!oo_containerized_master_nodes vars: openshift_node_master_api_url: "{{ hostvars[groups.oo_first_master.0].openshift.master.api_url }}" @@ -153,7 +153,7 @@ - file: name={{ mktemp.stdout }} state=absent changed_when: False -- name: Set schedulability +- name: Set node schedulability hosts: oo_first_master vars: openshift_nodes: "{{ groups.oo_nodes_to_config | default([]) }}" |