diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-05-16 15:13:14 +0800 |
---|---|---|
committer | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-05-16 15:13:47 +0800 |
commit | 704d1340fb09b5ffad0282bc143d41e2afebd0bf (patch) | |
tree | 9434d101b7d091c09f9ff77b50b63c5fa241d43a /resources/ansible_roles/qtip-workspace/files/template/templates/hosts | |
parent | 7e87b22284cc322bc9effdd8c610f659692249d1 (diff) |
Add support for manually installed (not using installer) OPNFV pod
Change-Id: I314882dd8a9e491f253f825a8da7ec4c91ed3321
Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
Diffstat (limited to 'resources/ansible_roles/qtip-workspace/files/template/templates/hosts')
-rw-r--r-- | resources/ansible_roles/qtip-workspace/files/template/templates/hosts | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/resources/ansible_roles/qtip-workspace/files/template/templates/hosts b/resources/ansible_roles/qtip-workspace/files/template/templates/hosts index cbbfcfef..492651b0 100644 --- a/resources/ansible_roles/qtip-workspace/files/template/templates/hosts +++ b/resources/ansible_roles/qtip-workspace/files/template/templates/hosts @@ -4,12 +4,15 @@ localhost ansible_connection=local [{{ installer_master_group[installer] }}] {{ installer_master_host }} -[fuel-groups:children] +[SUT] # system under test +compute + +[node-groups:children] {% for group in hosts|sort %} {{ group }} {% endfor %} -[fuel-groups:vars] +[node-groups:vars] ansible_ssh_common_args=-F ./ssh.cfg {% for group in hosts|sort %} @@ -19,4 +22,4 @@ ansible_ssh_common_args=-F ./ssh.cfg {% endfor %} {% endfor %} -{% endraw %}
\ No newline at end of file +{% endraw %} |