ceph-installer/terraform/hosts.j2

9 lines
396 B
Plaintext
Raw Normal View History

2024-01-27 23:26:11 +03:00
[ceph-mon]
%{ for name, ip in cephmons ~}
${name} ansible_ssh_host=${ip} ansible_ssh_common_args='-J ${jumphost} -oStrictHostKeyChecking=no -i ../data/ceph_key' ansible_ssh_user='root'
%{ endfor ~}
[ceph-osd]
%{ for name, ip in cephosds ~}
${name} ansible_ssh_host=${ip} ansible_ssh_common_args='-J ${jumphost} -oStrictHostKeyChecking=no -i ../data/ceph_key' ansible_ssh_user='root'
%{ endfor ~}