noheat deployment: Add groups to dynamic inventory 01/123001/2
authorMaciej Wereski <m.wereski@partner.samsung.com>
Tue, 27 Jul 2021 12:46:46 +0000 (12:46 +0000)
committerMorgan Richomme <morgan.richomme@orange.com>
Tue, 24 Aug 2021 13:40:22 +0000 (13:40 +0000)
Also set variables that will be needed to deploy NFS.

Issue-ID: INT-1601
Signed-off-by: Maciej Wereski <m.wereski@partner.samsung.com>
Change-Id: Ibb033726f040246094f45ec5f1288b4bb4de0ef0

deployment/noheat/infra-openstack/ansible/templates/inventory.ini.j2

index 421c9c2..aa8625c 100644 (file)
@@ -3,6 +3,43 @@
 {{ item.key }} ansible_host={{ item.value }}
 {% endfor %}
 
+[operator]
+{% for item in hosts %}
+{% if "operator" in item.key %}
+{{ item.key }}
+{% endif %}
+{% endfor %}
+
+[control]
+{% for item in hosts %}
+{% if "control" in item.key %}
+{{ item.key }}
+{% endif %}
+{% endfor %}
+
+[workers]
+{% for item in hosts %}
+{% if "worker" in item.key %}
+{{ item.key }}
+{% endif %}
+{% endfor %}
+
+[nfs]
+{% for item in hosts %}
+{% if "nfs" in item.key %}
+{{ item.key }}
+{% endif %}
+{% endfor %}
+
+[nfs:vars]
+nfs_role="server"
+
+[control:vars]
+nfs_role="client"
+
+[workers:vars]
+nfs_role="client"
+
 [all:vars]
 ansible_ssh_private_key_file="~/.ssh/{{ keypair.name }}"
 ansible_ssh_common_args='-o StrictHostKeyChecking=no'