launch.yml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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:
  26. hostname: "{{ item.public_ip }}"
  27. groupname: new_ec2_instances"
  28. with_items: ec2.instances
  29. - name: Add Name and environment tags to instances
  30. ec2_tag: resource={{ item.1.id }} region={{ inst_region }} state=present
  31. with_together:
  32. - oo_new_inst_names
  33. - ec2.instances
  34. args:
  35. tags:
  36. Name: "{{ item.0 }}"
  37. - name: Add other tags to instances
  38. ec2_tag: resource={{ item.id }} region={{ inst_region }} state=present
  39. with_items: ec2.instances
  40. args:
  41. tags: "{{ oo_new_inst_tags }}"
  42. - name: Add new instances public IPs to oo_nodes_to_config
  43. add_host:
  44. hostname: "{{ item.0 }}"
  45. ansible_ssh_host: "{{ item.1.dns_name }}"
  46. groupname: oo_nodes_to_config
  47. ec2_private_ip_address: "{{ item.1.private_ip }}"
  48. ec2_ip_address: "{{ item.1.public_ip }}"
  49. with_together:
  50. - oo_new_inst_names
  51. - ec2.instances
  52. - name: Wait for ssh
  53. wait_for: port=22 host={{ item.dns_name }}
  54. with_items: ec2.instances
  55. - name: Wait for root user setup
  56. command: "ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null root@{{ item.dns_name }} echo root user is setup"
  57. register: result
  58. until: result.rc == 0
  59. retries: 20
  60. delay: 10
  61. with_items: ec2.instances
  62. # Apply the configs, seprate so that just the configs can be run by themselves
  63. - include: config.yml