launch_instances.yml 2.1 KB

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