summaryrefslogtreecommitdiffstats
path: root/playbooks
diff options
context:
space:
mode:
authorJason DeTiberus <detiber@gmail.com>2015-04-15 20:36:52 -0400
committerJason DeTiberus <detiber@gmail.com>2015-04-15 20:36:52 -0400
commite85ad297c1be0186261e7be4403e8e0a702277ab (patch)
tree5afdd45cb977081ec407b34036d607d0cdda18f1 /playbooks
parentbc0b703b70d9f36b3ad841409454dd21b1934d92 (diff)
parentaaee17b0fc8feddf31d4e5b46a1bfe2f8dabf16b (diff)
downloadopenshift-e85ad297c1be0186261e7be4403e8e0a702277ab.tar.gz
openshift-e85ad297c1be0186261e7be4403e8e0a702277ab.tar.bz2
openshift-e85ad297c1be0186261e7be4403e8e0a702277ab.tar.xz
openshift-e85ad297c1be0186261e7be4403e8e0a702277ab.zip
Merge pull request #21 from lhuard1A/fix_ansible_libvirt_metadata
Fix libvirt metadata used to store ansible tags
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/libvirt/openshift-cluster/templates/domain.xml10
1 files changed, 6 insertions, 4 deletions
diff --git a/playbooks/libvirt/openshift-cluster/templates/domain.xml b/playbooks/libvirt/openshift-cluster/templates/domain.xml
index 8cb017367..7656249da 100644
--- a/playbooks/libvirt/openshift-cluster/templates/domain.xml
+++ b/playbooks/libvirt/openshift-cluster/templates/domain.xml
@@ -2,10 +2,12 @@
<name>{{ item }}</name>
<memory unit='GiB'>1</memory>
<metadata xmlns:ansible="https://github.com/ansible/ansible">
- <ansible:tag>deployment-type-{{ deployment_type }}</ansible:tag>
- <ansible:tag>env-{{ cluster }}</ansible:tag>
- <ansible:tag>env-host-type-{{ cluster }}-openshift-{{ type }}</ansible:tag>
- <ansible:tag>host-type-{{ type }}</ansible:tag>
+ <ansible:tags>
+ <ansible:tag>deployment-type-{{ deployment_type }}</ansible:tag>
+ <ansible:tag>env-{{ cluster }}</ansible:tag>
+ <ansible:tag>env-host-type-{{ cluster }}-openshift-{{ type }}</ansible:tag>
+ <ansible:tag>host-type-{{ type }}</ansible:tag>
+ </ansible:tags>
</metadata>
<currentMemory unit='GiB'>1</currentMemory>
<vcpu placement='static'>2</vcpu>