launch_instances.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ---
  2. - set_fact:
  3. machine_type: "{{ lookup('env', 'ec2_instance_type')|default('m3.large', true) }}"
  4. machine_image: "{{ lookup('env', 'ec2_ami')|default('ami-307b3658', true) }}"
  5. machine_region: "{{ lookup('env', 'ec2_region')|default('us-east-1', true) }}"
  6. machine_keypair: "{{ lookup('env', 'ec2_keypair')|default('libra', true) }}"
  7. created_by: "{{ lookup('env', 'LOGNAME')|default(cluster, true) }}"
  8. env: "{{ cluster }}"
  9. host_type: "{{ type }}"
  10. env_host_type: "{{ cluster }}-openshift-{{ type }}"
  11. - name: Launch instance(s)
  12. ec2:
  13. state: present
  14. region: "{{ machine_region }}"
  15. keypair: "{{ machine_keypair }}"
  16. group: ['public']
  17. instance_type: "{{ machine_type }}"
  18. image: "{{ machine_image }}"
  19. count: "{{ instances | oo_len }}"
  20. wait: yes
  21. instance_tags:
  22. created-by: "{{ created_by }}"
  23. env: "{{ env }}"
  24. host-type: "{{ host_type }}"
  25. env-host-type: "{{ env_host_type }}"
  26. register: ec2
  27. - name: Add Name tag to instances
  28. ec2_tag: resource={{ item.1.id }} region={{ machine_region }} state=present
  29. with_together:
  30. - instances
  31. - ec2.instances
  32. args:
  33. tags:
  34. Name: "{{ item.0 }}"
  35. - set_fact:
  36. instance_groups: tag_created-by_{{ created_by }}, tag_env_{{ env }}, tag_host-type_{{ host_type }}, tag_env-host-type_{{ env_host_type }}
  37. - name: Add new instances groups and variables
  38. add_host:
  39. hostname: "{{ item.0 }}"
  40. ansible_ssh_host: "{{ item.1.dns_name }}"
  41. groups: "{{ instance_groups }}"
  42. ec2_private_ip_address: "{{ item.1.private_ip }}"
  43. ec2_ip_address: "{{ item.1.public_ip }}"
  44. with_together:
  45. - instances
  46. - ec2.instances
  47. - name: Wait for ssh
  48. wait_for: "port=22 host={{ item.dns_name }}"
  49. with_items: ec2.instances
  50. - name: Wait for root user setup
  51. command: "ssh -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 -o UserKnownHostsFile=/dev/null root@{{ item.dns_name }} echo root user is setup"
  52. register: result
  53. until: result.rc == 0
  54. retries: 20
  55. delay: 10
  56. with_items: ec2.instances