aboutsummaryrefslogtreecommitdiffstats
path: root/resources/ansible_roles/qtip-workspace/files/template/templates
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-05-08 06:28:14 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-05-08 06:28:14 +0000
commitf25075b0dd2656efd1daae10c4739f029788c83f (patch)
tree64e0d10fec1c37a6229915ed118d862f5cd84c3b /resources/ansible_roles/qtip-workspace/files/template/templates
parent35c4baddb47fd978fbc3472508615a15cf3b6c0a (diff)
parent3f4432611417378eb56c962b1fbc5270722e77cb (diff)
Merge "Merge workspace template into one directory"
Diffstat (limited to 'resources/ansible_roles/qtip-workspace/files/template/templates')
-rw-r--r--resources/ansible_roles/qtip-workspace/files/template/templates/hosts22
-rw-r--r--resources/ansible_roles/qtip-workspace/files/template/templates/ssh.cfg16
2 files changed, 38 insertions, 0 deletions
diff --git a/resources/ansible_roles/qtip-workspace/files/template/templates/hosts b/resources/ansible_roles/qtip-workspace/files/template/templates/hosts
new file mode 100644
index 00000000..cbbfcfef
--- /dev/null
+++ b/resources/ansible_roles/qtip-workspace/files/template/templates/hosts
@@ -0,0 +1,22 @@
+{% raw %}
+localhost ansible_connection=local
+
+[{{ installer_master_group[installer] }}]
+{{ installer_master_host }}
+
+[fuel-groups:children]
+{% for group in hosts|sort %}
+{{ group }}
+{% endfor %}
+
+[fuel-groups:vars]
+ansible_ssh_common_args=-F ./ssh.cfg
+
+{% for group in hosts|sort %}
+[{{ group }}]
+{% for host in hosts[group]|sort %}
+{{ host }}
+{% endfor %}
+
+{% endfor %}
+{% endraw %} \ No newline at end of file
diff --git a/resources/ansible_roles/qtip-workspace/files/template/templates/ssh.cfg b/resources/ansible_roles/qtip-workspace/files/template/templates/ssh.cfg
new file mode 100644
index 00000000..67246054
--- /dev/null
+++ b/resources/ansible_roles/qtip-workspace/files/template/templates/ssh.cfg
@@ -0,0 +1,16 @@
+{% raw %}
+# Connect to target node through jump host
+#
+# OpenSSH 7.3:
+# ProxyJump jumphost
+# before OpenSSH 7.3
+# ProxyCommand ssh -o 'ForwardAgent yes' jumphost 'ssh-add && nc %h %p'
+
+{% for (name, host) in hosts_meta.items() %}
+Host {{ name }}
+ HostName {{ host.ansible_ssh_host }}
+ User root
+ ProxyCommand ssh -o 'ForwardAgent yes' {{ installer_master_host }} 'ssh-add && nc %h %p'
+
+{% endfor %}
+{% endraw %} \ No newline at end of file