Merge "Move dynamic grouping conditional"

This commit is contained in:
Zuul 2017-10-23 08:30:41 +00:00 committed by Gerrit Code Review
commit 6bf3165eb2
2 changed files with 4 additions and 4 deletions

View File

@ -13,12 +13,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Add {{ inventory_hostname }} to dynamic inventory group
- name: Add hosts to dynamic inventory group
add_host:
group: "{{ dest_group }}"
name: "{{ item }}"
with_items: "{{ groups[src_group] }}"
when:
- "src_group in groups"
- "group_when | default(True)"
tags:
- common-grouping

View File

@ -23,8 +23,8 @@
vars:
src_group: "nova_compute"
dest_group: "neutron_l3_agent, neutron_metadata_agent"
when:
- "neutron_plugin_type == 'ml2.ovs.dvr'"
group_when:
- "neutron_plugin_type == 'ml2.ovs.dvr'"