diff options
Diffstat (limited to 'resources/template')
-rw-r--r-- | resources/template/hosts.j2 | 18 | ||||
-rw-r--r-- | resources/template/ssh.cfg.j2 | 14 |
2 files changed, 0 insertions, 32 deletions
diff --git a/resources/template/hosts.j2 b/resources/template/hosts.j2 deleted file mode 100644 index 2ebf3c8b..00000000 --- a/resources/template/hosts.j2 +++ /dev/null @@ -1,18 +0,0 @@ -fuel-master -localhost ansible_connection=local - -[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 %} diff --git a/resources/template/ssh.cfg.j2 b/resources/template/ssh.cfg.j2 deleted file mode 100644 index 2fe049e2..00000000 --- a/resources/template/ssh.cfg.j2 +++ /dev/null @@ -1,14 +0,0 @@ -# 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' fuel-master 'ssh-add && nc %h %p' - -{% endfor %} |