Newer
Older
ansible_spark_openstack / templates / config.j2
Johan Dahlberg on 20 Mar 2015 356 bytes Install hdfs and small fixes to spark


  Host 0.0.0.0
  IdentityFile ~/.ssh/{{ name_of_ssh_key }}
  StrictHostKeyChecking no

  Host localhost
  IdentityFile ~/.ssh/{{ name_of_ssh_key }}
  StrictHostKeyChecking no

{% for host in groups['all'] %}
  Host {{ hostvars[host].ansible_hostname }}
  #User ubuntu
  IdentityFile ~/.ssh/{{ name_of_ssh_key }}
  StrictHostKeyChecking no

{% endfor %}