launch.yml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. ---
  2. - name: Launch instance(s)
  3. hosts: localhost
  4. connection: local
  5. gather_facts: no
  6. # TODO: modify atomic_ami based on deployment_type
  7. vars:
  8. inst_region: us-east-1
  9. atomic_ami: ami-86781fee
  10. user_data_file: user_data.txt
  11. tasks:
  12. - name: Launch instances
  13. ec2:
  14. state: present
  15. region: "{{ inst_region }}"
  16. keypair: libra
  17. group: ['public']
  18. instance_type: m3.large
  19. image: "{{ atomic_ami }}"
  20. count: "{{ oo_new_inst_names | oo_len }}"
  21. user_data: "{{ lookup('file', user_data_file) }}"
  22. wait: yes
  23. register: ec2
  24. - name: Add new instances public IPs to the atomic proxy host group
  25. add_host: "hostname={{ item.public_ip }} groupname=new_ec2_instances"
  26. with_items: ec2.instances
  27. - name: Add Name and environment tags to instances
  28. ec2_tag: "resource={{ item.1.id }} region={{ inst_region }} state=present"
  29. with_together:
  30. - oo_new_inst_names
  31. - ec2.instances
  32. args:
  33. tags:
  34. Name: "{{ item.0 }}"
  35. - name: Add other tags to instances
  36. ec2_tag: resource={{ item.id }} region={{ inst_region }} state=present
  37. with_items: ec2.instances
  38. args:
  39. tags: "{{ oo_new_inst_tags }}"
  40. - name: Add new instances public IPs to oo_masters_to_config
  41. add_host:
  42. hostname: "{{ item.0 }}"
  43. ansible_ssh_host: "{{ item.1.dns_name }}"
  44. groupname: oo_masters_to_config
  45. ec2_private_ip_address: "{{ item.1.private_ip }}"
  46. ec2_ip_address: "{{ item.1.public_ip }}"
  47. with_together:
  48. - oo_new_inst_names
  49. - ec2.instances
  50. - name: Wait for ssh
  51. wait_for: port=22 host={{ item.dns_name }}
  52. with_items: ec2.instances
  53. - name: Wait for root user setup
  54. command: "ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null root@{{ item.dns_name }} echo root user is setup"
  55. register: result
  56. until: result.rc == 0
  57. retries: 20
  58. delay: 10
  59. with_items: ec2.instances
  60. # Apply the configs, seprate so that just the configs can be run by themselves
  61. - include: config.yml